    :root {
      --primary-blue: #0064eb;
      --accent-red: #e2101f;
      --bg-dark: #07172b;
      --gradient-btn: linear-gradient(90deg, #0064eb 0%, #e2101f 100%);
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: var(--bg-dark);
      color: #ffffff;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    /* Container 1170px Max Width */
    @media (min-width: 1200px) {
      .container {
        max-width: 1170px !important;
      }
    }

    /* Sticky Navbar on Scroll with 10% white bottom border */
    .navbar-hero {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1050;
      padding: 20px 0;
      background: transparent;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease-in-out;
    }

    .navbar-hero.scrolled {
      padding: 12px 0;
      background: rgba(5, 24, 45, 0.96);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(8px);
    }

    .brand-logo-wrap {
      display: inline-flex;
      align-items: center;
      text-decoration: none !important;
    }
    .brand-logo-wrap img {
        max-width: 260px;
        object-fit: contain;
    }
/* 
    .brand-title {
      font-size: 1.5rem;
      font-weight: 800;
      color: #ffffff;
      line-height: 1;
      margin-bottom: 2px;
    }

    .brand-slogan {
      font-size: 0.62rem;
      color: #cbd5e1;
      font-weight: 500;
      letter-spacing: 0.2px;
    } */

    .nav-link-custom {
      color: #cbd5e1 !important;
      font-size: 0.88rem;
      font-weight: 600;
      padding: 0.5rem 1rem !important;
      transition: color 0.2s;
    }

    .nav-link-custom:hover {
      color: #ffffff !important;
    }
    .navbar-nav .dropdown-menu {   
        min-width: 250px;
        padding: 10px;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 18px 45px rgba(5, 27, 51, .22);
        z-index: 1000;
    }

    .navbar-nav .dropdown-menu a {
        padding: 10px 13px;
        border-radius: 7px;
        color: #0B1B2B;
        font-size: 13.5px;
        font-weight: 600;
        line-height: 1.35;
    }

    .phone-contact {
      color: #ffffff !important;
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none !important;
    }

    .btn-appointment {
      background: var(--gradient-btn);
      color: #ffffff !important;
      border: none;
      font-weight: 700;
      font-size: 0.85rem;
      padding: 10px 20px;
      border-radius: 6px;
      transition: opacity 0.2s, transform 0.2s;
      text-decoration: none !important;
      display: inline-block;
    }

    .btn-appointment:hover {
      opacity: 0.95;
      transform: translateY(-1px);
    }

    /* Hero Section */
    .hero-section {
        position: relative;
        min-height: 76vh;
        display: flex;
        align-items: center;
        padding: 150px 0 80px;
        overflow: hidden;

        background:
            linear-gradient(
                135deg,
                rgba(5, 27, 51, 0.93) 0%,
                rgba(8, 49, 95, 0.88) 45%,
                rgba(7, 24, 43, 0.96) 100%
            ),
            url('../img/banner-img.webp') center center / cover no-repeat;
    }

    .services-hero-section {
      
        background:
            linear-gradient(
                135deg,
                rgba(5, 27, 51, 0.93) 0%,
                rgba(8, 49, 95, 0.88) 45%,
                rgba(7, 24, 43, 0.96) 100%
            ),
            url('../img/services-page-banner.webp') center center / cover no-repeat;
    }
    /* Blue glow */
    .hero-section::before {
        content: "";
        position: absolute;
        top: -180px;
        right: -120px;
        width: 620px;
        height: 620px;
        border-radius: 50%;
        background: radial-gradient(
            circle,
            rgba(0, 100, 235, 0.55) 0%,
            rgba(0, 100, 235, 0) 70%
        );
        z-index: 0;
    }

    /* Red glow */
    .hero-section::after {
        content: "";
        position: absolute;
        bottom: -220px;
        left: -160px;
        width: 560px;
        height: 560px;
        border-radius: 50%;
        background: radial-gradient(
            circle,
            rgba(226, 16, 31, 0.32) 0%,
            rgba(226, 16, 31, 0) 70%
        );
        z-index: 0;
    }
    .hero-section * {
      z-index: 1;
    }

    /* Badge Tag */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 30px;
      padding: 6px 16px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1.2px;
      color: #e2e8f0;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .badge-dot {
      width: 7px;
      height: 7px;
      background-color: var(--accent-red);
      border-radius: 50%;
      margin-right: 9px;
    }

    /* Typography */
    .hero-heading {
      /* font-size: 3.5rem; */
      font-size: clamp(2.25rem, 5vw, 3.5rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
    }
    

    .hero-heading .text-services-gradient {
    background: linear-gradient(90deg,#5CA0FF 0%,#FF5A63 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    }

    .hero-subheading {
      font-size: 1.18rem;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.45;
      margin-bottom: 14px;
      max-width: 520px;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.78;
        color: rgba(255, 255, 255, 0.68);
        font-weight: 400;
        margin-bottom: 30px;
        max-width: 480px;
    }

    /* Buttons */
    .btn-consultation {
      background: var(--gradient-btn);
      color: #ffffff !important;
      border: none;
      font-weight: 700;
      font-size: 0.88rem;
      padding: 13px 24px;
      border-radius: 6px;
      transition: all 0.25s ease;
      display: inline-block;
      text-decoration: none !important;
    }

    .btn-consultation:hover {
      opacity: 0.95;
      transform: translateY(-2px);
    }

    .btn-explore {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.22);
      color: #ffffff !important;
      font-weight: 700;
      font-size: 0.88rem;
      padding: 13px 24px;
      border-radius: 6px;
      transition: all 0.25s ease;
      display: inline-block;
      text-decoration: none !important;
    }

    .btn-explore:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: #ffffff;
    }

    /* Hero Right Image Frame */
    .hero-image-card-wrapper {
        position: relative;
    }

    .hero-image-card-wrapper::after {
        content: " ";
        position: absolute;
        inset: -16px;
        border-radius: 24px;
        background: linear-gradient(135deg,rgba(0,100,235,0.5),rgba(226,16,31,0.4));
        filter: blur(34px);
    }
    .hero-image-card {
        position: relative;
        height: 452px;
        z-index: 1;
        animation: floatY 7s ease-in-out infinite;
    }
    .hero-image-card img {
        position: relative;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.16);
        box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    }

    @media (max-width: 991.98px) {
      .hero-container {
        padding: 130px 0 60px;
      }
      .hero-heading {
        font-size: 2.7rem;
      }
    }
    @keyframes marqueeL { from { transform:translateX(0); } to { transform:translateX(-50%); } }
    @keyframes marqueeR { from { transform:translateX(-50%); } to { transform:translateX(0); } }
    @keyframes floatY { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-14px); } }


    /* ===== Features Section ====== */
    
  .features-section {
    background: #ffffff;
    position: relative;
    z-index: 4;
    padding: 70px 0;
  }
  
  .feature-card-custom {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(228, 233, 239);
    border-radius: 14px;
    padding: 36px 30px 34px;
    box-shadow: rgba(11, 27, 43, 0.08) 0px 18px 44px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;

  }

  .feature-card-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(11, 27, 43, 0.12);
  }

.features-section .row > [class*="col-"] {
    padding-inline: 12px;
}

.features-section .row .col-lg-3:nth-child(4n + 1) .feature-card-custom:hover,
.features-section .row .col-lg-3:nth-child(4n + 2) .feature-card-custom:hover {
    border-color: rgb(0, 100, 235) !important;
    box-shadow: rgba(0, 100, 235, 0.16) 0px 26px 58px !important;
}

.features-section .row .col-lg-3:nth-child(4n + 3) .feature-card-custom:hover,
.features-section .row .col-lg-3:nth-child(4n + 4) .feature-card-custom:hover {
    border-color: rgb(226, 16, 31) !important;
    box-shadow: rgba(226, 16, 31, 0.16) 0px 26px 58px !important;
}

  .feature-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgb(0, 100, 235), rgb(226, 16, 31));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
  }

  .feature-card-title {
    margin: 0 0 12px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.015em;
    color: #0B1B2B;
    min-height: 53px;
    display: flex;
    align-items: flex-start;
}

.feature-card-desc {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.72;
    color: #5A6B7B;
  }

/* ===== About US Section ====== */
.about-section {
    padding: 100px 0;
    position: relative;
    background: rgb(245, 248, 251);
    border-top: 1px solid rgb(228, 233, 239);
    border-bottom: 1px solid rgb(228, 233, 239);
  }
    .about-section .row {
        /* max-width: 1170px;
        margin: 0px auto; */
        padding: 0 15px;
        display: grid;
        grid-template-columns: minmax(0px, 0.92fr) minmax(0px, 1.08fr);
        gap: 70px;
        align-items: stretch;
    }
