/* ==========================================================
   ROOT VARIABLES
   ========================================================== */
:root {
  --primary: #002046;
  --secondary: #E9C349;
  --tertiary: #735C00;

  --primary-rgb: 0, 32, 70;
  --secondary-rgb: 233, 195, 73;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --header-height: 86px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--primary);
  overflow-x: hidden;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin: 0;
}

a { text-decoration: none; }
img { display: block; max-width: 100%; }

.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1.6rem;
  border-radius: 6px;
  transition: all .3s ease;
  border: none;
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  min-height: var(--header-height);
  box-shadow: 0 2px 18px rgba(0,32,70,.06);
  transition: box-shadow .3s ease;
}

.site-header .navbar {
  width: 100%;
  min-height: var(--header-height);
}
.main-nav {
  gap: 2.2rem;
}

.main-nav .nav-link {
  color: var(--primary);
  font-weight: 600;
  font-size: .95rem;
  padding: .4rem 0;
  position: relative;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width .3s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  width: 100%;
}

.main-nav .nav-link.active { color: var(--primary); }

.btn-outline-support {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  padding: .6rem 1.1rem;
}

.btn-outline-support:hover {
  background: var(--primary);
  color: #fff;
}

.btn-contact-us {
  background: var(--primary);
  color: #fff;
  font-size: .85rem;
  padding: .65rem 1.4rem;
}

.btn-contact-us:hover {
  background: var(--tertiary);
  color: #fff;
}

/* ==========================================================
   HERO SLIDER
   ========================================================== */
.hero-section {
  position: relative;
  width: 100%;
}

.heroSwiper, .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  display: flex;
  align-items: stretch;
}

.hero-slide {
  flex: 1; 
  position: relative;
  width: 100%;
  min-height: 640px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(var(--primary-rgb),.97) 0%,
    rgba(var(--primary-rgb),.9) 32%,
    rgba(var(--primary-rgb),.55) 58%,
    rgba(var(--primary-rgb),.15) 78%,
    rgba(var(--primary-rgb),0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 2px;
  padding: .45rem 1.1rem;
  border-radius: 30px;
  margin-bottom: 1.4rem;
}

.hero-badge i {
  width: 34px;
  height: 1.5px;
  background: rgba(0,32,70,.5);
  display: inline-block;
}

.hero-title {
  color: #fff;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.3rem;
}

.hero-title .text-accent {
  color: var(--secondary);
  display: block;
}

.hero-title { display: block; }

.hero-desc {
  color: rgba(255,255,255,.82);
  font-size: .98rem;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-white {
  background: #fff;
  color: var(--primary);
  padding: .85rem 1.7rem;
}

.btn-hero-white:hover {
  background: var(--secondary);
  color: var(--primary);
}

.btn-hero-gold {
  background: var(--tertiary);
  color: #fff;
  padding: .85rem 1.7rem;
}

.btn-hero-gold:hover {
  background: var(--secondary);
  color: var(--primary);
}

.hero-stamp {
  position: absolute;
  bottom: 26px;
  right: 5%;
  display: none;
  z-index: 2;
  color: rgba(255,255,255,.55);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: .5rem;
}

/* Swiper controls */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
  transition: all .3s ease;
}

.hero-nav-btn:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.heroSwiper .swiper-pagination {
  bottom: 24px !important;
  text-align: right;
  padding-right: 6%;
}

.heroSwiper .swiper-pagination-bullet {
  background: #fff;
  opacity: .5;
  width: 9px;
  height: 9px;
}

.heroSwiper .swiper-pagination-bullet-active {
  background: var(--secondary);
  opacity: 1;
  width: 26px;
  border-radius: 5px;
}
.logo-img {
  max-width: 90px; 
  height: auto;
}
.navbar.flex-nowrap {
  flex-wrap: nowrap;
}

/* ==========================================================
   MOBILE SQUEEZE ADJUSTMENTS (MAX-WIDTH 575px)
   ========================================================== */
@media (max-width: 575px) {
  .logo-img {
        max-width:62px;
    }
  
  .btn-outline-support, 
  .btn-contact-us {
    font-size: 0.70rem; 
    padding: 0.4rem 0.5rem; 
  }

  .header-actions {
    gap: 0.25rem !important; 
  }
  
  .navbar-toggler i {
    font-size: 29px !important;
    vertical-align: super !important;
  }
}
/* ==========================================================
   EXPERTISE SECTION
   ========================================================== */
.expertise-section {
  padding: 6rem 0 2rem;
  background: #fff;
}

.section-heading {
  font-size: 2.1rem;
  font-weight: 700;
}

.heading-underline {
  width: 56px;
  height: 3px;
  background: var(--secondary);
  margin: 1.1rem 0 1.6rem;
}

.expertise-text {
  color: #5c6470;
  font-size: .98rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-top: 2rem;
}

.stat-item h3 {
  color: var(--primary);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: .15rem;
}

.stat-item span {
  color: var(--tertiary);
  font-size: .85rem;
  font-weight: 600;
}

.stat-divider {
  width: 2px;
  height: 42px;
  background: var(--secondary);
}

.expertise-img-frame {
  border: 1px solid #e3e6ec;
  border-radius: 8px;
  padding: 22px;
  background: #fafbfc;
}

.expertise-img-frame img {
  border-radius: 4px;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(15%);
}

/* ==========================================================
   RESPONSIVE (Cleaned and Merged)
   ========================================================== */
@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 15px 25px rgba(0, 32, 70, 0.1);
    border-top: 1px solid rgba(0, 32, 70, 0.05);
    z-index: 999;
  }
  .main-nav {
    gap: 1rem;
    margin: 1rem 0;
  }
  .header-actions {
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-slide {
    min-height: 500px;
    padding: 3rem 0;
  }
  .hero-nav-btn {
    display: none;
  }
  .heroSwiper .swiper-pagination {
    text-align: center;
    padding-right: 0;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }
  .stat-row {
    gap: 1.2rem;
  }
  .hero-stamp {
    display: none;
  }
  .hero-slide {
    min-height: 450px !important;
    padding: 2rem 0;
  }
}
/* ==========================================================
   SERVICES SECTION
   ========================================================== */
