body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.banner-intro-overlay {
  position: absolute;
  /* top: 20px; */
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;

  max-width: 960px;
  padding: 12px 22px;

  /* background: rgba(255, 255, 255, 0.92); */
  color: #fff;
  font-size: 24px;
  line-height: 1.6;
  text-align: center;

  border-radius: 6px;
  /* box-shadow: 0 6px 18px rgba(0,0,0,0.1); */
}

 /* HERO */
    .portfolio-hero {
      background: linear-gradient(135deg, #0b2a4a, #124b7a);
      padding: 80px 20px;
    }

    .portfolio-hero h1 {
      font-size: 42px;
    }

    /* FILTER BUTTONS */
    .filter-btn {
      border: none;
      background: #e9ecef;
      padding: 10px 18px;
      margin: 5px;
      border-radius: 30px;
      cursor: pointer;
      transition: 0.3s;
      font-weight: 500;
    }

    .filter-btn:hover {
      background: #0b2a4a;
      color: white;
    }

    .filter-btn.active {
      background: #0b2a4a;
      color: white;
    }

    /* CARDS */
    .portfolio-card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      transition: 0.35s;
    }

    .portfolio-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .portfolio-card img {
      height: 220px;
      object-fit: cover;
    }

    /* ANIMATION */
    .portfolio-item {
      transition: 0.4s ease;
    }

    .hide {
      opacity: 0;
      transform: scale(0.95);
      pointer-events: none;
      position: absolute;
    }

    /* CTA */
    .portfolio-cta {
      background: #0b2a4a;
      padding: 60px 20px;
    }

    .portfolio-cta h3 {
      font-size: 28px;
    }
/* =====================
   HERO SECTION.navbar-brand img
===================== */
.about-hero {
  background: linear-gradient(rgba(11, 42, 74, 0.8), rgba(11, 42, 74, 0.8)),
    url("img/bg/global.webp") center / cover no-repeat fixed;
  padding: 8% 0;
  min-height: 60vh;
}
@media (max-width: 768px) {
  .about-hero {
    background-attachment: scroll;
  }
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }

  .blog-card:hover {
    transform: translateY(-5px);
  }

  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .blog-content {
    padding: 1rem;
  }

  .blog-content h3 {
    margin: 0 0 0.5rem;
  }

  .blog-content p {
    color: #666;
  }

  .blog-listing li a {
    color: black;
  }
/* =====================
   TEAM IMAGES
===================== */
.rounded-circle-max {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12%;
}
@media (max-width: 767px) {
  .call-back-btn,
  .whatsapp-btn {
    width: auto; /* keep inline */
    flex: 1; /* equal width */
    text-align: center;
    white-space: nowrap; /* prevent text break */
  }

  .container {
    gap: 8px;
  }
}
.call-back-btn,
.whatsapp-btn {
  padding: 10px 12px;
  font-size: 14px;
}
/* =====================
   LIST STYLING
===================== */
.about-points {
  list-style: none;
  padding-left: 0;
}
.about-points li::before {
  content: "✔ ";
  color: #f0ad4e;
  font-weight: bold;
}
@media (max-width: 576px) {
  .about-points {
    text-align: center;
  }
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.top-bar {
  background: #0b3a66;
  padding: 8px 0;
}

.hero-section {
  background: linear-gradient(135deg, #0b60c5, #4db8ff);
  padding: 80px 0;
}

.service-box {
  background: #0b3a66;
  color: #fff;
  padding: 30px 20px;
  border-radius: 6px;
  height: 100%;
}

.service-box h5 {
  margin-top: 15px;
  font-weight: bold;
}

.callback-section {
  background: #3cbdb1;
}
.callback-section h3,
.callback-section p {
  color: #fff;
}
.cta-section {
  background: #2ecc71;
  padding: 60px 20px;
}

.footer {
  background: #333;
}

.min-vh-75 {
  min-height: 75vh;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

.footer-bg-dark {
  background: #0f172a;
}

.footer-part a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-part a:hover {
  color: #38bdf8;
}

.footer-logo img {
  max-width: 100px;
}

.footer-logo p {
  max-width: 220px;
  font-size: 14px;
}

.backtotop {
  display: none;
  z-index: 999;
}

.contact-form {
  max-width: 600px;
  margin: auto;
}

.contact-form .form-control {
  border-radius: 6px;
}

.contact-form button {
  font-weight: 600;
}

.bg-soft {
  background-color: #f8f9fa;
}

.bg-dark-soft {
  background-color: #212529;
  color: #fff;
}

.bg-highlight {
  background: linear-gradient(135deg, #ffc107, #ff9800);
}

.service-card {
  border-radius: 14px;
  transition: all 0.3s ease;
  background: #0b3a66;
  color: #fff;
  border: 1px solid #eee;
}
.service-card p {
  color: white;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3.5rem;
  color: #ffc107;
}
.service-card a {
  /* color: #ffc107; */
}

.service-card a:hover {
  /* color: #ffd966; */
}
/* ==============================
   HEADER / NAVBAR
================================= */

.nav-bg-white {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.navbar {
  /*padding: 14px 0;*/
}

.navbar-brand img {
  max-height: 70px;
}

/* ==============================
   NAV LINKS
================================= */

.navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  padding: 8px 16px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ff6a00;
}

/* Active underline */
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 2px;
  width: calc(100% - 32px);
  height: 2px;
  background: #ff6a00;
}

/* ==============================
   DROPDOWN MENU
================================= */

.dropdown-menu {
  border-radius: 10px;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.dropdown-item {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  color: #333;
}

.dropdown-item:hover {
  background: #f8f8f8;
  color: #ff6a00;
}

/* ==============================
   USER DROPDOWN
================================= */

#userDropdown span {
  font-size: 14px;
  font-weight: 600;
}

#userDropdown i {
  color: #555;
}

/* ==============================
   NAVBAR TOGGLER
================================= */

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon i {
  font-size: 22px;
  color: #000;
}

/* ==============================
   MOBILE MENU
================================= */

#mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  transition: left 0.3s ease;
}

#mobile-nav.active {
  left: 0;
}