.about-section .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: unset;
    padding: 0 2px !important;
}
  /* Left Image Wrapper */
  .about-img-box {
    position: relative;
    border-radius: 20px;
    overflow: visible;
  }

  .about-main-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 45px rgba(11, 27, 43, 0.09);
  }

  /* Floating 15+ Badge */
  .about-exp-float {
    position: absolute;
    bottom: -22px;
    right: -24px;
    background: linear-gradient(135deg, rgb(0, 100, 235), rgb(226, 16, 31));
    color: #ffffff;
    padding: 24px 34px 22px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 16px 36px rgba(0, 100, 235, 0.35);
    z-index: 2;
  }

    .about-exp-float .exp-num {
        font-size: 46px;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 5px;
        letter-spacing: -0.5px;
    }

    .about-exp-float .exp-text {
        margin-top: 8px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.9);
    }

  /* Right Side Content */
  /* .about-tagline {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #0064EB;
    margin-bottom: 14px;
  } */

.about-tagline {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgb(0, 100, 235);
    margin-bottom: .5rem;
}
.about-tagline::before {
    content: "";
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg,#0064EB,#E2101F);
    margin-right: 9px;
}

  .about-title {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.18;
    color: #0B1B2B;
    letter-spacing: -0.025em;
    margin-bottom: 26px;
  }

  /* .about-desc {
    font-size: 14.5px;
    line-height: 1.75;
    color: #5A6B7B;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 580px;
  } */

  .about-desc {
    margin: 0px 0px 20px;
    font-size: 16px;
    line-height: 1.82;
    color: rgb(90, 107, 123);
    text-wrap: pretty;
    margin-bottom: .5rem;
  }

  @media (max-width: 991.98px) {
    .about-section {
      padding: 70px 0;
    }
    .about-main-img {
      height: 400px;
    }
    .about-exp-float {
      right: 15px;
      bottom: -20px;
    }
    .about-title {
      font-size: 2.2rem;
    }
  }


  
/* ===== Services Section ====== */

/* Services Section */
.services-section {
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.services-header {
  text-align: center;
  max-width: 790px;
  margin: 0 auto 48px;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.services-badge .badge-line-left {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #0064EB, #E2101F);
}

.services-badge .badge-line-right {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #E2101F, #0064EB);
}

.services-badge .badge-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0064EB;
}

.services-title {
  font-size: 2.85rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0B1B2B;
  margin-bottom: 16px;
}

.services-subtitle {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgb(0, 100, 235);
}
/* Service Card */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    border: 1px solid rgb(228, 233, 239);
    background: rgb(255, 255, 255);
    overflow: hidden;
    cursor: pointer;
    box-shadow: rgba(11, 27, 43, 0.06) 0px 14px 36px;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

.service-card:hover {
    border-color: rgb(0, 100, 235) !important;
    transform: translateY(-8px) !important;
    box-shadow: rgba(0, 100, 235, 0.18) 0px 28px 58px !important;
}

/* Card Media / Placeholder */
.service-card .card-media {
  width: 100%;
  height: 230px;
  background-color: #EDF2F8;
  overflow: hidden;
}

.service-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card .card-body-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 26px 24px 24px;
}

.service-card .card-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0B1B2B;
  line-height: 1.32;
  margin-bottom: 10px;
}

.service-card .card-text {
  font-size: 14.5px;
  line-height: 1.72;
  color: #5A6B7B;
  margin-bottom: 22px;
}

.service-card .card-link {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #0064EB;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.service-card .card-link:hover {
  color: #E2101F;
}

/* Promo / CTA Card (9th Block) */
.service-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    border-radius: 16px;
    padding: 44px 30px;
    background: linear-gradient(135deg, rgb(10, 46, 107) 0%, rgb(0, 100, 235) 52%, rgb(194, 16, 32) 100%);
    box-shadow: rgba(0, 100, 235, 0.22) 0px 14px 36px;
}

.cta-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-cta-card .cta-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
  line-height: 1.28;
  margin-bottom: 10px;
}

.service-cta-card .cta-desc {
  font-size: 14.5px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.service-cta-card .btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 8px;
  background: #ffffff;
  color: #0B1B2B !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.service-cta-card .btn-cta-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .services-title {
    font-size: 2.1rem;
  }
}



/* ===== Industries We Serve Section ====== */

/* Industries Section */
.industries-section {
  background: linear-gradient(160deg, #051B33 0%, #08315F 58%, #07182B 100%);
  position: relative;
  overflow: hidden;
  padding: 74px 0;
}

.industries-glow-circle {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 720px;
  height: 520px;
  margin-left: -360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 100, 235, 0.34) 0%, rgba(0, 100, 235, 0) 70%);
  pointer-events: none;
}

.industries-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 46px;
  position: relative;
}

.industries-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.industries-badge .badge-line-left {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #5CA0FF, #FF5A63);
}

.industries-badge .badge-line-right {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #FF5A63, #5CA0FF);
}

.industries-badge .badge-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5CA0FF;
}

.industries-title {
  font-size: 44px;
  line-height: 1.13;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 16px;
}

.industries-desc {
  font-size: 16.5px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
}

/* Marquee Tracks */
.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.marquee-mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000000 9%, #000000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000000 9%, #000000 91%, transparent 100%);
}

.marquee-track-left {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeLeft 34s linear infinite;
}

.marquee-track-right {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeRight 34s linear infinite;
}

.marquee-mask:hover .marquee-track-left,
.marquee-mask:hover .marquee-track-right {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Industry Badge Items */
.industry-item {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
    padding: 16px 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.3s, border-color 0.3s;
  cursor: default;
}

.industry-item:hover {
    background: linear-gradient(90deg, rgba(0, 100, 235, 0.42), rgba(226, 16, 31, 0.34)) !important;
    border-color: rgba(92, 160, 255, 0.6) !important;
}

.industry-icon {
  width: 21px;
  height: 21px;
  stroke: #5CA0FF;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.industry-label {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  white-space: nowrap;
}

/* Action Button */
.industries-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 38px;
  position: relative;
}

.industries-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 8px;
  background: linear-gradient(90deg, #0064EB 0%, #E2101F 100%);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 14px 32px rgba(0, 100, 235, 0.30);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industries-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 100, 235, 0.40);
}

@media (max-width: 991.98px) {
  .industries-title {
    font-size: 32px;
  }
}



/* ===== Benefits Section ====== */



/* Benefits Section */
.benefits-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 74px 0;
}

.benefits-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.benefits-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.benefits-badge .badge-line-left {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #0064EB, #E2101F);
}

.benefits-badge .badge-line-right {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #E2101F, #0064EB);
}

.benefits-badge .badge-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0064EB;
}

.benefits-title {
  margin: 0 0 20px;
  font-size: 44px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.028em;
  color: #0B1B2B;
}

.benefits-desc {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.78;
  color: #5A6B7B;
}

/* Benefit Card */
/* .benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid #E4E9EF;
  border-radius: 14px;
  padding: 34px 26px;
  height: 100%;
  box-shadow: 0 14px 36px rgba(11, 27, 43, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
} */
.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(228, 233, 239);
    border-radius: 14px;
    padding: 34px 26px;
    height: 100%;
    box-shadow: rgba(11, 27, 43, 0.06) 0px 14px 36px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
    border-color: rgb(0, 100, 235) !important;
    box-shadow: rgba(0, 100, 235, 0.14) 0px 24px 54px !important;
}

.benefit-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgb(0, 100, 235), rgb(226, 16, 31));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.benefit-icon-box svg {
  width: 34px;
  height: 34px;
  stroke: #ffffff;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.benefit-card-title {
  margin: 0 0 11px;
  font-size: 18px;
  font-weight: 700;
  color: #0B1B2B;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.benefit-card-desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.74;
  color: #5A6B7B;
}

/* 6th Promo / CTA Card */
.benefit-promo-card {
    border-radius: 14px;
    padding: 34px 28px;
    background: linear-gradient(135deg, rgb(0, 100, 235) 0%, rgb(226, 16, 31) 115%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: rgba(0, 100, 235, 0.26) 0px 20px 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 100%;
}

.benefit-promo-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.benefit-promo-desc {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.benefit-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 8px;
  background: #ffffff;
  color: #0B1B2B !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.benefit-promo-btn:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .benefits-title {
    font-size: 32px;
  }
}



/* ===== Testimonials Section ====== */

.testimonials-section {
    background: #F5F8FB;
    border-top: 1px solid #E4E9EF;
    border-bottom: 1px solid #E4E9EF;
    padding: 74px 0;
    overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 44px;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.testimonials-badge .badge-line-left {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #0064EB, #E2101F);
}

.testimonials-badge .badge-line-right {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #E2101F, #0064EB);
}

.testimonials-badge .badge-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0064EB;
}

.testimonials-title {
  margin: 0 0 16px;
  font-size: 44px;
  line-height: 1.13;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0B1B2B;
}

.testimonials-desc {
  margin: 0 auto 22px;
  font-size: 16.5px;
  line-height: 1.78;
  color: #5A6B7B;
  max-width: 688px;
}

/* Google Rating Pill */
.rating-pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 10px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid #E4E9EF;
  box-shadow: 0 12px 30px rgba(11, 27, 43, 0.08);
  flex-wrap: wrap;
  justify-content: center;
}

.rating-pill-stars {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}

.rating-pill-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0B1B2B;
}

.rating-stars-group {
  display: inline-flex;
  gap: 3px;
}

.star-icon {
  width: 20px;
  height: 20px;
  fill: #F5A623;
}