.services-section {
  padding: 2rem 0 4rem;
  background: #fff;
}

.section-title {
  margin-bottom: 3.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title p {
  color: #5c6470;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Swiper specific adjustments */
.servicesSwiper {
  padding-bottom: 3rem; /* Space for pagination dots */
}

/* Ensure slides stretch to equal height */
.servicesSwiper .swiper-slide {
  height: auto; 
  display: flex;
}

/* Service Card Design */
.service-card {
  background: #fafbfc;
  border: 1px solid #e3e6ec;
  border-radius: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden; 
}

/* Hover Effects */
.service-card:hover {
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 32, 70, 0.08);
  transform: translateY(-5px);
  border-color: var(--secondary);
}
.service-img-wrap {
  width: 100%;
  height: 200px; 
  background: #f4f5f7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e3e6ec;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.05); 
}
.service-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  transition: color 0.3s ease;
}
.service-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Yeh bache hue space ko stretch karega */
}

.service-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-content p {
  color: #5c6470;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Link (Details) ko hamesha bottom me push karega */
}

.service-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--tertiary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-link:hover {
  color: var(--primary);
}

.service-link i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}
.service-card:hover .service-icon {
  color: var(--secondary);
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-card p {
  color: #5c6470;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Pushes the 'Details' link to the absolute bottom */
}

.service-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--tertiary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-link:hover {
  color: var(--primary);
}

.service-link i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

/* Arrow slide animation on hover */
.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* Services Pagination Dots Override */
.servicesSwiper .swiper-pagination {
  bottom: 0 !important;
}
.servicesSwiper .swiper-pagination-bullet {
  background: #002046;
  opacity: 0.2;
}
.servicesSwiper .swiper-pagination-bullet-active {
  background: var(--secondary);
  opacity: 1;
  width: 20px;
  border-radius: 5px;
}

/* Responsive Font Sizes */
@media (max-width: 767px) {
  .section-title h2 { font-size: 1.8rem; }
  .service-card { padding: 1.8rem 1.5rem; }
}
/* ==========================================================
   MISSION & VISION
   ========================================================== */
.mission-vision-section{
  padding: 1rem 0 2rem;
  background:#fff;
}

.mv-card{
  position:relative;
  padding-left:1.75rem;
  border-left:3px solid var(--primary);
  min-height:170px;
  overflow:hidden;
  transition:border-color .35s ease, transform .35s ease;
}

.mv-card:hover{
  border-left-color:var(--secondary);
  transform:translateX(6px);
}

.mv-bg-icon{
  position:absolute;
  top:-10px;
  right:8%;
  font-size:7rem;
  line-height:1;
  color:rgba(var(--primary-rgb),.05);
  z-index:0;
  transition:color .35s ease, transform .35s ease;
  pointer-events:none;
}

.mv-card:hover .mv-bg-icon{
  color:rgba(var(--secondary-rgb),.12);
  transform:scale(1.08);
}

.mv-icon{
  position:relative;
  z-index:1;
  font-size:1.9rem;
  color:var(--primary);
  display:inline-block;
  margin-bottom:.6rem;
  transition:color .35s ease;
}

.mv-card:hover .mv-icon{
  color:var(--tertiary);
}

.mv-title{
  position:relative;
  z-index:1;
  font-family:var(--font-heading);
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--primary);
  font-size:1.2rem;
  margin-bottom:.6rem;
}