.mobile-nav-box {
  width: 280px;
  height: 100%;
  background: #fff;
  padding: 20px;
  overflow-y: auto;
}

.logo {
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Mobile header */
.mobile-logo {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.manu-close {
  font-size: 14px;
  color: #111;
  font-weight: 600;
  text-decoration: none;
}

/* ==============================
   MOBILE NAV LINKS
================================= */

.mobile-list-nav {
  margin-top: 20px;
}

.mobile-list-nav li {
  margin-bottom: 10px;
}

.mobile-list-nav a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  padding: 10px 0;
  text-decoration: none;
}

.mobile-list-nav a.active {
  color: #ff6a00;
}

.mobile-list-nav a:hover {
  color: #ff6a00;
}

/* ==============================
   MOBILE DROPDOWN
================================= */

.dropdown-child-manu {
  padding-left: 15px;
  margin-top: 8px;
  display: none;
}

.mobile-list-nav li:hover .dropdown-child-manu {
  display: block;
}

.dropdown-child-manu li a {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  color: #555;
}

.dropdown-child-manu li a:hover {
  color: #ff6a00;
}

/* ==============================
   RESPONSIVE
================================= */

@media (max-width: 991px) {
  .navbar-nav {
    display: none;
  }
}

.result {
  margin-top: 20px;
}

#result {
  font-weight: 600;
  text-align: center;
  background-color: #198754; /* Bootstrap success */
  color: #fff;
}
.center-label {
  display: block;
  text-align: center;
}
#dateInputSection {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}
.form-check-input {
  transform: scale(1.3);
  cursor: pointer;
}

.form-check-label {
  cursor: pointer;
}
.form-check-input[type="radio"] {
  border-radius: 50%;
  border-color: black;
}

.form-row {
  justify-content: center;
}

.form-group label {
  font-weight: 600;
}

.datepicker-icon {
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.icon-container {
  position: relative;
  display: inline-block;
}

.hidden-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
}
.mobile-cta {
  display: none;
}

@media (max-width: 992px) {
  .mobile-cta {
    display: flex !important;;
    gap: 10px;
    justify-content: center;
    margin: 15px;
  }

  .call-btn,
  .wa-btn {
    padding: 12px 18px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }

  .call-btn {
    background: #0d6efd;
  }
  .wa-btn {
    background: #25d366;
  }
}

.banner-flex {
  display: flex;
  position: relative;
}