.rating-divider {
  width: 1px;
  height: 24px;
  background-color: #E4E9EF;
}

.rating-count {
  padding: 0 20px;
  font-size: 15px;
  color: #5A6B7B;
}

.rating-count strong {
  color: #0B1B2B;
  font-weight: 800;
}

.google-logo-text {
  padding: 0 20px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }

/* Slider Components */
.slider-outer-wrap {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 22px;
  align-items: stretch;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
}

.testimonial-card {
    /* display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - 44px) / 3); */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.3333% - 14.6667px);
    height: auto;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(228, 233, 239);
    border-radius: 16px;
    padding: 34px 30px 30px;
    box-shadow: rgba(11, 27, 43, 0.05) 0px 4px 14px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover {
    border-color: rgb(0, 100, 235) !important;
    box-shadow: rgba(0, 100, 235, 0.1) 0px 10px 26px !important;
}
.card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.card-star-icon {
  width: 17px;
  height: 17px;
  fill: #F5A623;
}

.card-quote {
  margin: 0 0 26px;
  font-size: 14.5px;
  line-height: 1.74;
  color: #5A6B7B;
}

.card-user-info {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 22px;
  border-top: 1px solid #E4E9EF;
}

.avatar-letter {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #0B8578;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.avatar-image-wrap {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #EDF2F8;
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.user-name {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #0B1B2B;
}

.user-source {
  display: block;
  font-size: 13px;
  color: #5A6B7B;
  margin-top: 2px;
}

/* Slider Controls */
.slider-controls-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.slider-nav-btn {
    all: unset;
    cursor: pointer;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #E4E9EF;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0064EB;
    font-size: 18px;
    outline: none !important;
    transition: all .3s ease;
}

.slider-nav-btn:hover {
    background: linear-gradient(135deg, rgb(0, 100, 235), rgb(226, 16, 31)) !important;
    color: rgb(255, 255, 255) !important;
    border-color: transparent !important;
}

.slider-dots-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-dot {
  all: unset;
  cursor: pointer;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  outline: none !important;
  background-color: #D6DEE7;
  transition: all 0.35s ease;
}

.slider-dot.is-active {
  width: 24px;
  background: linear-gradient(90deg, #0064EB, #E2101F);
}

@media (max-width: 991.98px) {
  .testimonials-title {
    font-size: 32px;
  }
}


/* ===== Process / How We Work Section ====== */

.process-section {
  background-color: #ffffff;
  position: relative;
  padding: 60px 0;
}

.process-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.process-badge .badge-line-left {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #0064EB, #E2101F);
}

.process-badge .badge-line-right {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #E2101F, #0064EB);
}

.process-badge .badge-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0064EB;
}

.process-title {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.028em;
  color: #0B1B2B;
}

.process-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.76;
  color: #5A6B7B;
}

/* Process Cards */
.process-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 46px 26px 30px;
    border-radius: 16px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(228, 233, 239);
    overflow: hidden;
    height: 100%;
    transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.process-card:hover {
    border-color: rgb(0, 100, 235);
    transform: translateY(-6px);
    box-shadow: rgba(0, 100, 235, 0.12) 0px 18px 40px;
}

.process-card-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0064EB, #E2101F);
}

.process-card-num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: #F1F5F9;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.process-icon-box {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgb(0, 100, 235), rgb(226, 16, 31));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.process-icon {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.process-card-title {
  position: relative;
  margin: 0 0 12px;
  font-size: 18.5px;
  font-weight: 700;
  color: #0B1B2B;
  letter-spacing: -0.018em;
  line-height: 1.32;
}

.process-card-text {
  position: relative;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.72;
  color: #5A6B7B;
}

/* Bottom CTA Button */
.process-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.process-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgb(0, 100, 235), rgb(226, 16, 31));
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(0, 100, 235, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 100, 235, 0.32);
}

@media (max-width: 991.98px) {
  .process-title {
    font-size: 32px;
  }
}


/* ===== Bottom CTA Section ====== */
.cta-banner-section {
  position: relative;
  overflow: hidden;
  background-color: #03101F;
  padding: 58px 0;
}

.cta-banner-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(115deg, rgb(3, 16, 31) 0%, rgb(6, 42, 80) 45%, rgb(11, 79, 184) 85%, rgb(226, 16, 31) 165%);
}

.cta-banner-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 78px);
}

.cta-banner-glow-circle {
  position: absolute;
  top: -180px;
  right: 6%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}

.cta-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: rgba(255, 255, 255, 0.08);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.cta-banner-title {
  margin: 0;
  max-width: 900px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.cta-banner-desc {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.cta-banner-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  border-radius: 8px;
  background-color: #ffffff;
  color: #0B1B2B !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-btn-primary:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    color: rgb(0, 100, 235) !important;
}

.cta-btn-primary span {
  font-size: 17px;
}

.cta-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff !important;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cta-btn-phone:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.cta-phone-icon {
  width: 21px;
  height: 21px;
  stroke: #ffffff;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

@media (max-width: 991.98px) {
  .cta-banner-title {
    font-size: 30px;
  }
}



/* ===== Portfolio Section ====== */

.portfolio-section {
  background-color: #F5F8FB;
  border-top: 1px solid #E4E9EF;
  border-bottom: 1px solid #E4E9EF;
  padding: 74px 0;
  overflow: hidden;
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
  margin-bottom: 40px;
}

.portfolio-header-text {
  max-width: 760px;
}

.portfolio-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.portfolio-badge .badge-line-left {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #0064EB, #E2101F);
}

.portfolio-badge .badge-line-right {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #E2101F, #0064EB);
}

.portfolio-badge .badge-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0064EB;
}

.portfolio-title {
  margin: 0 0 18px;
  font-size: 44px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.028em;
  color: #0B1B2B;
}

.portfolio-desc {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.78;
  color: #5A6B7B;
}

.portfolio-view-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 8px;
  border: 1px solid #0064EB;
  color: #0064EB !important;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.portfolio-view-btn:hover {
  background-color: #0064EB;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Slider Track & Cards */
.portfolio-slider-wrapper {
  position: relative;
  padding: 0 26px;
}

.portfolio-viewport {
  overflow: hidden;
  width: 100%;
}

.portfolio-track {
    display: flex;
    gap: 22px;
    padding-top: 12px;
    align-items: stretch;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
}

.portfolio-card {
  position: relative;
  flex: 0 0 calc((100% - 44px) / 3);
  height: 250px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #E4E9EF;
  box-shadow: 0 14px 34px rgba(11, 27, 43, 0.08);
  box-sizing: border-box;
  transition: transform 0.4s, box-shadow 0.4s;
}

.portfolio-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: rgba(11, 27, 43, 0.16) 0px 26px 56px !important;
}

.portfolio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    background: linear-gradient(rgba(3, 16, 31, 0) 42%, rgba(3, 16, 31, 0.86) 100%);
}

.portfolio-card-bg-fallback {
  width: 100%;
  height: 100%;
  background-color: #EDF2F8;
}

.portfolio-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 16, 31, 0) 42%, rgba(3, 16, 31, 0.86) 100%);
}

.portfolio-card-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  pointer-events: none;
}

.portfolio-item-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.portfolio-item-tag {
  font-size: 13.5px;
  font-weight: 700;
  color: #F5A623;
  letter-spacing: 0.01em;
}