.mv-underline{
  position:relative;
  z-index:1;
  width:42px;
  height:3px;
  background:var(--secondary);
  margin-bottom:1.1rem;
}

.mv-text{
  position:relative;
  z-index:1;
  color:#5c6470;
  font-size:.95rem;
  line-height:1.8;
  max-width:420px;
  margin:0;
}

@media (min-width:992px){
  .mission-vision-section .col-lg-6:first-child .mv-card{
    padding-right:2rem;
  }
  .mission-vision-section .col-lg-6:first-child{
    /* border-right:1px solid #e7eaf0; */
  }
}
/* ==========================================================
   COMING SOON SECTION
   ========================================================== */
.coming-soon-wrapper {
  background-color: #fafbfc; /* Light grey background */
  border: 1px solid #e3e6ec;
  border-radius: 12px;
  padding: 4rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 32, 70, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coming-soon-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 32, 70, 0.1);
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary); /* Navy Blue */
  color: var(--secondary); /* Gold/Yellow */
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 32, 70, 0.15);
}

.coming_soon_text {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.coming-soon-desc {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* Custom Button */
.coming-soon-btn {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.coming-soon-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

.coming-soon-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.coming-soon-btn:hover i {
  transform: translateX(-4px); /* Arrow moves left on hover */
}
/* ==========================================================
   WHY CHOOSE US
   ========================================================== */
.why-choose-section{
  padding: 3rem 0 6rem;
  background:#fff;
}

.feature-card{
  height:100%;
  background:#fbfbfd;
  border:1px solid #eceff3;
  border-radius:12px;
  padding:2.1rem 1.8rem;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(var(--primary-rgb),.13);
  border-color:var(--secondary);
}

.feature-icon{
  width:54px;
  height:54px;
  border-radius:10px;
  background:rgba(var(--primary-rgb),.06);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1.3rem;
  transition:background .35s ease;
}

.feature-icon i{
  font-size:1.5rem;
  color:var(--primary);
  transition:color .35s ease;
}

.feature-card:hover .feature-icon{
  background:var(--secondary);
}

.feature-card:hover .feature-icon i{
  color:var(--primary);
}

.feature-card h4{
  font-family:var(--font-heading);
  font-weight:700;
  font-size:1.05rem;
  color:var(--primary);
  margin-bottom:.65rem;
}

.feature-card p{
  color:#5c6470;
  font-size:.92rem;
  line-height:1.75;
  margin:0;
}

@media (max-width:575px){
  .mission-vision-section .col-lg-6:first-child{
    border-right:none;
    padding-bottom:1rem;
    border-bottom:1px solid #e7eaf0;
    margin-bottom:1rem;
  }
}
/* ==========================================================
   FOOTER REDESIGN
   ========================================================== */
.site-footer-wrapper {
  background-color: #1e3046; /* Slate Navy background matching the image */
  font-family: var(--font-body);
}

/* --- CTA Section --- */
.footer-cta {
  background-color: #051930; /* Darker Navy for the top bar */
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25rem;
  color: rgba(255, 255, 255, 0.03); /* Faint watermark effect */
  z-index: 1;
  pointer-events: none;
}

.cta-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.btn-cta-yellow {
  background-color: var(--secondary);
  color: var(--primary);
  padding: 0.8rem 2rem;
}

.btn-cta-yellow:hover {
  background-color: #fff;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(233, 195, 73, 0.3);
}

.btn-cta-outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.8rem 2rem;
}

.btn-cta-outline:hover {
  background-color: #fff;
  color: var(--primary);
  border-color: #fff;
}

/* --- Main Footer Section --- */
.main-footer {
  padding: 5rem 0 3rem;
}

.footer-logo {
  max-width: 150px;
  height: auto;
}

.footer-text {
  color: #b3bcc7;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials a {
  color: var(--secondary);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #b3bcc7;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px); /* Smooth slide-right effect */
}

/* --- Contact List --- */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  color: #b3bcc7;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-contact a {
  color: #b3bcc7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.email-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* --- Footer Bottom --- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-bottom p {
  color: #8c97a6;
  font-size: 0.8rem;
}

/* ==========================================================
   FOOTER RESPONSIVE ADJUSTMENTS
   ========================================================== */
@media (max-width: 991px) {
  .cta-watermark {
    display: none; /* Hide watermark on smaller screens */
  }
  .cta-title {
    font-size: 1.7rem;
  }
  .footer-logo {
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .main-footer {
    padding: 3rem 0 2rem;
  }
  .footer-heading {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .btn-cta-yellow, .btn-cta-outline {
    width: 100%;
    text-align: center;
  }
}
/* Floating Menu Container */
.floating-menu {
  position: fixed;
  bottom: 92px;
  right: 28px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 9999;
}

/* Action Buttons Wrapper */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 1;
  transform: translateY(0) scale(1);
  transform-origin: bottom center;
  pointer-events: auto;
}

/* Hidden State Animation */
.floating-menu.closed .action-buttons {
  opacity: 0;
  transform: translateY(40px) scale(0.5);
  pointer-events: none; 
}

.action-btn,
.toggle-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-btn:hover,
.toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}
.wa-btn {
  background-color: #1ea34b;
}
.doc-btn {
  background-color: #a8640d;
}
.phone-btn {
  background-color: #2d448e;
}
.toggle-btn {
  background-color: #b48628;
}

/* Toggle Icon Animation */
.toggle-btn i {
  transition: transform 0.4s ease;
  transform: rotate(45deg);
}


.floating-menu.closed .toggle-btn i {
  transform: rotate(0deg);
}
/* 
       BACK TO TOP
 */
#backTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--secondary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(221, 167, 46, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  cursor: pointer;
}
#backTop.show {
  opacity: 1;
  pointer-events: all;
}
#backTop:hover {
  transform: translateY(-3px) scale(1.08);
}
/* ==========================================================
   PRECISION OVERVIEW SECTION
   ========================================================== */