/* Hide banner contact form on mobile & tablet */
@media (max-width: 991px) {
  .banner-right {
    display: none !important;
  }
}

.banner-right {
  position: absolute;

  right: 20px;
  width: 430px;
  z-index: 999;
}

@media (max-width: 991px) {
  .banner-right {
    position: static;
    width: 100%;
    margin-top: 20px;
  }

  .banner-left {
    padding-right: 0;
    width: 100%;
  }
}
.banner-form {
  /*background: #ffffff;*/
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 45.2);
  width: 90%;
}

.banner-form h4 {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
  color: white;
}

.banner-form input,
.banner-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.banner-form button {
  width: 100%;
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.banner-form button:hover {
  background: #b02a37;
}

/* Mobile */
@media (max-width: 991px) {
  .banner-flex {
    flex-direction: column;
  }

  .banner-left,
  .banner-right {
    width: 100%;
  }

  .banner-right {
    margin-top: 20px;
  }
}

/* =========================
   REVIEWS SLIDER
========================= */

.reviews-slider-section {
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  padding: 80px 20px;
  text-align: center;
}

.reviews-subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.reviews-slider {
  position: relative;
  max-width: 900px;
  margin: 50px auto 0;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.review-slide {
  min-width: 100%;
  background: #fff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-slide img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e5e7eb;
  margin-bottom: 15px;
}

.review-slide p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 15px 0;
}

.review-slide h4 {
  margin: 10px 0 5px;
  font-weight: 700;
  color: #111;
}

.review-slide span {
  font-size: 13px;
  color: #777;
}

.stars {
  color: #f4b400;
  font-size: 18px;
}

/* Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.slider-btn.prev {
  left: 0px;
}
.slider-btn.next {
  right: 0px;
}

.slider-btn:hover {
  background: #111;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .slider-btn.prev {
    left: 5px;
  }
  .slider-btn.next {
    right: 5px;
  }
}

.header-part {
  background-color: #103465; /* dark blue background */
  border-bottom: 3px solid #f1bc0c; /* thin gold border */
  padding: 8px 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: white;
}

.call-back-btn {
  background-color: #f37f20; /* orange */
  color: white;
  padding: 8px 25px;
  text-align: center;
  display: inline-block;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.call-back-btn:hover {
  background-color: #cc6e18; /* darker orange on hover */
  color: white;
  text-decoration: none;
}

.whatsapp-btn {
  background-color: #3adb4e; /* bright green */
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 0 8px #3adb4eaa;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #32b643;
  box-shadow: 0 0 12px #32b643cc;
  text-decoration: none;
}

.whatsapp-btn i {
  font-size: 18px;
}

.contact-info {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.contact-info i {
  font-size: 16px;
  margin-right: 6px;
  /* color: #fff; */
}

.contact-info .separator {
  color: #fff;
  font-weight: 900;
  margin: 0 8px;
}

@media (max-width: 576px) {
  .header-part .container {
    flex-wrap: wrap;
  }
  .call-back-btn,
  .whatsapp-btn,
  .contact-info {
    width: 100%;
    text-align: center;
    margin: 4px 0;
    justify-content: center !important;
  }
  .contact-info {
    gap: 8px;
  }
}

/* Mobile submenu */
.dropdown-child-manu {
  display: none;
  padding-left: 15px;
}
@media (max-width: 767px) {
  .banner-intro-overlay {
    display: none !important;
  }

  .navbar-brand img {
    max-height: 65px;
  }
}
.dropdown-child-manu.show {
  display: block;
  max-height: 500px;
}
.breadcrumb-part .breadcrumb-link li {
  color: #fff;
  margin-left: 10px;
}
.sawastik-hero-section {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}
.sawastik-hero-section p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #333;
}
.sawastik-hero-section h2 span {
  color: #ff4d4d;
}
.sawastik-hero-section a {
  display: inline-block;
  padding: 15px 30px;
  background: #ff4d4d;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}
.sawastik-cta-section {
  padding: 50px 20px;
  background: #25d366;
  text-align: center;
  color: #fff;
}

.sawastik-hero-section p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
}
.sawastik-hero-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.sawastik-hero-section a {
  display: inline-block;
  padding: 15px 30px;
  background: #fff;
  color: #ff4d4d;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}
@media (max-width: 576px) {
  .service-card .btn {
    width: 100%;
  }
}