/* Navigation Buttons */
.portfolio-nav-btn {
  all: unset;
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #E4E9EF;
  background-color: #ffffff;
  box-shadow: 0 6px 18px rgba(11, 27, 43, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0064EB;
  font-size: 15px;
  outline: none !important;
  transition: all 0.3s ease;
}

.portfolio-nav-btn:hover {
  background-color: #0064EB;
  color: #ffffff;
  border-color: #0064EB;
    background: linear-gradient(135deg, rgb(0, 100, 235), rgb(226, 16, 31)) !important;
    color: rgb(255, 255, 255) !important;
    border-color: transparent !important;
}

.portfolio-nav-prev {
  left: 0;
}

.portfolio-nav-next {
  right: 0;
}

/* Dots */
.portfolio-dots-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.portfolio-dot {
  all: unset;
  cursor: pointer;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: #D6DEE7;
  outline: none !important;
  transition: all 0.35s ease;
}

.portfolio-dot.is-active {
  width: 24px;
  background: linear-gradient(90deg, #0064EB, #E2101F);
}

@media (max-width: 991.98px) {
  .portfolio-title {
    font-size: 32px;
  }
}



/* ===== FAQs Section ====== */


.faq-section {
    background: #ffffff;
    padding-block: 74px;
  }

  .faq-container {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 64px;
    align-items: start;
  }

  .faq-sticky-sidebar {
    position: sticky;
    top: 40px;
  }

  .faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }

  .faq-badge-line {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #0064eb, #e2101f);
  }

  .faq-badge-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0064eb;
  }

  .faq-heading {
    margin: 0 0 22px;
    font-size: 42px;
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.028em;
    color: #0b1b2b;
    text-wrap: balance;
    outline: none !important;
  }

  .faq-description {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #5a6b7b;
    text-wrap: pretty;
  }

  .faq-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 8px;
    background: linear-gradient(90deg, #0064eb 0%, #e2101f 100%);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 14px 32px rgba(0, 100, 235, 0.28);
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
.bootstrap-faq-item {
    border: 1px solid rgb(228, 233, 239);
    border-radius: 12px;
    background: rgb(245, 248, 251);
    box-shadow: none;
    overflow: hidden;
    transition: 0.22s;
}

.bootstrap-faq-question {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    font-size: 16.5px;
    font-weight: 700;
    color: rgb(11, 27, 43);
    letter-spacing: -0.012em;
    line-height: 1.45;
    outline: none !important;

}
.bootstrap-faq-icon {
    flex: 0 0 auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(228, 233, 239);
    color: rgb(11, 27, 43);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

/* Smooth Height Transition */
.bootstrap-faq-answer {
  display: block; /* Overrides previous display:none */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 22px;
    font-size: 15px;
    line-height: 1.8;
    color: rgb(90, 107, 123);
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease,
              padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active State */
.bootstrap-faq-item.is-open .bootstrap-faq-answer {
  opacity: 1;
  padding-bottom: 20px;
}
.bootstrap-faq-item.is-open {
    border: 1px solid rgb(0, 100, 235);
    border-radius: 12px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 100, 235, 0.14) 0px 20px 46px;
    overflow: hidden;
    transition: 0.22s;
}

.bootstrap-faq-item.is-open .bootstrap-faq-question {
    font-size: 16.5px;
    font-weight: 700;
    color: rgb(0, 100, 235);
    letter-spacing: -0.012em;
    line-height: 1.45;
}

.bootstrap-faq-item.is-open .bootstrap-faq-icon {
  transform: rotate(45deg); /* Smoothly rotates '+' into an 'x' */
      flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(0, 100, 235), rgb(226, 16, 31));
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

  @media (max-width: 991px) {
    .faq-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .faq-sticky-sidebar {
      position: static;
    }
  }



/* ===== Location MAP Section ====== */

.location-section {
  position: relative;
  background-color: #E8ECE4;
  width: 100%;
}

.location-map-frame {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
}

@media (max-width: 767.98px) {
  .location-map-frame {
    height: 350px;
  }
}





/* ===== FOOTER ====== */


/* Footer Section */
.site-footer {
  background-color: #04152A;
  color: #ffffff;
}

.footer-top {
  padding-top: 60px;
}

.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 24px;
}

.footer-brand-desc {
  margin: 0 0 24px;
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 330px;
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.footer-phone-link:hover {
  color: #0064EB !important;
}

.footer-phone-icon {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

/* Column Headings & Links */
.footer-col-title {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.62) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.footer-nav-link:hover {
  color: #ffffff !important;
}

.footer-get-started-desc {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 8px;
  background: linear-gradient(90deg, #0064EB 0%, #E2101F 100%);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 100, 235, 0.3);
}

/* Bottom Bar */
.footer-bottom-bar {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 26px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72) !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.footer-social-icon-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-social-icon-btn:hover {
  background-color: #0064EB;
  border-color: #0064EB;
  color: #ffffff !important;
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}




/* ================ Service Pages CSS Style Starts Here ================== */

/* ======== Banner Section ======== */
/* Get in Touch Section */
.hero-contact-form-wrapper {
  display: flex;
  justify-content: end;
  position: relative;
}

.contact-form-glow-bg {
  position: absolute;
  inset: -16px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 100, 235, 0.45), rgba(226, 16, 31, 0.35));
  filter: blur(34px);
  pointer-events: none;
}
.contact-form-card {
    max-width: 505px;
  position: relative;
  border-radius: 18px;
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  padding: 36px 34px;
  text-align: center;
}

.contact-form-title {
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0B1B2B;
  line-height: 1.18;
}

.contact-form-desc {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #5A6B7B;
}

.contact-form-inputs-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.contact-form-control {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 18px;
    border-radius: 10px;
    border: 1px solid rgb(228, 233, 239);
    background: rgb(247, 250, 253);
    font-family: inherit;
    font-size: 14.5px;
    color: rgb(11, 27, 43);
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form-control:focus {
  border-color: #0064EB;
  background-color: #ffffff;
}

.contact-form-textarea {
  resize: vertical;
}

.contact-form-submit-btn {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  border-radius: 10px;
  background: linear-gradient(90deg, #0064EB 0%, #E2101F 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 30px rgba(0, 100, 235, 0.28);
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.contact-form-submit-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .contact-form-card {
    padding: 24px 20px;
  }
  .contact-form-title {
    font-size: 28px;
  }
}

/* ======== Offer Section ======== */
.offer-section {
  background-color: #ffffff;
  padding: 74px 0;
    position: relative;
    overflow: hidden;
}
.offer-section::before {
    content: " ";
    position: absolute;
    top: -280px;
    left: -160px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 16, 31, 0.32) 0%, rgba(226, 16, 31, 0) 70%);
    z-index: 0;
}
.offer-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 44px;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.offer-badge .badge-line-left {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #0064EB, #E2101F);
}

.offer-badge .badge-line-right {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #E2101F, #0064EB);
}

.offer-badge .badge-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0064EB;
}

.offer-title {
  margin: 0 0 16px;
  font-size: 44px;
  line-height: 1.13;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0B1B2B;
}

.offer-desc {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.78;
  color: #5A6B7B;
}
.offer-section .row {
    row-gap: 24px;
}
/* Service Cards */
.offer-card {
  background-color: #ffffff;
  border: 1px solid #E4E9EF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(11, 27, 43, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 27, 43, 0.1);
}

.offer-card-media {
  position: relative;
  height: 230px;
  flex-shrink: 0;
  background-color: #EDF2F8;
  overflow: hidden;
}

.offer-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-card-body {
  padding: 26px;
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.offer-card-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: #0B1B2B;
}

.offer-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.68;
  color: #5A6B7B;
}

@media (max-width: 991px) {
  .offer-title {
    font-size: 32px;
  }
}




/* ======== Why Choose Us Section ======== */
.why-choose-section {
  background-color: #F5F8FB;
  padding-block: 74px;
  border-top: 1px solid #E4E9EF;
  border-bottom: 1px solid #E4E9EF;
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

.why-choose-sticky-col {
  position: sticky;
  top: 40px;
}

.why-choose-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.why-choose-badge-line {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #0064EB, #E2101F);
}

.why-choose-badge-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0064EB;
}

.why-choose-title {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.028em;
  color: #0B1B2B;
}

.why-choose-desc {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.8;
  color: #5A6B7B;
}

.why-choose-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 8px;
  background: linear-gradient(90deg, #0064EB 0%, #E2101F 100%);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 14px 32px rgba(0, 100, 235, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-choose-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 100, 235, 0.36);
}

/* Feature List */
.why-choose-features-col {
  display: flex;
  flex-direction: column;
}

.why-choose-feature-item {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid #E4E9EF;
}

.why-choose-feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.why-choose-feature-num {
  flex-shrink: 0;
  font-size: 34px;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #0064EB, #E2101F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 56px;
}

.why-choose-feature-heading {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: #0B1B2B;
  letter-spacing: -0.015em;
}

.why-choose-feature-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.74;
  color: #5A6B7B;
}

@media (max-width: 991.98px) {
  .why-choose-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-sticky-col {
    position: static;
  }

  .why-choose-title {
    font-size: 32px;
  }
}


/* ======= Why invest Section ========= */
.why-invest-section {
    background: rgb(245, 248, 251); 
    border-top: 1px solid rgb(228, 233, 239); 
    border-bottom: 1px solid rgb(228, 233, 239);
}
.faqs-sec-with-bg {
    background: rgb(245, 248, 251);
    border-top: 1px solid rgb(228, 233, 239);
    border-bottom: 1px solid rgb(228, 233, 239);
}



/* ======= Services- FAQs Section ========= */

.faq-services-page .bootstrap-faq-question {
    background-color: #fff;
}
/* ================ Service Pages CSS Style Ends Here ================== */




/* ============= Responsive Style Starts Here =================== */



/* =================================
   DESKTOP RESET
   1025px+
================================= */

@media (min-width: 1025px) {
    #mainHeader .container {
        flex-wrap: nowrap;
    }
    #mainHeader .container .navbar-nav {
        flex-direction: row;
    }
    .navbar-nav .dropdown-menu {
        position: absolute;
    }
    #navToggle {
        display: none !important;
    }

    #heroNav {
        display: flex !important;

        position: static !important;

        width: auto !important;
        height: auto !important;
        min-height: auto !important;

        transform: none !important;
        visibility: visible !important;

        overflow: visible !important;

        background: transparent !important;

        padding: 0 !important;
    }

    .nav-offcanvas-overlay {
        display: none !important;
    }
}