.precision-overview-sec {
  padding: 6rem 0;
  background-color: #fff;
}

/* Heading with Left Border Accent */
.overview-heading-box {
  border-left: 4px solid var(--secondary); /* Yellow accent line */
  padding-left: 1rem;
}

.overview-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary); /* Navy */
  line-height: 1.3;
}

.overview-lead {
  color: #5c6470;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Feature Cards */
.ov-feature-card {
  background-color: #f4f5f7;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  height: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ov-feature-card:hover {
  background-color: #fff;
  border-color: var(--secondary);
  box-shadow: 0 10px 25px rgba(0, 32, 70, 0.08);
  transform: translateY(-5px); 
}

.ov-icon {
  font-size: 1.5rem;
  color: var(--tertiary); 
  margin-bottom: 0.8rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.ov-feature-card:hover .ov-icon {
  transform: scale(1.15); 
}

.ov-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.ov-card-text {
  font-size: 0.75rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 0;
}

.overview-image-wrapper {
  position: relative;
  padding: 15px; 
}

.overview-image-frame {
  position: relative;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 10px; 
  background: #fff;
}

.ov-main-img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

.overview-image-wrapper:hover .ov-main-img {
  filter: grayscale(0%); 
}

/* ==========================================================
   PRECISION SECTION RESPONSIVE
   ========================================================== */
@media (max-width: 991px) {
  .overview-title {
    font-size: 1.75rem;
  }
  .precision-overview-sec {
    padding: 4rem 0;
  }
}

@media (max-width: 767px) {
  .ov-feature-card {
    text-align: center;

  }
  .overview-heading-box {
    margin-bottom: 1.5rem;
  }
}
/* ==========================================================
   FOUNDATIONAL PILLARS
   ========================================================== */
.pillars-section{
  padding: 3rem 0;
  background:#fff;
}

.pillars-eyebrow{
  display:inline-block;
  color:var(--tertiary);
  font-family:var(--font-heading);
  font-weight:700;
  font-size:.78rem;
  letter-spacing:3px;
  text-transform:uppercase;
}

.pillar-card {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem 2.4rem;
  border-radius: 10px;
  transition: transform .4s ease, box-shadow .4s ease;
  
  /* FIX 1: Hardware acceleration to stop shaking */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.pillar-card:hover {
  transform: translateY(-10px) translateZ(0);
  box-shadow: 0 22px 45px rgba(var(--primary-rgb), .12);
}

.pillar-icon{
  width:64px;
  height:64px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 1.4rem;
  transition:background-color .4s ease, transform .5s ease;
}

.pillar-icon i{
  font-size:1.8rem;
  color:#fff;
  transition:color .4s ease, transform .4s ease;
}

.pillar-icon-primary{background:var(--primary);}
.pillar-icon-tertiary{background:var(--tertiary);}

.pillar-card:hover .pillar-icon{
  background:var(--secondary);
  transform:rotate(-8deg) scale(1.08);
}

.pillar-card:hover .pillar-icon i{
  color:var(--primary);
  transform:scale(1.1);
}

.pillar-title{
  font-family:var(--font-heading);
  font-weight:700;
  font-size:1.05rem;
  color:var(--primary);
  margin-bottom:.85rem;
  transition:color .4s ease;
}

.pillar-card:hover .pillar-title{
  color:var(--tertiary);
}

.pillar-text{
  color:#5c6470;
  font-size:.92rem;
  line-height:1.8;
  margin-bottom:1.6rem;
}

.pillar-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto; 
  width: 46px;
  height: 3px;
  border-radius: 3px;
  transition: width .45s ease, background-color .45s ease;
}
/* Hit-area extension to prevent hover shaking */
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: -15px; /* Jitna card upar uthta hai, utna niche extend kiya */
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent; /* Pura transparent rahega, dikhega nahi */
}
.pillar-bar-primary{background:var(--primary);}
.pillar-bar-tertiary{background:var(--tertiary);}

.pillar-card:hover .pillar-bar {
  width: 100%;
  border-radius: 3px 3px 0 0;
  background: var(--secondary);
}

@media (max-width:767px){
  .pillar-card{padding:1.6rem 1.2rem 2rem;}
}
/* ==========================================================
   OUR PROJECTS
   ========================================================== */
.projects-section{
  padding: 3rem 0;
  background:#fff;
}

.projects-subtitle{
  color:#5c6470;
  font-size:.98rem;
  max-width:620px;
  margin:.9rem auto 0;
  line-height:1.75;
}

.project-card{
  height:100%;
  background:#fff;
  border:1px solid #eceff3;
  border-radius:12px;
  overflow:hidden;
  transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.project-card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 45px rgba(var(--primary-rgb),.14);
  border-color:var(--secondary);
}

.project-img-wrap{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/11;
}

.project-img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s ease;
}