@media (max-width: 1200px) {
    /* Navbar */
        #mainHeader .container {
        padding-inline: 14px;
    }

    /* Hero */
    .hero-section {
        min-height: unset;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* About */
    .about-section .row {
        gap: 54px;
    }

    /* Common Sections */
    .custom-section {
        padding-block: 60px;
    }

    .sec-title-h2 {
        font-size: clamp(2rem, 3.5vw, 2.85rem);
        margin-bottom: 1rem;
    }

    /* Location */
    .location-section {
        padding: 0;
    }

    .location-map-frame {
        height: 320px;
    }

    /* Feature Cards */
    .feature-card-custom {
        padding: 24px;
    }

    /* Column Spacing */
    .features-section .row > [class*="col-"] {
        padding-inline: 10px;
    }

    .services-section .row > [class*="col-"],
    .process-section .row > [class*="col-"],
    .benefits-section .row > [class*="col-"], 
    .offer-section .row > [class*="col-"] {
        padding-inline: 12px;
    }




    /* Section Headers */
    .benefits-header,
    .industries-header, 
    .services-header, 
    .offer-header  {
        margin-bottom: 1.5rem;
    }

    .testimonials-header,
    .process-header, 
    .portfolio-header {
      margin-bottom: 1.5rem;
    }
    /* CTA Section */
    .cta-banner-title {
      margin: 0;
    }
    .cta-banner-content {
      gap: 20px;
    }

    /* Process Card */
    .process-card-num {
        font-size: 3rem;
        font-weight: 800;
    }

    /* FAQ */
    .faq-container {
        gap: 48px;
    }
    .offer-section::before {
        opacity: .25;
    }
}

@media (max-width: 1024px) {

    /* =================================
       HEADER / OFFCANVAS STACKING
    ================================= */

    #mainHeader {
        position: relative;
        z-index: 1300 !important;
    }

    .navbar-hero.scrolled#mainHeader {
      position: fixed;
    }


    /* =================================
       OVERLAY
    ================================= */

    .nav-offcanvas-overlay {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.65);
        z-index: 1250 !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .nav-offcanvas-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }


    /* =================================
       OFFCANVAS
    ================================= */

    #heroNav {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        position: fixed !important;
        top: 0 !important;
        padding-top: 6rem !important;
        right: 0 !important;
        bottom: 0 !important;
        width: min(390px, 100vw) !important;
        height: 100dvh !important;
        min-height: 100dvh !important;
        padding: 50px 24px 40px;
        background: #000 !important;
        z-index: 1400 !important;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s ease,
                    visibility 0.3s ease;
    }

    #heroNav.active {
        transform: translateX(0);
        visibility: visible;
        box-shadow: 0px 8px 20px 0px #d9d9d940;
    }

    .hero-contact-form-wrapper {
        margin-top: 2rem;
    }
    

    /* =================================
       MENU
    ================================= */

    #heroNav .navbar-nav {
        width: 100%;
        margin: 0 !important;
        display: flex;
        flex-direction: column;
    }

    #heroNav .nav-item {
        width: 100%;
    }

    .nav-link-custom {
        color: #d8d8d8 !important;
        padding: 14px 0 !important;
    }


    /* =================================
       CONTACT / BUTTON
    ================================= */

    #heroNav > .d-flex {
        width: 100%;
        display: flex !important;
        flex-direction: column;
        align-items: flex-start !important;
        margin-top: 16px;
        gap: 12px;
    }

    #heroNav .phone-contact {
        margin-right: 0 !important;
        margin-bottom: 18px;

        color: #fff !important;
    }


    /* =================================
       TOGGLE BUTTON
    ================================= */

    #navToggle {
        position: relative;

        z-index: 1500 !important;

        width: 52px;
        height: 44px;

        padding: 0;

        border: 1px solid rgba(255, 255, 255, 0.7);
        border-radius: 5px;

        background: transparent !important;

        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* =================================
       BOOTSTRAP ICON RESET
    ================================= */

    #navToggle .navbar-toggler-icon {
        display: block !important;

        width: 25px;
        height: 18px;

        background-image: none !important;

        position: relative;
    }


    /* =================================
       CLOSED STATE = HAMBURGER
    ================================= */

    #navToggle .navbar-toggler-icon::before,
    #navToggle .navbar-toggler-icon::after {
        content: "";

        position: absolute;
        left: 0;

        width: 25px;
        height: 2px;

        background: #fff;

        transition: all 0.25s ease;
    }

    #navToggle .navbar-toggler-icon::before {
        top: 2px;

        /* Middle hamburger line */
        box-shadow: 0 7px 0 #fff;
    }

    #navToggle .navbar-toggler-icon::after {
        top: 16px;
    }


    /* =================================
       OPEN STATE
       BUTTON MOVES TOP-RIGHT
    ================================= */
/* 
    #navToggle.is-open {
        position: fixed !important;

        top: 20px !important;
        right: 20px !important;

        z-index: 1600 !important;

        background: #000 !important;
    } */


    /* =================================
       OPEN STATE = X
    ================================= */

    #navToggle.is-open .navbar-toggler-icon::before {
        top: 8px;

        box-shadow: none;

        transform: rotate(45deg);
    }

    #navToggle.is-open .navbar-toggler-icon::after {
        top: 8px;

        transform: rotate(-45deg);
    }


    /* =================================
       BODY LOCK
    ================================= */

    body.offcanvas-active {
        overflow: hidden !important;
        height: 100% !important;
        touch-action: none;
    }
}

@media (max-width: 991px) {

    /* Hero */
    .hero-subheading {
        max-width: 600px;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-image-card-wrapper {
        margin-top: 2rem;
    }

    /* About */
    .about-section .row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-title br:last-child {
      display: none;
    }

    /* Process */
    .process-cta-wrap {
        margin-top: 1rem;
    }
}


@media (max-width: 580px) {

    /* Navbar */
    .brand-logo-wrap img {
      max-width: 220px;
    }
  
    /* Hero */

    .hero-heading {
      font-size: 2.25rem;
      font-weight: 800;
    }
    .hero-subheading {
      font-size: 1.125rem;
      font-weight: 500;
    }
    .sec-title-h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        font-weight: 700 !important;
    }
    /* Container Spacing */
    #mainHeader .container,
    .hero-section .container,
    .custom-section .container,
    .footer-top {
        padding-inline: 20px;
    }

    /* Feature Columns */
    .features-section .row > [class*="col-"] {
        padding-inline: 15px;
    }

    .features-section .row > [class*="col-"]:last-child {
        margin: 0 !important;
    }

    /* About */
    .about-section .row {
        gap: 24px;
    }

    /* Services / Process / Benefits Columns */
    .services-section .row > [class*="col-"],
    .process-section .row > [class*="col-"],
    .benefits-section .row > [class*="col-"], 
    .offer-section .row > [class*="col-"] {
        padding-inline: 15px;
    }

    .services-section .row > [class*="col-"]:last-child,
    .benefits-section .row > [class*="col-"]:last-child {
        margin: 0 !important;
    }

    /* Industries */
    .industries-desc {
        font-size: 16px;
        line-height: 1.65;
    }
    .industry-item {
      padding-block: 12px;
      padding-inline: 16px;
    }
}


/* ============= Responsive Style Starts Here =================== */

/* new home page */

/* ==========================================
   Hero Section Custom Unique Styles
   ========================================== */
.hero-custom-section {
  min-height: 80vh;
  background: 
    linear-gradient(135deg, rgba(5, 27, 51, 0.95) 0%, rgba(8, 49, 95, 0.88) 45%, rgba(7, 24, 43, 0.96) 100%),
    url('/assets/img/hero-bg-img.webp') center center / cover no-repeat !important; /* <--- Apni image ka path yahan badlein */
  padding: 140px 20px 80px 20px;
  position: relative;
  z-index: 1;
}
/* Badge / Pill */
.hero-custom-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-custom-red-dot {
  width: 8px;
  height: 8px;
  background-color: #ff3b30;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 8px #ff3b30;
}

/* Typography */
.hero-custom-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #ffffff;
}

/* Gradient Text Effect */
.hero-custom-gradient-text {
    background: linear-gradient(90deg, rgb(92, 160, 255) 0%, rgb(255, 90, 99) 100%) text;
    color: transparent;
}

.hero-custom-subtitle {
  font-size: 21px;
  color: #ffffff;
font-weight:600;
}

.hero-custom-description {
  font-size: 16px;
  line-height: 26px;
  color: #94a3b8;
  max-width: 520px;
}

/* Buttons Styling */
.hero-custom-btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 34px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgb(0, 100, 235) 0%, rgb(226, 16, 31) 100%);
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: rgba(0, 100, 235, 0.42) 0px 14px 34px;
}
.hero-custom-btn-gradient:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  color: #ffffff !important;
  text-decoration: none;
}

.hero-custom-btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  border-radius: 8px;
 padding: 17px 24px;
  font-size: 15px;
font-weight:700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.banner-cta-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-custom-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff !important;
  text-decoration: none;
}

/* Right Image Styling */
.hero-custom-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8),
              0 0 40px rgba(37, 99, 235, 0.25);
    height: 452px;
}

.hero-custom-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

 /* ==========================================
   Features Cards Custom Section
   ========================================== */

.features-custom-section {
  padding: 70px 20px 70px 20px;
  background-color: #f8fafc;
}

/* Base Card Styling */
.feature-custom-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 28px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgb(228, 233, 239);
}