.project-card:hover .project-img{
  transform:scale(1.08);
}

.project-year{
  position:absolute;
  top:12px;
  right:12px;
  background:var(--secondary);
  color:var(--primary);
  font-family:var(--font-heading);
  font-weight:700;
  font-size:.72rem;
  letter-spacing:1px;
  padding:.3rem .65rem;
  border-radius:4px;
  transition:background-color .4s ease, transform .4s ease;
}

.project-card:hover .project-year{
  background:var(--primary);
  color:#fff;
  transform:translateY(-2px);
}

.project-body{
  padding:1.5rem 1.4rem 1.6rem;
}

.project-title{
  font-family:var(--font-heading);
  font-weight:700;
  font-size:1.02rem;
  color:var(--primary);
  line-height:1.4;
  margin-bottom:.7rem;
  min-height:2.8em;
  transition:color .35s ease;
}

.project-card:hover .project-title{
  color:var(--tertiary);
}

.project-text{
  color:#5c6470;
  font-size:.88rem;
  line-height:1.75;
  margin-bottom:1.2rem;
}

.project-link{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  font-family:var(--font-heading);
  font-weight:700;
  font-size:.85rem;
  color:var(--primary);
  text-decoration:none;
  transition:color .35s ease, gap .35s ease;
}

.project-link i{
  font-size:1.1rem;
  transition:transform .35s ease;
}

.project-link:hover{
  color:var(--tertiary);
  gap:.55rem;
}

.project-link:hover i{
  transform:translateX(3px);
}

@media (max-width:767px){
  .project-body{padding:1.3rem 1.1rem 1.4rem;}
}
/* ==========================================================
   GET IN TOUCH / CONTACT
   ========================================================== */
.contact-section{
  background:#fff;
}

.contact-banner{
  position:relative;
  background-size:cover;
  background-position:center;
  padding: 8rem 0;
  text-align:center;
  overflow:hidden;
}

.contact-banner-overlay{
  position:absolute;
  inset:0;
  background:rgba(var(--primary-rgb),.9);
}

.contact-banner-title{
  position:relative;
  z-index:1;
  color:#fff;
  font-family:var(--font-heading);
  font-weight:700;
  letter-spacing:2px;
  font-size:1.9rem;
  margin:0;
}

.contact-cards-wrap{
  margin-top:3.5rem;
  margin-bottom:5rem;
}

.contact-info-card,
.contact-form-card{
  height:100%;
  background:#fff;
  border:1px solid #e7eaf0;
  border-radius:10px;
  padding:2.2rem 2rem;
  transition:box-shadow .4s ease, border-color .4s ease;
}

.contact-info-card:hover,
.contact-form-card:hover{
  box-shadow:0 20px 45px rgba(var(--primary-rgb),.1);
  border-color:var(--secondary);
}

.contact-card-title{
  font-family:var(--font-heading);
  font-weight:700;
  color:var(--primary);
  font-size:1.3rem;
  margin-bottom:.8rem;
}

.contact-card-desc{
  color:#5c6470;
  font-size:.92rem;
  line-height:1.75;
  margin-bottom:1.8rem;
}

/* Contact info items */
.contact-item{
  display:flex;
  align-items:flex-start;
  gap:1rem;
  margin-bottom:1.5rem;
  transition:transform .35s ease;
}

.contact-item:last-child{margin-bottom:0;}

.contact-item:hover{
  transform:translateX(4px);
}

.contact-icon{
  width:40px;
  height:40px;
  border-radius:8px;
  background:var(--primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.15rem;
  flex-shrink:0;
  transition:background-color .35s ease, transform .35s ease;
}

.contact-item:hover .contact-icon{
  background:var(--secondary);
  color:var(--primary);
  transform:rotate(-6deg);
}

.contact-label{
  display:block;
  font-family:var(--font-heading);
  font-weight:700;
  font-size:.72rem;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--tertiary);
  margin-bottom:.25rem;
}

.contact-item-text a{
  color:#5c6470;
  font-size:.9rem;
  margin:0;
  line-height:1.5;
}

/* Form */
.contact-form .form-label{
  font-family:var(--font-heading);
  font-weight:600;
  font-size:.82rem;
  color:var(--primary);
  margin-bottom:.4rem;
}

.contact-form .form-control{
  border:1px solid #dde2ea;
  border-radius:6px;
  padding:.65rem .9rem;
  font-size:.9rem;
  color:var(--primary);
  transition:border-color .3s ease, box-shadow .3s ease;
}

.contact-form .form-control:focus{
  border-color:var(--secondary);
  box-shadow:0 0 0 .2rem rgba(var(--secondary-rgb),.25);
  outline:none;
}

.contact-form textarea.form-control{
  resize:none;
}

.contact-form select.form-select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23002046' d='M8 11 3 6h10z'/%3E%3C/svg%3E");
}

.btn-submit-inquiry{
  width:100%;
  background:var(--tertiary);
  color:#fff;
  font-family:var(--font-heading);
  font-weight:700;
  font-size:.9rem;
  letter-spacing:.5px;
  padding:.85rem 1.5rem;
  border-radius:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  transition:background-color .35s ease, transform .3s ease, gap .3s ease;
}

.btn-submit-inquiry i{
  font-size:1.1rem;
  transition:transform .35s ease;
}

.btn-submit-inquiry:hover{
  background:var(--secondary);
  color:var(--primary);
  transform:translateY(-3px);
  gap:.75rem;
}

.btn-submit-inquiry:hover i{
  transform:translateX(3px);
}

@media (max-width:991px){
  .contact-cards-wrap{margin-top:2.5rem;}
  .contact-info-card,
  .contact-form-card{padding:1.8rem 1.5rem;}
}

@media (max-width:575px){
  .contact-banner-title{font-size:1.5rem;}
  .contact-banner{padding:2.8rem 0;}
}
/* ==========================================================
   TECHNICAL EXCELLENCE
   ========================================================== */
.tech-excellence-section{
  padding: 3rem 0 5rem;
  background:#fff;
}

.tech-heading-wrap{
  margin-bottom:2.8rem;
}

.tech-subtitle{
  color:#5c6470;
  font-size:.95rem;
  max-width:560px;
  margin-top:.7rem;
  line-height:1.75;
}

/* TDR card */
.tdr-card{
  height:100%;
  background:#fff;
  border:1px solid #eceff3;
  border-radius:12px;
  padding:2rem;
  transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.tdr-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 42px rgba(var(--primary-rgb),.12);
  border-color:var(--secondary);
}

.tdr-icon{
  width:52px;
  height:52px;
  border-radius:10px;
  background:var(--primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  margin-bottom:1.2rem;
  transition:background-color .4s ease, transform .4s ease;
}

.tdr-card:hover .tdr-icon{
  background:var(--secondary);
  color:var(--primary);
  transform:rotate(-8deg);
}

.tdr-title{
  font-family:var(--font-heading);
  font-weight:700;
  color:var(--primary);
  font-size:1.15rem;
  margin-bottom:.7rem;
}

.tdr-text{
  color:#5c6470;
  font-size:.9rem;
  line-height:1.75;
  margin-bottom:1.3rem;
}

.tdr-feature{
  display:flex;
  align-items:center;
  gap:.55rem;
  font-size:.85rem;
  font-weight:600;
  color:var(--primary);
  padding:.5rem 0;
  border-top:1px dashed #e7eaf0;
  transition:color .3s ease, padding-left .3s ease;
}

.tdr-feature i{
  color:var(--tertiary);
  font-size:1.05rem;
  transition:color .3s ease;
}

.tdr-feature:hover{
  color:var(--tertiary);
  padding-left:.4rem;
}

.tdr-feature:hover i{
  color:var(--secondary);
}

/* Route tracing image card */
.route-card{
  position:relative;
  height:100%;
  min-height:340px;
  border-radius:12px;
  overflow:hidden;
}

.route-img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
  transition:transform .6s ease;
}