/* --- Hover Effect 1: Pehle 2 Cards (Blue Border & Soft Blue Glow) --- */
.feature-custom-card.card-blue-hover:hover {
    border-color: rgb(0, 100, 235) !important;
    box-shadow: rgba(0, 100, 235, 0.16) 0px 26px 58px !important;
}

/* --- Hover Effect 2: Baaki 2 Cards (Red Border & Soft Red Glow) --- */
 .feature-custom-card.card-red-hover:hover {
    border-color: rgb(226, 16, 31) !important;
    box-shadow: rgba(226, 16, 31, 0.16) 0px 26px 58px !important;
}

/* Icon Box Styling */
.feature-custom-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgb(0, 100, 235) 0%, rgb(226, 16, 31) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

/* Typography */
.feature-custom-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.3;
}

.feature-custom-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 0;
}
/* ==========================================
   About Custom Section
   ========================================== */

.about-custom-section {
    background: rgb(245, 248, 251);
    border-top: 1px solid rgb(228, 233, 239);
    border-bottom: 1px solid rgb(228, 233, 239);
    padding: 70px 20px;
}

/* Left Column Image Wrapper */
.about-img-wrapper {
    position: relative;
    border-radius: 18px;
    border: 1px solid rgb(228, 233, 239);
    box-shadow: rgba(11, 27, 43, 0.14) 0px 26px 64px;
}

.about-main-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Gradient Experience Badge */
.about-experience-badge {
    position: absolute;
    right: -25px;
    bottom: -25px;
    background: linear-gradient(135deg, rgb(0, 100, 235) 0%, rgb(226, 16, 31) 100%);
    border-radius: 16px;
    padding: 26px 32px;
    box-shadow: rgba(0, 100, 235, 0.34) 0px 22px 48px;
    text-align: center;
    color: white;
    min-width: 200px;
}

.exp-number {
    display: block;
    font-size: 46px;
    font-weight: 900;
    color: rgb(255, 255, 255);
    line-height: 1;
    letter-spacing: -0.03em;
}

.exp-text {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* Right Content */
.about-subtitle {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgb(0, 100, 235);
}

.subtitle-line {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, rgb(0, 100, 235), rgb(226, 16, 31));
}

.about-subtitle {
  color: #2563eb;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

 
.about-main-title {
    font-size: 40px;
    line-height: 50px;
    font-weight: 800;
    color: rgb(11, 27, 43);
 margin-bottom: 24px;
}
 
.about-content-wrapper .about-desc {
    margin: 0px 0px 20px;
    font-size: 16px;
    line-height: 1.82;
    color: rgb(90, 107, 123);
}
/* ==========================================
   Services Custom Section
   ========================================== */

.services-custom-section {
  padding: 70px 20px;
  background-color: #f8fafc;
}

/* Header Elements */
.services-subtitle-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.services-subtitle {
  color: #2563eb;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.services-main-title {
    margin: 0px 0px 16px;
    font-size: 40px;
    line-height: 50px;
    font-weight: 800;
    color: rgb(11, 27, 43);
}

.services-header-desc {
    font-size: 16px;
    line-height: 26px;
    color: rgb(90, 107, 123);
    max-width: 790px;
    width: 100%;
    margin: 0 auto;
}

/* Standard Service Card */
.service-custom-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-custom-card:hover {
    border-color: rgb(0, 100, 235) !important;
    transform: translateY(-8px) !important;
    box-shadow: rgba(0, 100, 235, 0.18) 0px 28px 58px !important;
}

.service-img-box {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-custom-card:hover .service-img-box img {
  transform: scale(1.06);
}

.service-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.service-link:hover {
  color: #1d4ed8;
  gap: 12px;
}

 

section.services-custom-section .cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.cta-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 14px;
}

.cta-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 24px;
}

.btn-cta-appointment {
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-cta-appointment:hover {
  background: #f1f5f9;
  color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
section.services-custom-section .row {
    row-gap: 30px;
}
 
 /* ==========================================
   Industries We Serve Section (Unique Scope)
   ========================================== */

/* Outer Section Layout */
.ind-hero-wrapper {
  background: linear-gradient(160deg, #051b33 0%, #08315f 58%, #07182b 100%);
  position: relative;
  overflow: hidden;
padding:70px 20px;
}

.ind-glow-backdrop {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 720px;
  height: 520px;
  margin-left: -360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 100, 235, 0.34) 0%, rgba(0, 100, 235, 0) 70%);
  pointer-events: none;
}
 

/* Header Elements */
.ind-header-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 46px;
}

.ind-badge-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center !important;
  gap: 12px;
  margin-bottom: 16px;
}

.ind-line-indicator {
  width: 32px;
  height: 2px;
  display: inline-block;
  background: linear-gradient(90deg, #5ca0ff, #ff5a63);
}

.ind-badge-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5ca0ff;
}

.ind-main-heading {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
  color: #ffffff;
  text-wrap: balance;
}

.ind-description-text {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.66);
  text-wrap: pretty;
}

/* Marquee & Tracks */
.ind-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ind-marquee-mask {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0px, #000000 9%, #000000 91%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0px, #000000 9%, #000000 91%, transparent 100%);
}

.ind-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.ind-track-left {
  animation: indMarqueeLeft 15s linear infinite;
}

.ind-track-right {
  animation: indMarqueeRight 15s linear infinite;
}

/* Chip Design */
.ind-chip-card {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.ind-chip-card:hover {
    background: linear-gradient(90deg, rgba(0, 100, 235, 0.42), rgba(226, 16, 31, 0.34)) !important;
    border-color: rgba(92, 160, 255, 0.6) !important;
}

.ind-chip-icon {
  width: 21px;
  height: 21px;
  stroke: #5ca0ff;
}

.ind-chip-text {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  white-space: nowrap;
}

/* Action Button */
.ind-action-box {
  margin-top: 42px;
  text-align: center;
}

.ind-glow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 10px;
  background: linear-gradient(90deg, #2563eb, #dc2626);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
}

.ind-glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.45);
  color: #ffffff;
}

.ind-btn-arrow {
  transition: transform 0.2s ease;
}

.ind-glow-btn:hover .ind-btn-arrow {
  transform: translateX(4px);
}

/* Keyframe Animations */
@keyframes indMarqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes indMarqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

 /* ==========================================
   Business Benefits Section Styling
   ========================================== */

/* Outer Section */
.biz-benefits-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding:70px 20px;
}

 

/* Header Elements */
.biz-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.biz-badge-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.biz-badge-line {
  width: 32px;
  height: 2px;
  display: inline-block;
}

.biz-line-left {
  background: linear-gradient(90deg, #0064eb, #e2101f);
}

.biz-line-right {
  background: linear-gradient(90deg, #e2101f, #0064eb);
}

.biz-badge-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0064eb;
}

.biz-title {
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
  color: #0b1b2b;
  text-wrap: balance;
}

.biz-description {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.78;
  color: #5a6b7b;
  text-wrap: pretty;
}

/* Grid Layout */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* Standard Card */
.biz-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e4e9ef;
  border-radius: 14px;
  padding: 34px 26px;
  box-shadow: 0 14px 36px rgba(11, 27, 43, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.biz-card:hover {
    transform: translateY(-2px);
    border-color: rgb(0, 100, 235) !important;
    box-shadow: rgba(0, 100, 235, 0.14) 0px 24px 54px !important;
}

.biz-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0064eb 0%, #e2101f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.biz-icon {
  width: 34px;
  height: 34px;
  stroke: #ffffff;
}

.biz-card-title {
  margin: 0 0 11px;
  font-size: 18px;
  font-weight: 700;
  color: #0b1b2b;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.biz-card-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.74;
  color: #5a6b7b;
  text-wrap: pretty;
}

/* CTA Highlight Card */
.biz-cta-card {
  border-radius: 14px;
  padding: 34px 28px;
  background: linear-gradient(135deg, #0064eb 0%, #e2101f 115%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 46px rgba(0, 100, 235, 0.26);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.biz-cta-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.biz-cta-text {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.biz-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 8px;
  background: #ffffff;
  color: #0b1b2b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.biz-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.biz-btn-arrow {
  transition: transform 0.2s ease;
}

.biz-cta-btn:hover .biz-btn-arrow {
  transform: translateX(4px);
}
 /* ==========================================
   Testimonials Header & Parent Container
   ========================================== */

 

/* How We Work Section Base */
.hww-main-wrapper {
  background-color: #ffffff;
  padding: 70px 20px;
  width: 100%;
}

 

/* Header Area */
.hww-header-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.hww-badge-container {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.hww-badge-line {
  width: 32px;
  height: 2px;
}

.hww-line-blue-red {
  background: linear-gradient(90deg, #0064eb, #e2101f);
}

.hww-line-red-blue {
  background: linear-gradient(90deg, #e2101f, #0064eb);
}

.hww-badge-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0064eb;
}

.hww-main-heading {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.028em;
  color: #0b1b2b;
  text-wrap: balance;
}

.hww-header-description {
  margin: 0;
  font-size: 16px;
  line-height: 1.76;
  color: #5a6b7b;
  text-wrap: pretty;
}

/* Grid Layout */
.hww-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* Individual Card Styling */
.hww-single-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 46px 26px 30px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e4e9ef;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

/* Top Border Line */
.hww-card-top-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0064eb, #e2101f);
}

/* Watermark Number */
.hww-card-watermark-num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: #f1f5f9;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

/* SVG Icon Wrapper */
.hww-icon-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0064eb 0%, #e2101f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.hww-icon-svg {
  display: block;
}

.hww-card-heading {
  position: relative;
  margin: 0 0 12px;
  font-size: 18.5px;
  font-weight: 700;
  color: #0b1b2b;
  letter-spacing: -0.018em;
  line-height: 1.32;
  text-wrap: balance;
}

.hww-card-paragraph {
  position: relative;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.72;
  color: #5a6b7b;
  text-wrap: pretty;
}

/* Hover Interactions */
.hww-single-card:hover {
  transform: translateY(-6px);
  border-color: #0064eb;
  box-shadow: 0 14px 30px rgba(0, 100, 235, 0.12);
}

/* CTA Button Styles */
.hww-action-block {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.hww-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0064eb, #e2101f);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: rgba(0, 100, 235, 0.22) 0px 14px 30px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hww-btn-link:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  color:white;
}

.hww-btn-arrow {
  display: inline-block;
}
 
/* Section Container */
.nts-cta-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #03101f;
  width: 100%;
  padding:70px 20px;
}

/* Background Gradients & Effects */
.nts-cta-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, #03101f 0%, #062a50 45%, #0b4fb8 85%, #e2101f 165%);
  z-index: 1;
}