.route-card:hover .route-img{
  transform:scale(1.08);
}

.route-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(0deg, rgba(var(--primary-rgb),.95) 0%, rgba(var(--primary-rgb),.55) 45%, rgba(var(--primary-rgb),.1) 100%);
}

.route-content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:1.8rem 2rem;
  transition:padding-bottom .35s ease;
}

.route-card:hover .route-content{
  padding-bottom:2.2rem;
}

.route-title{
  font-family:var(--font-heading);
  font-weight:700;
  color:#fff;
  font-size:1.25rem;
  margin-bottom:.6rem;
}

.route-text{
  color:rgba(255,255,255,.82);
  font-size:.88rem;
  line-height:1.7;
  max-width:420px;
  margin:0;
}

/* ==========================================================
   IR TESTING BANNER
   ========================================================== */
.ir_section{
  background:var(--primary);
  padding:20px 15px 30px;
  border-radius:12px;
  margin:5px;
}
.ir-title{
  font-family:var(--font-heading);
  font-weight:700;
  color:var(--secondary);
  font-size:1.25rem;
  margin-bottom:.6rem;
}

.ir-text{
  color:rgba(255,255,255,.75);
  font-size:.9rem;
  line-height:1.7;
  margin:0;
  max-width:520px;
}

.ir-stats{
  display:flex;
  gap:1rem;
  justify-content:flex-start;
}

.ir-stat-box{
  flex:1;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.15);
  border-radius:8px;
  padding:.9rem 1.1rem;
  display:flex;
  flex-direction:column;
  gap:.3rem;
  transition:background-color .35s ease, border-color .35s ease, transform .35s ease;
}

.ir-stat-box:hover{
  background:var(--secondary);
  border-color:var(--secondary);
  transform:translateY(-4px);
}

.ir-stat-label{
  font-family:var(--font-heading);
  font-weight:600;
  font-size:.7rem;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--secondary);
  transition:color .35s ease;
}

.ir-stat-box:hover .ir-stat-label{
  color:var(--primary);
}

.ir-stat-value{
  font-family:var(--font-heading);
  font-weight:700;
  font-size:1.05rem;
  color:#fff;
  transition:color .35s ease;
}

.ir-stat-box:hover .ir-stat-value{
  color:var(--primary);
}

@media (max-width:991px){
  .ir-stats{margin-top:.5rem;}
}

/* ==========================================================
   PRECISION PINPOINTING & REPAIR
   ========================================================== */
.precision-section{
  padding: 6rem 0 2rem;
  background:#fff;
}

.precision-item{
  display:flex;
  gap:1.2rem;
  margin-bottom:1.8rem;
  transition:transform .35s ease;
}

.precision-item:hover{
  transform:translateX(6px);
}

.precision-num{
  flex-shrink:0;
  width:42px;
  height:42px;
  border:1.5px solid #dde2ea;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-heading);
  font-weight:700;
  font-size:.85rem;
  color:var(--primary);
  transition:background-color .35s ease, border-color .35s ease, color .35s ease;
}

.precision-item:hover .precision-num{
  background:var(--secondary);
  border-color:var(--secondary);
  color:var(--primary);
}

.precision-item-text h5{
  font-family:var(--font-heading);
  font-weight:700;
  color:var(--primary);
  font-size:1.05rem;
  margin-bottom:.5rem;
  transition:color .35s ease;
}

.precision-item:hover .precision-item-text h5{
  color:var(--tertiary);
}

.precision-item-text p{
  color:#5c6470;
  font-size:.9rem;
  line-height:1.7;
  margin:0;
}

.precision-quote{
  border-left:3px solid var(--secondary);
  padding:.3rem 0 .3rem 1.2rem;
  margin:2rem 0 0;
}

.precision-quote p{
  font-family:var(--font-heading);
  font-style:italic;
  font-weight:600;
  color:var(--primary);
  font-size:1rem;
  line-height:1.6;
  margin-bottom:.5rem;
}

.precision-quote cite{
  display:block;
  font-style:normal;
  font-size:.82rem;
  font-weight:600;
  color:var(--tertiary);
}

.precision-img-frame{
  border-radius:12px;
  overflow:hidden;
}

.precision-img-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.precision-img-frame:hover img{
  transform:scale(1.06);
}

@media (max-width:767px){
  .route-card{min-height:260px;}
  .ir-stats{flex-direction:column;}
}
/* ==========================================================
   RELATED SERVICES SLIDER
   ========================================================== */
.related-services-sec {
  padding: 2rem 0 6rem;
  background: #fff;
}

.rel-srv-heading {
  margin-bottom: 3.5rem;
}

.rel-srv-heading h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.rel-heading-line {
  width: 45px;
  height: 2px;
  background: var(--secondary);
  margin: 0.8rem auto 0;
}

/* Swiper Settings */
.relSrvSwiper {
  padding: 1rem 0 3.5rem; /* Shadow aur pagination ke liye space */
}

.relSrvSwiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Item Card Design */
.rel-srv-item {
  background: #fff;
  border: 1px solid #e9ecef; /* Thin grey border */
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: all 0.3s ease;
}

/* Hover Effects */
.rel-srv-item:hover {
  box-shadow: 0 10px 30px rgba(0, 32, 70, 0.08);
  transform: translateY(-5px);
  border-color: #d1d5db;
}

.rel-srv-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.rel-srv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rel-srv-item:hover .rel-srv-img {
  transform: scale(1.08); /* Image zoom effect on hover */
}

/* Badge (Available Now) */
.rel-srv-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 32, 70, 0.9);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 3px;
  z-index: 2;
  letter-spacing: 0.5px;
}

/* Card Content Area */
.rel-srv-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rel-srv-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.rel-srv-desc {
  font-size: 0.8rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Pushes button to bottom */
}

/* Link Button */
.rel-srv-link {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.rel-srv-link i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.rel-srv-item:hover .rel-srv-link {
  color: var(--secondary);
}

.rel-srv-item:hover .rel-srv-link i {
  transform: translateX(4px); /* Arrow moves right on hover */
}

/* Custom Navigation Arrows (Half Outside) */
.rel-srv-prev, .rel-srv-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.rel-srv-prev:hover, .rel-srv-next:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.rel-srv-prev { left: -18px; }
.rel-srv-next { right: -18px; }

/* Custom Pagination Dots */
.relSrvSwiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #cbd5e1;
  opacity: 1;
}

.relSrvSwiper .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 6px;
  border-radius: 50%;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .rel-srv-prev { left: 5px; } /* Pull arrows inside on smaller screens */
  .rel-srv-next { right: 5px; }
}

@media (max-width: 767px) {
  .rel-srv-prev, .rel-srv-next { 
    display: none;
  }
}
/* ==========================================================
   PRODUCT SINGLE BANNER
   ========================================================== */
.prod-single-banner {
  position: relative;
  width: 100%;
  min-height: 550px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* 
  Gradient overlay matches the screenshot: 
  Dark blue on the left (95% opacity), fading out to transparent on the right 
*/
.prod-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,32,70, 0.96) 0%,
    rgba(0,32,70, 0.85) 35%,
    rgba(0,32,70, 0.3) 65%,
    rgba(0,32,70, 0) 100%);
  z-index: 1;
}

.prod-banner-content {
  padding: 4rem 0;
}

/* --- Badge Design --- */
.prod-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.prod-badge span {
  background-color: var(--secondary); /* The Yellow Color */
  color: var(--primary); /* Navy Blue Text */
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.4rem 1.1rem;
  border-radius: 20px; /* Slight pill shape to match design */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prod-badge-line {
  width: 45px;
  height: 1.5px;
  background-color: rgba(233, 195, 73, 0.5); /* Faded yellow line */
  display: inline-block;
}

/* --- Text & Typography --- */
.prod-title {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.prod-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 2.2rem;
}

/* --- Buttons --- */
.prod-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-prod-light {
  background-color: #ffffff;
  color: var(--primary);
  padding: 0.85rem 2rem;
  font-weight: 700;
}

.btn-prod-light:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px); /* Hover lift */
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.btn-prod-gold {
  background-color: #8c7314; /* Darker Olive/Gold matching the screenshot */
  color: #ffffff;
  padding: 0.85rem 2rem;
  font-weight: 700;
}

.btn-prod-gold:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px); /* Hover lift */
  box-shadow: 0 8px 20px rgba(233, 195, 73, 0.25);
}

/* ==========================================================
   PRODUCT BANNER RESPONSIVE
   ========================================================== */
@media (max-width: 991px) {
  /* On tablets/mobile, make the gradient darker across the whole image so text is easy to read */
  .prod-banner-overlay {
    background: linear-gradient(90deg,
      rgba(0,32,70, 0.95) 0%,
      rgba(0,32,70, 0.85) 60%,
      rgba(0,32,70, 0.6) 100%);
  }
  .prod-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 575px) {
  .prod-single-banner {
    min-height: 500px;
  }
  .prod-title {
    font-size: 2rem;
  }
  .prod-badge {
    gap: 10px;
  }
  .prod-badge span {
    font-size: 0.65rem;
    padding: 0.4rem 0.8rem;
  }
  .prod-badge-line {
    width: 25px;
  }
  .prod-btns .btn {
    width: 100%;
    text-align: center;
  }
}