.nts-cta-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 78px);
  z-index: 2;
}

.nts-cta-bg-glow {
  position: absolute;
  top: -180px;
  right: 6%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0) 68%);
  z-index: 3;
}

/* Content Layout */
.nts-cta-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
  box-sizing: border-box;
}

/* Badge */
.nts-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* Typography */
.nts-cta-title {
  margin: 0;
  max-width: 900px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.nts-cta-description {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  text-wrap: pretty;
}

/* Buttons Area */
.nts-cta-buttons-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.nts-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary Button */
.nts-cta-btn-primary {
  padding: 17px 34px;
  background: #ffffff;
  color: #0b1b2b;
  font-size: 15px;
  font-weight: 700;
  box-shadow: rgba(0, 0, 0, 0.28) 0px 14px 34px;
}

.nts-cta-btn-primary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

.nts-cta-arrow {
  font-size: 17px;
  line-height: 1;
}

/* Phone Button */
.nts-cta-btn-phone {
  padding: 16px 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nts-cta-btn-phone:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

.nts-cta-phone-icon {
  flex-shrink: 0;
}
/* Base Styles */
.nts-pf-section {
    padding: 70px 20px;
    width: 100%;
    background: rgb(245, 248, 251);
    border-top: 1px solid rgb(228, 233, 239);
    border-bottom: 1px solid rgb(228, 233, 239);
}
 

/* Header Section */
.nts-pf-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.nts-pf-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.nts-pf-badge-line {
  width: 28px;
  height: 2px;
}

.nts-pf-line-left {
  background: linear-gradient(90deg, #0064eb, #e2101f);
}

.nts-pf-line-right {
  background: linear-gradient(90deg, #e2101f, #0064eb);
}

.nts-pf-badge-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0064eb;
}

.nts-pf-heading {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0a192f;
  text-transform: capitalize;
}

.nts-pf-description {
  margin: 0 0 26px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #64748b;
}

.nts-pf-link {
  color: #0a192f;
  text-decoration: none;
}

/* View All Work Button */
.nts-pf-btn-wrapper {
  display: flex;
  justify-content: center;
}

.nts-pf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 8px;
  border: 1.5px solid #0064eb;
  background: transparent;
  color: #0064eb;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nts-pf-btn:hover {
  background: #0064eb;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 100, 235, 0.2);
}

/* Slider Section */
.nts-pf-slider-wrapper {
  position: relative;
  padding: 10px 0 50px;
}

.nts-pf-swiper {
  position: static !important;
  padding-bottom: 40px !important;
}

/* Cards Design */
.nts-pf-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 270px;
  background-color: #0b1b2b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.nts-pf-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.nts-pf-card:hover .nts-pf-card-img {
  transform: scale(1.08);
}

.nts-pf-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 16, 31, 0) 20%, rgba(3, 16, 31, 0.92) 100%);
  z-index: 1;
}

.nts-pf-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  text-align: left;
}

.nts-pf-card-title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.015em;
}

.nts-pf-card-category {
  font-size: 13.5px;
  font-weight: 700;
  color: #f59e0b;
  display: block;
}

/* Arrow Buttons */
.nts-pf-nav-btn {
  width: 44px !important;
  height: 44px !important;
  background: #ffffff !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid #e2e8f0 !important;
  transition: all 0.3s ease !important;
}

.nts-pf-nav-btn::after {
  font-size: 14px !important;
  font-weight: 900 !important;
  color: #0f172a !important;
}

.nts-pf-nav-btn:hover {
  background: #0064eb !important;
  border-color: #0064eb !important;
}

.nts-pf-nav-btn:hover::after {
  color: #ffffff !important;
}

.nts-pf-prev-btn {
    left: -22px !important;
    top: 40% !important;
}
.nts-pf-next-btn {
  right: -22px !important;
 top: 40% !important;

}

/* Pagination Dots */
.nts-pf-pagination {
  bottom: 0 !important;
}

.nts-pf-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nts-pf-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #0064eb, #e2101f);
  width: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nts-pf-heading {
    font-size: 28px;
  }
  .nts-pf-prev-btn {
    left: 10px !important;
  }
  .nts-pf-next-btn {
    right: 10px !important;
  }
}
 /* Base Section Setup */
.nts-faq-section {
padding:70px 20px;
  background-color: #ffffff;
  width: 100%;
  position: relative;
  overflow: visible !important; /* Important for Bootstrap sticky */
}

/* Left Column Styling */
.nts-faq-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.nts-faq-badge-line {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #0064eb, #e2101f);
}

.nts-faq-badge-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0064eb;
}

.nts-faq-heading {
  margin: 0 0 22px;
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
  letter-spacing: -0.028em;
  color: #0b1b2b;
}

.nts-faq-description {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.8;
  color: #5a6b7b;
}

.nts-faq-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 8px;
  background: linear-gradient(90deg, #0064eb 0%, #e2101f 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: rgba(0, 100, 235, 0.28) 0px 14px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nts-faq-call-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: rgba(0, 100, 235, 0.4) 0px 18px 36px;
}

.nts-faq-phone-icon {
  flex-shrink: 0;
}

/* Right Column Accordion Layout */
.nts-faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nts-faq-item {
  border: 1px solid #e4e9ef;
  border-radius: 12px;
  background-color: #f5f8fb;
  box-shadow: none;
  overflow: hidden;
  transition: all 0.22s ease;
}

.nts-faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.nts-faq-question {
  font-size: 16.5px;
  font-weight: 700;
  color: #0b1b2b;
  letter-spacing: -0.012em;
  line-height: 1.45;
  transition: color 0.22s ease;
}
 
 .nts-faq-button {
  outline: none !important;
  box-shadow: none !important;
}

 html:has(.nts-faq-section),
body:has(.nts-faq-section) {
  overflow-x: clip !important; 
  overflow-y: visible !important;  
}
.nts-faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e4e9ef;
  color: #0b1b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.22s ease;
}

.nts-faq-content {
  display: none;
  padding: 0 26px 24px;
}

.nts-faq-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #5a6b7b;
}

/* Active State Styles */
.nts-faq-item.nts-faq-active {
  border-color: #0064eb;
  background-color: #ffffff;
  box-shadow: rgba(0, 100, 235, 0.14) 0px 20px 46px;
}

.nts-faq-item.nts-faq-active .nts-faq-question {
  color: #0064eb;
}

.nts-faq-item.nts-faq-active .nts-faq-icon {
  background: linear-gradient(135deg, #0064eb, #e2101f);
  color: #ffffff;
}

.nts-faq-item.nts-faq-active .nts-faq-content {
  display: block;
}
@media (min-width: 992px) {
  .nts-faq-sticky-content {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 10;
  }
}
/* Mobile Responsiveness Override */
@media (max-width: 991px) {
.nts-faq-sticky-content {
    position: static !important;
    margin-bottom: 30px;
}
  .nts-faq-heading {
    font-size: 30px !important;
  }
.hero-custom-section {
    padding: 60px 20px 60px 20px !important;
}
.hero-custom-image-wrapper {
    margin-top: 30px;
}
.features-custom-section {
    padding: 40px 20px !important;
}
section.features-custom-section .col-xl-3.col-lg-6.col-md-6 {
    margin-top: 20px;
}
.about-custom-section {
    padding: 50px 20px !important;
}
.about-content-wrapper {
    margin-top: 40px;
}
.services-custom-section {
    padding: 50px 20px !important;
}
.ind-hero-wrapper {
    padding: 50px 20px !important;
}
.biz-benefits-section {
    padding: 50px 20px !important;
}
.nts-tst-section {
    padding: 50px 20px !important;
}
.hww-main-wrapper {
    padding: 50px 20px !important;
}
.nts-cta-wrapper {
    padding: 50px 20px !important;
}
.nts-pf-section {
    padding: 50px 20px !important;
}
.nts-faq-section {
    padding: 50px 20px !important;
}
.about-experience-badge {
    right: -10px !important;
}
.hero-custom-badge {
    padding: 6px 10px !important;
    font-size: 10px !important; 
}
.hero-custom-title {
    font-size: 40px !important;
    line-height: 50px !important;
    letter-spacing: unset !important;
}
.hero-custom-subtitle {
    font-size: 18px !important;
    line-height: 28px !important;
}
.hero-custom-description {
    font-size: 14px !important;
    line-height: 24px !important;
    max-width: 100% !important;
}
.hero-custom-btn-gradient {
    padding: 13px 26px !important;
    font-size: 14px !important;
}
.hero-custom-btn-outline {
   padding: 13px 26px !important;
    font-size: 14px !important;
}
.feature-custom-icon {
    width: 50px !important;
    height: 50px !important;
}
.feature-custom-title {
    font-size: 18px !important;
    line-height: 28px !important;
margin-bottom: 7px !important;
}
.feature-custom-text {
    font-size: 14px !important;
    line-height: 24px !important;
}
.feature-custom-card {
    padding: 26px 22px !important;
  
}
.exp-number {
    font-size: 30px !important;
    line-height: 40px !important;
}
.about-experience-badge {
    padding: 22px 20px !important;
    min-width: 170px !important;
}
.about-subtitle {
    font-size: 12px !important;
}
.about-main-title {
    font-size: 30px !important;
    line-height: 40px !important;
margin-bottom: 16px !important;
}
.about-content-wrapper .about-desc {
    font-size: 14px !important;
    line-height: 24px !important;
    margin: 0px 0px 12px !important;
}
.services-subtitle {
    font-size: 12px !important;
}
.services-main-title {
    margin: 0px 0px 12px !important;
    font-size: 30px !important;
    line-height: 40px !important;
}
.services-header-desc {
    font-size: 14px !important;
    line-height: 24px !important;
    max-width: 100% !important; 
}
.service-img-box {
    height: 220px !important;
}
.service-content {
    padding: 22px 16px !important;
}
.service-title {
    font-size: 18px !important;
    margin-bottom: 10px !important;
}
.service-text {
    font-size: 14px !important;
    line-height: 24px !important;
    margin-bottom: 15px !important;
}
.service-link {
    font-size: 14px !important;
}
.cta-text {
    font-size: 14px !important;
    line-height: 24px !important;
    margin-bottom: 20px !important;
}
.service-cta-card .cta-title {
    font-size: 18px !important;
    line-height: 28px !important;
    margin-bottom: 10px;
}
.btn-cta-appointment {
    font-size: 14px !important;
}
.ind-main-heading {
    font-size: 30px !important;
    line-height: 40px !important;
}
.ind-description-text {
    font-size: 14px !important;
    line-height: 24px !important;
}
.ind-chip-card {
    gap: 10px !important;
    padding: 12px 20px !important;
}
.ind-chip-text {
    font-size: 14px !important;
}
.ind-glow-btn {
    padding: 13px 26px !important;
    font-size: 14px !important;
}
.biz-title {
    font-size: 30px !important;
    line-height: 40px  !important;
}
.biz-description {
    font-size: 14px !important;
   line-height: 24px  !important;
}
.biz-icon-box {
    width: 50px !important;
    height: 50px !important;
}
.biz-card-text {
    font-size: 14px !important;
    line-height: 24px !important;
}
.biz-card {
    padding: 28px 20px !important;
}
.biz-cta-btn {
    padding: 12px 22px !important;
}
.biz-cta-title {
    font-size: 18px !important;
    line-height: 28px !important;
}
.biz-cta-card {
    padding: 28px 20px !important;
}
.nts-tst-heading {
    font-size: 30px !important;
}
.nts-tst-description {
    font-size: 14px !important;
    line-height: 24px !important;
}
.nts-google-badge {
    padding: 14px 22px !important;
    font-size: 14px !important;
}
.hww-main-heading {
    font-size: 30px  !important;
    line-height: 40px !important;
}
.hww-header-description {
    font-size: 14px !important;
    line-height: 24px !important;
}
.hww-icon-wrapper {
    width: 50px !important;
    height: 50px !important;
}
.hww-card-heading {
    font-size: 18px !important;
    line-height: 28px !important;
}
.hww-card-paragraph {
    font-size: 14px !important;
    line-height: 24px !important;
}
.hww-btn-link {
    padding: 12px 24px !important;
    font-size: 14px !important;
}
.nts-cta-badge {
    padding: 6px 12px !important;
    font-size: 10px !important;
}
.nts-cta-title {
    font-size: 30px !important;
    line-height: 40px !important;
    letter-spacing: unset !important;
}
.nts-cta-description {
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 24px !important;
}
.nts-cta-btn-primary {
    padding: 12px 24px !important;
    font-size: 14px !important;
}
.nts-cta-btn-phone {
    padding: 12px 24px !important;
    font-size: 14px !important;
    letter-spacing: unset !important;
}
.nts-pf-heading {
    font-size: 30px !important;
    line-height: 40px !important;
    letter-spacing: unset !important;
}
.nts-pf-description {
    font-size: 14px !important;
    line-height: 24px !important;
}
.nts-pf-btn {
    padding: 12px 24px !important;
}
.nts-pf-card-title {
    font-size: 18px !important;
    letter-spacing: unset !important;
}
.nts-faq-description {
    font-size: 14px !important;
    line-height: 24px !important;
}
.nts-faq-call-btn {
    padding: 12px 24px !important;
    font-size: 14px !important;
}
.nts-faq-button {
    padding: 18px 22px !important;
}
.nts-faq-content {
    padding: 0 22px 18px !important;
}
.nts-faq-question {
    font-size: 16px !important;
    line-height: 26px !important;
}
.nts-faq-text {
    font-size: 14px !important;
    line-height: 24px !important;
}
.nts-google-badge {
    flex-wrap: wrap !important;
}



}










/* Unique Location Map Section */
.nts-map-section {
  position: relative;
  background-color: #e8ece4;
  width: 100%;
  line-height: 0; /* Extra inline gap remove karne ke liye */
  overflow: hidden;
}

.nts-map-wrapper {
  position: relative;
  width: 100%;
  height: 440px;
}

.nts-map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0 !important;
  outline: none !important;
}

/* Responsive Support */
@media (max-width: 768px) {
  .nts-map-wrapper {
    height: 350px; /* Mobile par map height fix */
  }
}

/* Custom Testimonials Styling */
.nts-tst-section {
   padding: 70px 20px;
    background: rgb(245, 248, 251);
    border-top: 1px solid rgb(228, 233, 239);
    border-bottom: 1px solid rgb(228, 233, 239);
}

.nts-tst-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.nts-tst-badge-line {
  width: 24px;
  height: 2px;
  background: #0064eb;
}

.nts-tst-badge-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0064eb;
}

.nts-tst-heading {
  font-size: 40px;
  font-weight: 800;
  color: #0b1b2b;
}

.nts-tst-description {
  font-size: 16px;
  color: #5a6b7b;
}

/* Google Badge Top Link */
.nts-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 25px;
    border-radius: 999px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(228, 233, 239);
    box-shadow: rgba(11, 27, 43, 0.08) 0px 12px 30px;
    margin-bottom: 20px;
}

.nts-google-badge:hover {
  transform: translateY(-2px);
  color: #0b1b2b;
}

.nts-stars {
  color: #ffb400;
  font-size: 18px;
}

.nts-badge-divider {
  width: 1px;
  height: 24px;
  background-color: #e2e8f0;
  margin: 0 16px;
}

/* Review Cards UI */
.nts-tst-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 28px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.swiper-slide-active .nts-tst-card {
  border-color: #0064eb;
  box-shadow: 0 16px 40px rgba(0, 100, 235, 0.12);
}

.nts-card-stars {
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 16px;
}

.nts-card-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 24px;
}

.nts-card-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.nts-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #00897b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.nts-avatar-circle.alt-bg {
  background: #d84315;
}

.nts-avatar-circle.alt-bg-2 {
  background: #1565c0;
}

.nts-author-name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0b1b2b;
}

.nts-author-sub {
  font-size: 12px;
  color: #a0aec0;
}

/* Slider Pagination & Buttons */
.nts-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.nts-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0064eb;
  transition: all 0.2s ease;
}

.nts-nav-btn:hover {
    background: linear-gradient(135deg, rgb(0, 100, 235), rgb(226, 16, 31)) !important;
    color: rgb(255, 255, 255) !important;
    border-color: transparent !important;
}

.nts-pagination {
  position: static !important;
  width: auto !important;
}

.nts-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e0;
  opacity: 1;
}

.nts-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, rgb(0, 100, 235), rgb(226, 16, 31)) !important;

  width: 24px;
  border-radius: 5px;
}

@media (min-width: 750px) and (max-width: 991px) {
  .biz-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
.hww-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}


}
/* 750px se choti screens ke liye 1 column layout */
@media (max-width: 749px) {
  .biz-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
.hww-cards-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;

}

}