﻿/* ========================================
   HCG ALTERNATIVE HOMEPAGE - STYLE V2
   Centered Logo, Horizontal Nav, Card Layout
   ======================================== */

/* Same Brand Colors */
:root {
  --dark: #0c1722;
  --blue: #161455;
  --light: #ffffff;
  --muted: #6b7280;
  --emergency: #d92b2b;
  --price-yellow: #ffd400;
  --gray-bg: #f8f9fc;
  --border: rgba(22, 20, 85, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a { text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ========================================
   TOP CONTACT STRIP
   ======================================== */
.top-strip-v2 {
  background: linear-gradient(90deg, var(--dark) 0%, #141c26 100%);
  padding: 11px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-contact-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-link {
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.top-link:hover { color: #fff; }
.top-link i { font-size: 14px; opacity: 0.8; }
.top-link .fa-whatsapp { color: #22c55e; opacity: 1; }

.top-social-emergency {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.follow-text {
  color: #9ca3af;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-link {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--blue), #1e1e6e);
  transform: translateY(-2px);
}

.emergency-badge {
  background: linear-gradient(135deg, #ff1a1a 0%, #c00 60%, #990000 100%);
  color: #fff;
  padding: 7px 18px 7px 14px;
  border-radius: 25px;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 0 0 0 rgba(255, 26, 26, 0.7);
  animation: emergencyPulse 1.6s ease-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

/* shimmer sweep */
.emergency-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  animation: emShimmer 2.2s linear infinite;
  border-radius: inherit;
}

@keyframes emShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

@keyframes emergencyPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 26, 26, 0.75); }
  60%  { box-shadow: 0 0 0 10px rgba(255, 26, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 26, 26, 0); }
}

/* Mobile emergency button - hidden on desktop */
.emergency-mobile {
  display: none;
}


  /* Fixed Emergency Button - Right Center Vertically */
  .emergency-mobile {
  display: flex;
    position: fixed;
    right: -82px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    z-index: 999;
    border-radius: 12px 12px 0 0;
    padding: 10px 16px;
    font-size: 11px;
    writing-mode: horizontal-tb;
    box-shadow: 0 4px 20px rgba(217,43,43,0.4);
    margin-right: 0;
  }
  
 
.emergency-badge i {
  animation: emIconPulse 0.9s ease-in-out infinite alternate;
  font-size: 13px;
}

@keyframes emIconPulse {
  from { opacity: 1;  transform: scale(1); }
  to   { opacity: 0.6; transform: scale(1.25); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}



/* ========================================
   HEADER - LOGO & MENU SAME ROW
   ======================================== */
.header-v2 {
  background: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.header-inner-v2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-wrap-v2 {
  flex-shrink: 0;
  padding: 12px 0;
}

.logo-v2 {
  width: 130px;
  height: auto;
  display: block;
}

/* Navigation */
.nav-v2 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.nav-menu-v2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.nav-item-v2 > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 22px 10px;
  color: var(--dark);
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.nav-item-v2 > a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
  background: transparent;
}

.nav-item-v2 > a i {
  font-size: 10px;
  opacity: 0.7;
}

/* Dropdown */
.has-dropdown-v2 { position: relative; }

.dropdown-v2 {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-top: 3px solid var(--blue);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}

.has-dropdown-v2:hover .dropdown-v2 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-v2 li a {
  display: block;
  padding: 11px 16px;
  color: var(--dark);
  font-weight: 600;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
}

.dropdown-v2 li:last-child a { border-bottom: 0; }

.dropdown-v2 li a:hover {
  background: var(--gray-bg);
  color: var(--blue);
  padding-left: 22px;
}

/* Submenu */
.has-submenu-v2 { position: relative; }

.submenu-v2 {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s ease;
}

.has-submenu-v2:hover .submenu-v2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Pay Bill Button */
.nav-cta-v2 > a.btn-pay-v2 {
  background: linear-gradient(135deg, var(--blue), #1e1e6e);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  margin-left: 10px;
  font-weight: 700;
  font-size: 12px;
  border-bottom: none !important;
  box-shadow: 0 4px 15px rgba(22,20,85,0.25);
}

.nav-cta-v2 > a.btn-pay-v2:hover {
  background: linear-gradient(135deg, #1e1e6e, var(--blue));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,20,85,0.35);
  color: #fff;
}

/* Mobile Toggle */
.mobile-toggle-v2 {
  display: none;
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.mobile-toggle-v2 span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Mobile Close Button */
.mobile-close-v2 {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1002;
}

.mobile-close-v2::before,
.mobile-close-v2::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mobile-close-v2::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close-v2::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-close-v2:hover {
  background: rgba(255,255,255,0.2);
}

/* ========================================
   HERO SECTION - FULL WIDTH
   ======================================== */
.hero-v2 {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.hero-swiper-v2 {
  width: 100%;
  height: 100%;
}

.hero-swiper-v2 .swiper-slide {
  background-size: cover;
  background-position: center;
}

.hero-overlay-v2 {
  position: absolute;
  inset: 0;
  /* reduced opacity to make overlay less dark */
  background: linear-gradient(135deg, rgba(22,20,85,0.45) 0%, rgba(12,23,34,0.25) 50%, rgba(22,20,85,0.35) 100%);
  z-index: 2;
}

.hero-content-v2 {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-text-v2 {
  max-width: 600px;
  color: #fff;
}

.hero-tag-v2 {
  display: inline-block;
  background: var(--price-yellow);
  color: var(--blue);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255,212,0,0.3);
}

.hero-text-v2 h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hero-text-v2 p {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.95;
  margin-bottom: 26px;
  letter-spacing: 0.5px;
}

.hero-btn-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--blue);
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-btn-v2:hover {
  background: var(--price-yellow);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Hero Controls */
.hero-controls-v2 {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-btn-prev,
.hero-btn-next {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hero-btn-prev:hover,
.hero-btn-next:hover {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.hero-dots-v2 {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-dots-v2 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
  margin: 0 5px;
}

.hero-dots-v2 .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--price-yellow);
}

/* ========================================
   PRICE TICKER - FLOATING
   ======================================== */
.price-ticker-v2 {
  margin-top: -30px;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

.ticker-wrapper-v2 {
  background: #fff;
  border-radius: 60px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
}

.ticker-label-v2 {
  background: linear-gradient(135deg, var(--blue), #1e1e6e);
  color: #fff;
  padding: 16px 22px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border-radius: 60px 0 0 60px;
}

.ticker-label-v2 i { color: var(--price-yellow); font-size: 16px; }

.ticker-scroll-v2 {
  flex: 1;
  overflow: hidden;
  padding: 12px 0;
}

.ticker-track-v2 {
  display: flex;
  gap: 30px;
  animation: tickerScroll 18s linear infinite;
}

.ticker-item-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 0 16px;
  border-right: 1px solid var(--border);
}

.ticker-item-v2:last-child { border-right: none; }

.ticker-item-v2 i {
  color: var(--blue);
  font-size: 16px;
  opacity: 0.8;
}

.ticker-name {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.ticker-price {
  color: var(--blue);
  font-weight: 800;
  font-size: 15px;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   QUICK SERVICES - HORIZONTAL BAR
   ======================================== */
.quick-services-v2 {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.services-bar-v2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.service-item-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 14px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-item-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--price-yellow));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.service-item-v2:hover::before {
  transform: scaleX(1);
}

.service-item-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(22,20,85,0.12);
  border-color: transparent;
}

.service-icon-v2 {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), #1e1e6e);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 14px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(22,20,85,0.15);
}

.service-item-v2:hover .service-icon-v2 {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(22,20,85,0.25);
}

.service-title-v2 {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 13px;
  margin-bottom: 4px;
}

.service-sub-v2 {
  font-size: 11px;
  color: var(--muted);
}

/* ========================================
   ABOUT & LEADERSHIP - SIDE BY SIDE
   ======================================== */
.about-leadership-v2 {
  padding: 80px 0;
  background: #fff;
}

.al-grid-v2 {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: stretch;
}

.about-card-v2 {
  background: linear-gradient(135deg, var(--blue) 0%, #1a1a5e 50%, #12124a 100%);
  padding: 45px;
  border-radius: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.about-card-v2::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,212,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.card-badge-v2 {
  display: inline-block;
  background: var(--price-yellow);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  width: fit-content;
}

.card-header-v2 h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.card-body-v2 p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.92;
  margin-bottom: 24px;
}

.card-link-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--price-yellow);
  font-weight: 700;
  font-size: 14px;
  margin-top: auto;
}

.card-link-v2:hover {
  gap: 12px;
}

/* Leadership Card */
.leadership-card-v2 {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.leadership-card-v2:hover {
  box-shadow: 0 25px 70px rgba(22,20,85,0.15);
  transform: translateY(-5px);
}

.leader-image-v2 {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.leader-image-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.leadership-card-v2:hover .leader-image-v2 img {
  transform: scale(1.05);
}

.leader-badge-v2 {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--blue);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.leader-content-v2 {
  padding: 24px;
  text-align: center;
}

.leader-tag-v2 {
  display: block;
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.leader-content-v2 h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.leader-company-v2 {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

/* ========================================
   VISION SECTION - THREE COLUMNS
   ======================================== */
.vision-section-v2 {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fc 0%, #f0f2f8 100%);
}

.section-header-v2 {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-tag-v2 {
  display: inline-block;
  background: linear-gradient(135deg, rgba(22,20,85,0.1), rgba(22,20,85,0.05));
  color: var(--blue);
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(22,20,85,0.1);
}

.section-header-v2 h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-header-v2 p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.vision-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vision-card-v2 {
  background: #fff;
  padding: 36px 28px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.vision-card-v2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--price-yellow));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.vision-card-v2:hover::after {
  transform: scaleX(1);
}

.vision-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(22,20,85,0.12);
  border-color: transparent;
}

.vision-icon-v2 {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--blue), #1e1e6e);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  margin: 0 auto 22px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(22,20,85,0.2);
}

.vision-card-v2:hover .vision-icon-v2 {
  transform: scale(1.1);
  box-shadow: 0 14px 35px rgba(22,20,85,0.25);
}

.vision-card-v2 h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.vision-card-v2 p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* ========================================
   LOCATIONS SECTION - HORIZONTAL CARDS
   ======================================== */
.locations-v2 {
  padding: 80px 0;
  background: #fff;
}

.locations-row-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-item-v2 {
  position: relative;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.location-bg-v2 {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-item-v2:hover .location-bg-v2 {
  transform: scale(1.1);
}

.location-overlay-v2 {
  position: absolute;
  inset: 0;
  /* soften location overlay */
  background: linear-gradient(180deg, transparent 30%, rgba(22,20,85,0.45) 100%);
}

.location-content-v2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: #fff;
}

.location-content-v2 h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--price-yellow);
  margin-bottom: 8px;
}

.location-content-v2 span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.9;
}

.location-item-v2:hover .location-content-v2 span {
  gap: 12px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section-v2 {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fc 0%, #f0f2f8 100%);
}

.contact-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contact-card-v2 {
  background: #fff;
  padding: 30px 24px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--price-yellow));
  transition: width 0.35s ease;
}

.contact-card-v2:hover::before {
  width: 100%;
}

.contact-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(22,20,85,0.12);
  border-color: transparent;
}

.contact-icon-v2 {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue), #1e1e6e);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  margin: 0 auto 18px;
  box-shadow: 0 10px 25px rgba(22,20,85,0.2);
  transition: all 0.35s ease;
}

.contact-card-v2:hover .contact-icon-v2 {
  transform: scale(1.1);
}

.whatsapp-card-v2 .contact-icon-v2 {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 25px rgba(34,197,94,0.25);
}

.emergency-card-v2 .contact-icon-v2 {
  background: linear-gradient(135deg, var(--emergency), #b91c1c);
  box-shadow: 0 10px 25px rgba(217,43,43,0.25);
}

.contact-card-v2 h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-card-v2 p {
  margin: 6px 0;
  font-size: 14px;
}

.contact-card-v2 p a {
  color: var(--blue);
  font-weight: 600;
}

.contact-card-v2 p a:hover {
  color: var(--emergency);
}

/* ========================================
   FOOTER
   ======================================== */
.footer-v2 {
  background: linear-gradient(180deg, var(--dark) 0%, #070d14 100%);
  color: #fff;
  padding-top: 70px;
}

.footer-main-v2 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-v2 {
  width: 150px;
  margin-bottom: 18px;
}

.footer-brand-v2 p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-socials-v2 {
  display: flex;
  gap: 12px;
}

.footer-socials-v2 a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials-v2 a:hover {
  background: linear-gradient(135deg, var(--blue), #1e1e6e);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(22,20,85,0.3);
}

.footer-links-v2 h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links-v2 h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--price-yellow);
}

.footer-links-v2 ul li {
  margin: 14px 0;
}

.footer-links-v2 ul li a {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links-v2 ul li a:hover {
  color: var(--price-yellow);
  padding-left: 8px;
}

/* Footer Bottom */
.footer-bottom-v2 {
  padding: 22px 0;
  background: rgba(0,0,0,0.3);
}

.footer-bottom-inner-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-inner-v2 p {
  color: #9ca3af;
  font-size: 13px;
}

.footer-legal-v2 {
  display: flex;
  gap: 28px;
}

.footer-legal-v2 a {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-legal-v2 a:hover {
  color: var(--price-yellow);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Smaller Desktop */
@media (max-width: 1200px) {
  .nav-item-v2 > a {
    padding: 20px 8px;
    font-size: 11px;
  }
  
  .logo-v2 {
    width: 110px;
  }
  
  .nav-cta-v2 > a.btn-pay-v2 {
    padding: 8px 14px;
    font-size: 11px;
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .nav-item-v2 > a {
    padding: 18px 6px;
    font-size: 10px;
  }
  
  .services-bar-v2 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .al-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  /* Leadership (Chairman) comes first on mobile */
  .leadership-card-v2 {
    order: -1;
  }
  
  .vision-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-text-v2 h1 {
    font-size: 38px;
  }
  
  .footer-main-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  /* Top strip - one line: email + one number */
  .top-strip-inner {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    padding: 8px 0;
  }
  
  .top-contact-info {
    flex-wrap: nowrap;
    gap: 12px;
  }
  
  /* Hide phone number on mobile */
  .top-link-phone {
    display: none;
  }

  /* Keep Customer Zone visible in topbar on mobile */
  .top-social-emergency {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Hide desktop emergency badge â€” mobile uses fixed button */
  .emergency-desktop {
    display: none;
  }

  /* Topbar: contacts left, customer zone right */
  .top-strip-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 8px 0;
  }
  
  
  /* Header Mobile */
  .header-inner-v2 {
    padding: 10px 0;
  }
  
  .logo-v2 {
    width: 100px;
  }
  
  /* Mobile Navigation */
  .mobile-toggle-v2 {
    display: block;
  }
  
  .mobile-close-v2 {
    display: block;
  }
  
  .nav-menu-v2 {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--blue);
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 20px 30px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .nav-menu-v2.active {
    left: 0;
  }
  
  /* Mobile menu overlay */
  .nav-menu-v2::before {
    content: '';
    position: fixed;
    top: 0;
    left: 300px;
    width: 100vw;
    height: 100vh;
    /* make mobile menu backdrop less intense */
    background: rgba(0,0,0,0.20);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-menu-v2.active::before {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-item-v2 {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-item-v2 > a {
    padding: 16px 0;
    justify-content: space-between;
    color: #fff;
    border-bottom: none;
    font-size: 14px;
  }
  
  .nav-item-v2 > a:hover {
    color: var(--price-yellow);
    border-bottom: none;
  }
  
  .nav-item-v2 > a i {
    transition: transform 0.3s ease;
  }
  
  .nav-item-v2.has-dropdown-v2.open > a i {
    transform: rotate(180deg);
  }
  
  .dropdown-v2 {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    display: none;
    border-radius: 0;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .has-dropdown-v2.open .dropdown-v2 {
    display: block;
    max-height: 1000px;
  }
  
  .dropdown-v2 li a {
    color: #fff;
    border-color: rgba(255,255,255,0.1);
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .dropdown-v2 li a:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 24px;
  }
  
  .submenu-v2 {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(0,0,0,0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .has-submenu-v2.open .submenu-v2 {
    display: block;
    max-height: 500px;
  }
  
  .submenu-v2 li a {
    padding-left: 36px;
    font-size: 12px;
  }
  
  .nav-cta-v2 {
    margin-top: 20px;
    width: 100%;
    padding-bottom: 20px;
  }
  
  .nav-cta-v2 > a.btn-pay-v2 {
    margin: 0;
    display: block;
    text-align: center;
    width: 100%;
  }
  
  /* Hero */
  .hero-v2 {
    height: 450px;
  }
  
  .hero-text-v2 h1 {
    font-size: 32px;
  }
  
  .hero-text-v2 p {
    font-size: 16px;
  }
  
  .hero-controls-v2 {
    bottom: 20px;
    right: 20px;
  }
  
  /* Price Ticker - move down to avoid overlap */
  .price-ticker-v2 {
    margin-top: 15px;
  }
  
  /* Services */
  .services-bar-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Locations */
  .locations-row-v2 {
    grid-template-columns: 1fr;
  }
  
  .location-item-v2 {
    height: 220px;
  }
  
  /* Contact */
  .contact-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Vision */
  .vision-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  /* Footer - Left aligned on mobile */
  .footer-main-v2 {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .footer-socials-v2 {
    justify-content: flex-start;
  }
  
  .footer-links-v2 h4::after {
    left: 0;
  }
  
  .footer-bottom-inner-v2 {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
  
  .footer-legal-v2 {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  /* Add padding right for fixed emergency button */
  body {
    padding-right: 0;
  }
  
  .top-link {
    font-size: 11px;
    gap: 5px;
  }
  
  .logo-v2 {
    width: 100px;
  }
  
  .hero-v2 {
    height: 380px;
  }
  
  .hero-text-v2 h1 {
    font-size: 26px;
  }
  
  .hero-text-v2 p {
    font-size: 14px;
  }
  
  .hero-btn-v2 {
    padding: 12px 24px;
    font-size: 13px;
  }
  
  /* Price Ticker - Mobile Friendly */
  .price-ticker-v2 {
    margin-top: -10px;
    padding: 0 10px;
  }
  
  .ticker-wrapper-v2 {
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
  }
  
  .ticker-label-v2 {
    padding: 12px 16px;
    font-size: 13px;
    border-radius: 16px 16px 0 0;
    justify-content: center;
    width: 100%;
  }
  
  .ticker-scroll-v2 {
    padding: 14px 12px;
    background: #fff;
    border-radius: 0 0 16px 16px;
  }
  
  .ticker-item-v2 {
    padding: 8px 14px;
    gap: 10px;
    background: var(--gray-bg);
    border-radius: 10px;
    margin-right: 12px;
    min-width: 200px;
  }
  
  .ticker-item-v2 i {
    font-size: 18px;
    color: var(--blue);
  }
  
  .ticker-name {
    font-size: 11px;
    color: var(--muted);
  }
  
  .ticker-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
  }
  
  .services-bar-v2 {
    grid-template-columns: 1fr;
  }
  
  .service-item-v2 {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }
  
  .service-icon-v2 {
    margin-bottom: 0;
  }
  
  .about-card-v2,
  .leadership-card-v2 {
    padding: 24px;
  }
  
  .card-header-v2 h2 {
    font-size: 22px;
  }
  
  .section-header-v2 h2 {
    font-size: 28px;
  }
  
  .vision-card-v2 {
    padding: 24px;
  }
  
  .contact-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .contact-card-v2 {
    padding: 20px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--blue);
  color: #fff;
}

/* Image placeholder backgrounds */
.leader-image-v2 {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.location-item-v2 {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Loading skeleton animation */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}



@media (max-width:900px){
    .top-socials{
        display: none;
    }
    .nav-menu-v2{
        display: block;
    }
}

/* WhatsApp Floating Action Button */
.whatsapp-fab{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg,#25D366 0%,#16A34A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37,211,102,0.18);
  z-index: 99999;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-fab:hover{transform: translateY(-4px); box-shadow: 0 12px 30px rgba(37,211,102,0.24);}
.whatsapp-fab:active{transform: translateY(-2px) scale(.98);}
.whatsapp-fab svg{width:28px;height:28px;display:block}

@media (max-width:420px){
  .whatsapp-fab{right:16px;bottom:16px;width:50px;height:50px}
  .whatsapp-fab svg{width:24px;height:24px}
}

.whatsapp-fab i {
  font-size: 27px;
  color: #fff;
}


/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* --- Page Hero Banner --- */
.page-hero-v2 {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,20,85,0.82) 0%, rgba(12,23,34,0.60) 50%, rgba(22,20,85,0.75) 100%);
  z-index: 1;
}

.page-hero-v2 .container {
  position: relative;
  z-index: 2;
}

.page-hero-content {
  padding-bottom: 48px;
}

.breadcrumb-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 14px;
}

.breadcrumb-v2 a {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.breadcrumb-v2 a:hover {
  color: var(--price-yellow);
}

.breadcrumb-v2 i {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
}

.breadcrumb-v2 span {
  color: var(--price-yellow);
  font-weight: 600;
}

.page-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.page-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 500px;
}

/* --- About Main Section --- */
.about-main-v2 {
  padding: 80px 0 60px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.about-intro-content .section-tag-v2 {
  display: inline-block;
  margin-bottom: 14px;
}

.about-intro-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.about-intro-content p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats-card {
  background: linear-gradient(135deg, var(--blue) 0%, #1e1a6e 100%);
  border-radius: 20px;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.stat-item-v2 {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--price-yellow);
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  font-weight: 500;
}

/* --- Segments Section --- */
.segments-v2 {
  padding: 60px 0 70px;
  background: var(--gray-bg);
}

.section-header-center {
  text-align: center;
}

.section-header-center h2 {
  max-width: 550px;
  margin: 0 auto;
}

.segments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.segment-card-v2 {
  background: #fff;
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.segment-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(22,20,85,0.10);
}

.segment-icon-v2 {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue) 0%, #2d28a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.segment-icon-v2 i {
  font-size: 24px;
  color: var(--price-yellow);
}

.segment-card-v2 h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 14px;
}

.segment-card-v2 p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.75;
}

.segment-objective {
  margin-top: 40px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  border-left: 4px solid var(--price-yellow);
}

.objective-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--price-yellow) 0%, #f59e0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.objective-icon i {
  font-size: 20px;
  color: var(--blue);
}

.segment-objective p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  font-weight: 500;
}

/* --- Group Company Sections --- */
.group-company-v2 {
  padding: 60px 0;
}

.group-company-v2.gc-alt {
  background: var(--gray-bg);
}

.gc-card-v2 {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid var(--border);
}

.gc-alt .gc-card-v2 {
  background: #fff;
}

.gc-header-v2 {
  padding: 36px 40px 0;
}

.gc-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue) 0%, #2d28a0 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.gc-badge-green {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.gc-header-v2 h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.3px;
}

.gc-body-v2 {
  padding: 28px 40px 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.gc-content-v2 p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 14px;
}

.gc-image-v2 {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.gc-image-v2 img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Highlights grid (Puducherry) */
.gc-highlights-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gc-highlight-item {
  background: linear-gradient(135deg, var(--blue) 0%, #1e1a6e 100%);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.gc-hl-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--price-yellow);
  line-height: 1;
}

.gc-hl-label {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Features row (SKN Bentex) */
.gc-features-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gc-feature-item {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
}

.gc-feature-item i {
  font-size: 18px;
  color: var(--price-yellow);
}

/* Address block */
.gc-address-v2 {
  margin: 0 40px 0;
  padding: 28px 32px;
  background: var(--gray-bg);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
  margin-top: 20px;
}

.gc-address-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #2d28a0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-address-icon i {
  font-size: 18px;
  color: var(--price-yellow);
}

.gc-address-details h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.gc-address-details p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.gc-address-details a {
  color: var(--blue);
  font-weight: 600;
}

.gc-address-details a:hover {
  color: #2d28a0;
}

/* Product tags (SKN Bentex) */
.gc-products-v2 {
  padding: 0 40px 36px;
}

.gc-products-v2 h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gc-products-v2 h4 i {
  color: var(--price-yellow);
}

.product-tags-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-tags-v2 span {
  display: inline-block;
  padding: 8px 18px;
  background: var(--gray-bg);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.product-tags-v2 span:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* Trust body layout */
.gc-body-trust {
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: flex-start;
}

.gc-trust-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.gc-trust-icon i {
  font-size: 32px;
  color: #fff;
}

/* Trust pillars */
.gc-trust-pillars {
  display: flex;
  gap: 0;
  padding: 0 40px 36px;
  flex-wrap: wrap;
}

.trust-pillar {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.trust-pillar:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border);
}

.trust-pillar i {
  font-size: 28px;
  color: #059669;
  margin-bottom: 10px;
  display: block;
}

.trust-pillar span {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Responsive: About Page --- */
@media (max-width: 900px) {
  .page-hero-v2 {
    height: 260px;
  }

  .page-hero-content h1 {
    font-size: 30px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-stats-card {
    order: -1;
  }

  .segments-grid {
    grid-template-columns: 1fr;
  }

  .gc-body-v2 {
    grid-template-columns: 1fr;
    padding: 24px 24px 10px;
  }

  .gc-header-v2 {
    padding: 28px 24px 0;
  }

  .gc-address-v2 {
    margin: 20px 24px 28px;
  }

  .gc-products-v2 {
    padding: 0 24px 28px;
  }

  .gc-features-v2 {
    grid-template-columns: 1fr;
  }

  .gc-body-trust {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .gc-trust-pillars {
    padding: 0 24px 28px;
  }
}

@media (max-width: 600px) {
  .page-hero-v2 {
    height: 220px;
  }

  .page-hero-content {
    padding-bottom: 32px;
  }

  .page-hero-content h1 {
    font-size: 24px;
  }

  .about-stats-card {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 28px 24px;
  }

  .stat-number {
    font-size: 26px;
  }

  .segment-objective {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .gc-header-v2 h2 {
    font-size: 22px;
  }

  .gc-highlight-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .trust-pillar {
    min-width: 100px;
    padding: 16px 10px;
  }

  .trust-pillar:not(:last-child)::after {
    display: none;
  }

  .product-tags-v2 span {
    padding: 6px 14px;
    font-size: 12px;
  }
}

/* ========================================
   CUSTOMER ZONE BUTTON + DROPDOWN
   ======================================== */
.cz-wrap {
  position: relative;
}

/* The blinking button */
.cz-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #ffe000 0%, #ffc200 50%, #ffab00 100%);
  color: #0c1722;
  border: none;
  border-radius: 25px;
  padding: 13px 16px 13px 12px;
  font-size: 12px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.8);
  animation: czPulse 1.8s ease-out infinite;
  white-space: nowrap;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

/* shimmer sweep */
.cz-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  animation: czShimmer 2s linear infinite;
  border-radius: inherit;
  pointer-events: none;
}

@keyframes czShimmer {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(220%); }
}

.cz-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 22px rgba(255, 195, 0, 0.6);
  animation: none;
}
.cz-btn:hover::after { animation: none; }

.cz-btn .fa-user-circle { font-size: 14px; }
.cz-btn .cz-chevron {
  font-size: 9px;
  opacity: 0.7;
  transition: transform 0.25s;
}
.cz-btn[aria-expanded="true"] .cz-chevron {
  transform: rotate(180deg);
}

/* Blinking dot */
.cz-blink-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d92b2b;
  flex-shrink: 0;
  animation: czDotBlink 0.75s step-start infinite;
  box-shadow: 0 0 0 0 rgba(217,43,43,0.8);
  animation: czDotBlink 0.75s step-start infinite, czDotGlow 1.5s ease-in-out infinite;
}

@keyframes czDotBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes czDotGlow {
  0%, 100% { box-shadow: 0 0 4px 1px rgba(217,43,43,0.8); }
  50%       { box-shadow: 0 0 10px 3px rgba(217,43,43,0.3); }
}

@keyframes czPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.8); }
  60%  { box-shadow: 0 0 0 12px rgba(255, 195, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 195, 0, 0); }
}

/* Dropdown panel */
.cz-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 14px;
  min-width: 210px;
  box-shadow: 0 20px 50px rgba(12, 23, 34, 0.18), 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(22, 20, 85, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
  overflow: hidden;
}

.cz-dropdown.cz-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cz-dropdown-header {
  padding: 13px 18px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  background: #f4f5fb;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(22, 20, 85, 0.07);
}
.cz-dropdown-header i { color: var(--blue); font-size: 14px; }

.cz-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
  border-bottom: 1px solid rgba(22, 20, 85, 0.04);
}
.cz-item:last-child { border-bottom: none; }
.cz-item i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f4f5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--blue);
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
}
.cz-item:hover {
  background: #f0f2ff;
  color: var(--blue);
  padding-left: 22px;
}
.cz-item:hover i {
  background: var(--blue);
  color: var(--price-yellow);
}

/* ========================================
   VERTICAL FIXED SOCIAL SIDEBAR
   ======================================== */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
  box-shadow: 4px 0 18px rgba(0,0,0,0.18);
}

.ssb-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 14px;
  transition: width 0.25s ease, padding-left 0.25s ease, letter-spacing 0.25s;
  position: relative;
  overflow: hidden;
}

/* Unique brand colours */
.ssb-fb { background: #1877f2; }
.ssb-tw { background: #000; }
.ssb-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ssb-li { background: #0a66c2; }

.ssb-link:hover {
  width: 120px;
  padding-left: 12px;
  justify-content: flex-start;
  gap: 10px;
  letter-spacing: 0.4px;
}

/* Label text revealed on hover */
.ssb-link::after {
  content: attr(aria-label);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.2s 0.05s, max-width 0.25s;
}
.ssb-link:hover::after {
  opacity: 1;
  max-width: 100px;
}

/* Social sidebar â€” compact on mobile */
@media (max-width: 768px) {
  .social-sidebar {
    display: flex; /* keep visible */
    border-radius: 0 8px 8px 0;
  }

  /* Smaller icon tiles on mobile */
  .ssb-link {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  /* Disable expand-on-hover on touch â€” just show icons */
  .ssb-link:hover {
    width: 32px;
    padding-left: 0;
    justify-content: center;
    gap: 0;
  }
  .ssb-link::after { display: none; }

  /* Customer Zone button compact */
  .cz-btn {
    font-size: 10px;
    padding: 5px 10px 5px 9px;
    gap: 5px;
  }
  .cz-btn .fa-user-circle { font-size: 12px; }
  .cz-dropdown { right: 0; min-width: 190px; }
}

@media (max-width: 400px) {
  /* On very small phones hide "Customer Zone" text, show icon only */
  .cz-btn-label { display: none; }
  .cz-btn { padding: 6px 10px; gap: 5px; }
}

/* ================================================================
   ABOUT V2 PAGE STYLES (from about-v2.css)
   ================================================================ */

/* ========================================
   ABOUT PAGE - REDESIGN
   about-v2.css  |  hcg-new-html
   ======================================== */

/* ---------------------------------------------------------------
   HERO
--------------------------------------------------------------- */
.ab-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.ab-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ab-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(12, 11, 50, 0.55) 0%,
    rgba(22, 20, 85, 0.88) 55%,
    rgba(12, 11, 50, 0.97) 100%
  );
  z-index: 1;
}

.ab-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}

/* Breadcrumb */
.ab-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 40px;
  padding-top: 48px;
}

.ab-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.ab-breadcrumb a:hover {
  color: var(--price-yellow);
}

.ab-breadcrumb i {
  font-size: 7px;
  opacity: 0.4;
}

.ab-breadcrumb span {
  color: var(--price-yellow);
}

/* Hero two-column body */
.ab-hero-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

/* Left â€“ title block */
.ab-hero-title {
  flex: 1;
}

.ab-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--price-yellow);
  margin-bottom: 18px;
}

.ab-hero-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--price-yellow);
  border-radius: 2px;
}

.ab-hero-title h1 {
  font-size: 62px;
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -2.5px;
  margin-bottom: 18px;
}

.ab-hero-title h1 span {
  color: var(--price-yellow);
}

.ab-hero-title p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  max-width: 380px;
  line-height: 1.6;
}

/* Right â€“ glassmorphism stats card */
.ab-hero-stats {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ab-hs-item {
  padding: 22px 30px;
  text-align: center;
  min-width: 126px;
  position: relative;
}

.ab-hs-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.ab-hs-num {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--price-yellow);
  line-height: 1;
  margin-bottom: 6px;
}

.ab-hs-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  line-height: 1.35;
}

/* ---------------------------------------------------------------
   WHO WE ARE
--------------------------------------------------------------- */
.ab-who {
  padding: 90px 0 80px;
  background: #fff;
}

.ab-who-label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--price-yellow);
  background: var(--blue);
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 44px;
}

.ab-who-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
  align-items: start;
}

.ab-who-heading h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.15;
  letter-spacing: -0.8px;
  position: sticky;
  top: 100px;
}

.ab-who-text p {
  font-size: 15.5px;
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 22px;
}

.ab-who-text p:last-child {
  margin-bottom: 0;
}

/* ---------------------------------------------------------------
   SEGMENTS
--------------------------------------------------------------- */
.ab-segments {
  padding: 90px 0 80px;
  background: #f3f4f8;
  position: relative;
  overflow: hidden;
}

.ab-segments::before {
  content: 'GAS';
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-size: 220px;
  font-weight: 900;
  letter-spacing: -12px;
  color: rgba(22, 20, 85, 0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.ab-section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--blue);
  opacity: 0.45;
  margin-bottom: 10px;
}

.ab-section-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 52px;
  max-width: 480px;
}

/* Segment cards */
.ab-seg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.ab-seg-card {
  background: #fff;
  border-radius: 22px;
  padding: 44px 40px;
  border: 1px solid rgba(22, 20, 85, 0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab-seg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #4540c8);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
  border-radius: 0 0 4px 4px;
}

.ab-seg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(22, 20, 85, 0.11);
}

.ab-seg-card:hover::before {
  transform: scaleX(1);
}

.ab-seg-card-num {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(22, 20, 85, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.ab-seg-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), #3532b0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(22, 20, 85, 0.22);
}

.ab-seg-icon i {
  font-size: 26px;
  color: var(--price-yellow);
}

.ab-seg-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.ab-seg-card p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.8;
}

/* Objective banner */
.ab-objective {
  background: linear-gradient(135deg, var(--blue) 0%, #1a1864 100%);
  border-radius: 20px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.ab-objective::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.ab-obj-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--price-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ab-obj-icon i {
  font-size: 22px;
  color: var(--blue);
}

.ab-objective p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin: 0;
}

.ab-objective p strong {
  color: var(--price-yellow);
  font-weight: 700;
}

/* ---------------------------------------------------------------
   GROUP COMPANY CHAPTERS
--------------------------------------------------------------- */
.ab-chapter {
  padding: 88px 0;
  background: #fff;
}

.ab-chapter.ab-chapter-alt {
  background: #f3f4f8;
}

.ab-ch-inner {
  position: relative;
}

/* Large decorative chapter number */
.ab-ch-num {
  position: absolute;
  top: -28px;
  right: -10px;
  font-size: 180px;
  font-weight: 900;
  letter-spacing: -10px;
  color: rgba(22, 20, 85, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Chapter header */
.ab-ch-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1.5px solid rgba(22, 20, 85, 0.08);
  position: relative;
  z-index: 1;
}

.ab-ch-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue), #3532b0);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ab-ch-badge-green {
  background: linear-gradient(135deg, #059669, #10b981);
}

.ab-ch-header h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* Chapter body â€“ default layout (content left, aside right) */
.ab-ch-body {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

/* Flipped layout (aside left, content right) */
.ab-ch-body-flip {
  grid-template-columns: 0.75fr 1.25fr;
}

.ab-ch-body-flip .ab-ch-content {
  order: 2;
}

.ab-ch-body-flip .ab-ch-aside {
  order: 1;
}

/* Content text */
.ab-ch-content p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 16px;
}

.ab-ch-content p:last-child {
  margin-bottom: 0;
}

/* Image aside (Bhiwadi) */
.ab-ch-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.1);
}

.ab-ch-image img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

/* Stat highlights aside (Puducherry) */
.ab-ch-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ab-ch-hl {
  background: linear-gradient(135deg, var(--blue), #1a1864);
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ab-ch-hl-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--price-yellow);
  line-height: 1;
  flex-shrink: 0;
}

.ab-ch-hl-label {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 1.4;
}

/* Feature tiles aside (SKN Bentex) */
.ab-ch-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ab-ch-feat {
  background: #fff;
  border: 1px solid rgba(22, 20, 85, 0.09);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: background 0.2s, border-color 0.2s;
}

.ab-ch-feat:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.ab-ch-feat:hover i {
  color: var(--price-yellow);
}

.ab-ch-feat i {
  font-size: 16px;
  color: var(--price-yellow);
  flex-shrink: 0;
}

/* Product tags (SKN Bentex) */
.ab-ch-products {
  padding: 28px 32px;
  background: rgba(22, 20, 85, 0.03);
  border: 1px solid rgba(22, 20, 85, 0.07);
  border-radius: 18px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.ab-ch-products h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.ab-ch-products h4 i {
  color: var(--price-yellow);
}

.ab-ch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ab-ch-tags span {
  display: inline-block;
  padding: 7px 17px;
  background: #fff;
  border: 1px solid rgba(22, 20, 85, 0.10);
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  cursor: default;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ab-ch-tags span:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* Address bar */
.ab-ch-address {
  background: #fff;
  border: 1px solid rgba(22, 20, 85, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.ab-chapter-alt .ab-ch-address {
  background: #fff;
}

.ab-ch-addr-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #3532b0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ab-ch-addr-icon i {
  font-size: 16px;
  color: var(--price-yellow);
}

.ab-ch-addr-details h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 7px;
}

.ab-ch-addr-details p {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.75;
  margin: 0;
}

.ab-ch-addr-details a {
  color: var(--blue);
  font-weight: 600;
}

.ab-ch-addr-details a:hover {
  text-decoration: underline;
}

/* Trust body (Vijay Lakshmi) */
.ab-ch-trust-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.ab-ch-trust-icon {
  width: 88px;
  height: 88px;
  min-width: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(5, 150, 105, 0.25);
  flex-shrink: 0;
}

.ab-ch-trust-icon i {
  font-size: 36px;
  color: #fff;
}

/* Trust pillars strip */
.ab-ch-pillars {
  display: flex;
  background: #fff;
  border: 1px solid rgba(22, 20, 85, 0.08);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ab-ch-pillar {
  flex: 1;
  text-align: center;
  padding: 30px 16px;
  position: relative;
  transition: background 0.2s;
}

.ab-ch-pillar:hover {
  background: #f3f4f8;
}

.ab-ch-pillar:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: rgba(22, 20, 85, 0.07);
}

.ab-ch-pillar i {
  font-size: 28px;
  color: #059669;
  display: block;
  margin-bottom: 12px;
}

.ab-ch-pillar span {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------------- */
@media (max-width: 1100px) {
  .ab-hero-title h1 {
    font-size: 52px;
  }

  .ab-hs-item {
    min-width: 110px;
    padding: 20px 22px;
  }
}

@media (max-width: 900px) {
  .ab-hero {
    min-height: 420px;
  }

  .ab-hero-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .ab-hero-title h1 {
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .ab-hero-stats {
    width: 100%;
    justify-content: center;
  }

  .ab-who-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ab-who-heading h2 {
    font-size: 30px;
    position: static;
  }

  .ab-seg-grid {
    grid-template-columns: 1fr;
  }

  .ab-ch-body,
  .ab-ch-body.ab-ch-body-flip {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ab-ch-body-flip .ab-ch-content {
    order: 1;
  }

  .ab-ch-body-flip .ab-ch-aside {
    order: 2;
  }

  .ab-ch-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .ab-ch-header h2 {
    font-size: 24px;
  }

  .ab-ch-num {
    font-size: 130px;
  }

  .ab-ch-trust-body {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .ab-hero {
    min-height: 340px;
  }

  .ab-hero .container {
    padding-bottom: 44px;
  }

  .ab-breadcrumb {
    padding-top: 32px;
    margin-bottom: 28px;
  }

  .ab-hero-title h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .ab-hero-title p {
    font-size: 14px;
  }

  .ab-hs-item {
    min-width: 80px;
    padding: 16px 14px;
  }

  .ab-hs-num {
    font-size: 20px;
  }

  .ab-section-title {
    font-size: 27px;
    margin-bottom: 36px;
  }

  .ab-seg-card {
    padding: 32px 28px;
  }

  .ab-objective {
    flex-direction: column;
    padding: 28px 24px;
    text-align: center;
    gap: 18px;
  }

  .ab-ch-features {
    grid-template-columns: 1fr;
  }

  .ab-ch-pillars {
    flex-wrap: wrap;
  }

  .ab-ch-pillar {
    min-width: 33.333%;
  }

  .ab-ch-pillar:not(:last-child)::after {
    display: none;
  }

  .ab-ch-num {
    display: none;
  }

  .ab-segments::before {
    display: none;
  }

  .ab-ch-products {
    padding: 22px 20px;
  }
}


/* ================================================================
   CORE TEAM PAGE STYLES (from core-team.css)
   ================================================================ */

/* ========================================
   CORE TEAM PAGE
   core-team.css  |  hcg-new-html
   ======================================== */

/* ---------------------------------------------------------------
   BREADCRUMB (reused from about-v2.css)
--------------------------------------------------------------- */
.ab-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 40px;
  padding-top: 48px;
}
.ab-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.ab-breadcrumb a:hover { color: var(--price-yellow); }
.ab-breadcrumb i { font-size: 7px; opacity: 0.4; }
.ab-breadcrumb span { color: var(--price-yellow); }

/* ---------------------------------------------------------------
   HERO
--------------------------------------------------------------- */
.ct-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.ct-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ct-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(12, 11, 50, 0.6) 0%,
    rgba(22, 20, 85, 0.92) 60%,
    rgba(12, 11, 50, 0.98) 100%
  );
  z-index: 1;
}

.ct-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}

.ct-hero-body {
  max-width: 680px;
}

.ct-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--price-yellow);
  margin-bottom: 18px;
}
.ct-hero-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--price-yellow);
  border-radius: 2px;
}

.ct-hero-body h1 {
  font-size: 58px;
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 18px;
}
.ct-hero-body h1 span { color: var(--price-yellow); }

.ct-hero-body p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 400;
  max-width: 520px;
  line-height: 1.65;
}

/* Floating decorative shapes */
.ct-hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.08;
  pointer-events: none;
}
.ct-hero-shape-1 {
  width: 480px;
  height: 480px;
  background: var(--price-yellow);
  top: -160px;
  right: -80px;
}
.ct-hero-shape-2 {
  width: 280px;
  height: 280px;
  background: #4f8ef7;
  bottom: -100px;
  right: 280px;
}

/* ---------------------------------------------------------------
   INTRO
--------------------------------------------------------------- */
.ct-intro {
  background: var(--gray-bg);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
}

.ct-intro-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.ct-intro-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--price-yellow);
  background: var(--blue);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.ct-intro-inner h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.ct-intro-inner h2 em {
  font-style: italic;
  color: #4f8ef7;
}

.ct-intro-inner p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}

/* ---------------------------------------------------------------
   LEADER SECTIONS
--------------------------------------------------------------- */
.ct-leader {
  padding: 90px 0;
  background: #fff;
  position: relative;
}

.ct-leader-alt {
  background: var(--gray-bg);
}

.ct-leader-inner {
  position: relative;
}

/* Large background number */
.ct-leader-num {
  position: absolute;
  top: -28px;
  left: 0;
  font-size: 160px;
  font-weight: 900;
  color: var(--blue);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -8px;
}

/* Two-column layout */
.ct-leader-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: center;
}

.ct-leader-layout-flip {
  grid-template-columns: 440px 1fr;
}

/* Content side */
.ct-leader-meta { margin-bottom: 14px; }

.ct-leader-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: var(--blue);
  padding: 6px 16px;
  border-radius: 100px;
}
.ct-leader-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--price-yellow);
}

.ct-leader-badge-teal {
  background: linear-gradient(135deg, #036, #0066cc);
}

.ct-leader-name {
  font-size: 44px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.ct-leader-title-line {
  width: 60px;
  height: 4px;
  background: var(--price-yellow);
  border-radius: 4px;
  margin-bottom: 28px;
}
.ct-title-line-teal {
  background: linear-gradient(90deg, #036, #0099ff);
}

.ct-leader-bio {
  font-size: 15.5px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}
.ct-leader-bio:last-of-type { margin-bottom: 36px; }

/* Highlight chips */
.ct-leader-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-lh-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: #f8f9fc;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.ct-lh-item:hover {
  border-color: rgba(22, 20, 85, 0.18);
  box-shadow: 0 4px 14px rgba(22, 20, 85, 0.07);
}

.ct-lh-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--price-yellow);
  font-size: 16px;
}
.ct-lh-icon-teal {
  background: linear-gradient(135deg, #003366, #0066cc);
  color: #fff;
}

.ct-lh-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ct-lh-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}
.ct-lh-text span {
  font-size: 12.5px;
  color: var(--muted);
}

/* Photo side */
.ct-leader-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 15px; /* Give room for stylish frame elements */
}

.ct-leader-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  overflow: visible; /* Allow decorative edges */
}

/* Stylish decorative corner brackets */
.ct-leader-photo::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--price-yellow, #d4af37);
  border-left: 3px solid var(--price-yellow, #d4af37);
  border-top-left-radius: 8px;
  z-index: 3;
}

.ct-leader-photo::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 60px;
  height: 60px;
  border-bottom: 3px solid var(--price-yellow, #d4af37);
  border-right: 3px solid var(--price-yellow, #d4af37);
  border-bottom-right-radius: 8px;
  z-index: 3;
}

.ct-leader-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ct-photo-caption {
  padding: 18px 24px;
  background: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ct-photo-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.ct-photo-role {
  font-size: 11.5px;
  color: var(--price-yellow);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Decorative rings behind photo */
.ct-photo-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--price-yellow);
  pointer-events: none;
  z-index: 1;
}
.ct-photo-ring-1 {
  width: 320px;
  height: 320px;
  top: -20px;
  right: -20px;
  opacity: 0.12;
}
.ct-photo-ring-2 {
  width: 200px;
  height: 200px;
  bottom: 20px;
  left: -20px;
  opacity: 0.08;
}

/* ---------------------------------------------------------------
   DIVIDER
--------------------------------------------------------------- */
.ct-divider { padding: 0 0; }
.ct-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

/* ---------------------------------------------------------------
   TEAM PHOTO SECTION
--------------------------------------------------------------- */
.ct-team {
  padding: 90px 0 100px;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

/* Background texture */
.ct-team::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,212,0,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.ct-team-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.ct-team-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue);
  background: var(--price-yellow);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.ct-team-header h2 {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.ct-team-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.58);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Team photo frame */
.ct-team-photo-frame {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 60px;
}

.ct-team-photo-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}
.ct-team-photo-inner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

.ct-team-stamp {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(12, 11, 50, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}
.ct-team-stamp i {
  font-size: 18px;
  color: var(--price-yellow);
  margin-bottom: 4px;
}
.ct-team-stamp span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.ct-team-stamp small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

/* Corner accent lines */
.ct-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 3;
}
.ct-corner-tl {
  top: -6px;
  left: -6px;
  border-top: 3px solid var(--price-yellow);
  border-left: 3px solid var(--price-yellow);
  border-radius: 4px 0 0 0;
}
.ct-corner-tr {
  top: -6px;
  right: -6px;
  border-top: 3px solid var(--price-yellow);
  border-right: 3px solid var(--price-yellow);
  border-radius: 0 4px 0 0;
}
.ct-corner-bl {
  bottom: -6px;
  left: -6px;
  border-bottom: 3px solid var(--price-yellow);
  border-left: 3px solid var(--price-yellow);
  border-radius: 0 0 0 4px;
}
.ct-corner-br {
  bottom: -6px;
  right: -6px;
  border-bottom: 3px solid var(--price-yellow);
  border-right: 3px solid var(--price-yellow);
  border-radius: 0 0 4px 0;
}

/* Values strip */
.ct-values-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.ct-value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 28px 20px;
  position: relative;
  transition: background 0.25s;
}
.ct-value-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.ct-value-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.ct-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 212, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--price-yellow);
  margin-bottom: 6px;
}
.ct-value-item strong {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.ct-value-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ---------------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------------- */
@media (max-width: 1024px) {
  .ct-leader-layout,
  .ct-leader-layout-flip {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ct-leader-layout-flip .ct-leader-photo-wrap {
    order: -1;
  }
  .ct-leader-photo img { height: 380px; }
  .ct-leader-name { font-size: 36px; }
  .ct-hero-body h1 { font-size: 46px; }
  .ct-values-strip { grid-template-columns: repeat(2, 1fr); }
  .ct-value-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  .ct-hero { min-height: 340px; }
  .ct-hero-body h1 { font-size: 36px; }
  .ct-hero-body p { font-size: 14px; }
  .ct-intro-inner h2 { font-size: 30px; }
  .ct-leader { padding: 64px 0; }
  .ct-leader-name { font-size: 30px; }
  .ct-leader-num { font-size: 100px; }
  .ct-leader-photo img { height: 320px; }
  .ct-team-header h2 { font-size: 30px; }
  .ct-values-strip { grid-template-columns: repeat(2, 1fr); }
  .ct-value-item:nth-child(2)::after { display: none; }
  .ct-leader-highlights { gap: 12px; }
}

@media (max-width: 480px) {
  .ct-hero-body h1 { font-size: 28px; letter-spacing: -0.5px; }
  .ct-intro-inner h2 { font-size: 24px; letter-spacing: -0.5px; }
  .ct-leader-name { font-size: 26px; }
  .ct-values-strip { grid-template-columns: 1fr 1fr; }
  .ct-value-item::after { display: none !important; }
  .ct-photo-caption { flex-direction: column; align-items: flex-start; gap: 4px; }
}


/* ================================================================
   LEGACY V1 STYLES (from style.css)
   ================================================================ */

/* Root variables */
:root{
  --dark:#0c1722;
  --blue:#161455;
  --light:#ffffff;
  --muted:#6b7280;
  --emergency:#d92b2b;
  --container-width:100%;
  --price-yellow:#ffd400;
}
*{box-sizing:border-box}
body{font-family:Inter,system-ui,Arial,sans-serif;margin:0;color:#111;line-height:1.5;overflow-x:hidden}
/* .container{width:100%;max-width:100%;margin:0 auto;padding:0 14px} */

/* Top Bar */
.top-bar{background:#0c1722;color:#fff;font-size:13px;border-bottom:1px solid rgba(255,255,255,0.05)}
.top-inner{display:flex;align-items:center;justify-content:space-between;height:36px;gap:16px}
.top-left{display:flex;align-items:center;gap:12px}
.follow{font-weight:600;margin-right:0;color:#dbe7ff;letter-spacing:-0.2px;font-size:13px}
.social-wrap{display:flex;gap:6px}
.social{color:#cfcfcf;text-decoration:none;padding:6px;border-radius:50%;width:26px;height:26px;display:inline-flex;align-items:center;justify-content:center;font-size:13px}
.social:hover{color:var(--light);background:rgba(255,255,255,0.04)}
.top-right{display:flex;gap:6px}
.top-row-1{display:flex;align-items:center;gap:18px}
.top-row-2{display:flex;align-items:center;gap:18px}
.top-right .info{display:inline-flex;align-items:center;gap:8px;color:#e6e6e6;font-weight:600;font-size:13px;white-space:nowrap}
.top-right .info i{opacity:0.95;min-width:16px}
.badge-emergency{background:var(--emergency);color:#fff;padding:6px 12px;border-radius:20px;font-weight:800;display:inline-flex;align-items:center;gap:8px;font-size:12px;white-space:nowrap}
.badge-emergency i{color:#fff;font-size:13px}

.whatsapp{color:#22c55e}

/* Price Strip */
.price-strip{background:var(--blue);color:#fff;padding:10px 0}
.marquee{overflow:hidden}
.track{display:flex;gap:0;align-items:center;white-space:nowrap;animation:scroll 16s linear infinite}
.price-item{display:inline-flex;align-items:center;gap:12px;padding:10px 28px;border-left:1px solid rgba(255,255,255,0.08);font-weight:700}
.price-item:first-child{border-left:0}
.price-item .label{opacity:0.95;color:#eaf0ff;font-weight:600}
.price-item .price{color:var(--light);font-weight:800}
.price-item .price.highlight{color:var(--price-yellow);margin-left:6px}
.ico-bg{background:rgba(255,255,255,0.08);padding:6px;border-radius:50%;color:#fff}

@keyframes scroll{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

/* Main Header / Navbar */
.main-header{background:#fff;position:sticky;top:0;z-index:60;box-shadow:none;border-bottom:none;transition:box-shadow .3s ease}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:84px;gap:12px;padding:0 14px}
.logo-wrap{display:flex;align-items:center}
.logo{width: 150px;}
.main-nav{flex:1;margin:0 24px;min-width:0}
.nav-list{display:flex;gap:18px;list-style:none;margin:0;padding:0;align-items:center;justify-content:center;flex-wrap:wrap}
.nav-list li{position:relative}
.nav-list li a{color:#0f1724;text-decoration:none;font-weight:600;font-size:14px;padding:8px 4px;transition:color .15s ease;display:flex;align-items:center;white-space:nowrap}
.nav-list li a:hover{color:var(--blue)}
.has-dropdown{position:relative}
.has-dropdown i{font-size:0.8em;margin-left:6px;transition:transform .2s ease}
.dropdown-toggle{cursor:pointer}
.dropdown-menu{position:absolute;top:100%;left:0;background:#fff;list-style:none;margin:0;padding:12px 0;min-width:220px;border-radius:6px;box-shadow:0 8px 24px rgba(0,0,0,0.12);opacity:0;visibility:hidden;transform:translateY(-8px);transition:all .2s ease}
.has-dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown-menu li{margin:0}
.dropdown-menu li a{display:block;padding:12px 18px;color:#0f1724;text-decoration:none;font-weight:600;font-size:13px;transition:background .15s ease}
.dropdown-menu li a:hover{background:rgba(11,97,214,0.06);color:var(--blue)}
.has-sub-dropdown{position:relative}
.sub-dropdown-toggle{cursor:pointer}
.sub-dropdown-menu{position:absolute;left:100%;top:0;background:#fff;list-style:none;margin:0;padding:12px 0;min-width:200px;border-radius:6px;box-shadow:0 8px 24px rgba(0,0,0,0.12);opacity:0;visibility:hidden;transform:translateX(-8px);transition:all .2s ease}
.has-sub-dropdown:hover .sub-dropdown-menu{opacity:1;visibility:visible;transform:translateX(0)}
.has-sub-dropdown > a i{font-size:0.7em;margin-left:8px;color:#999}
.nav-actions{display:flex;align-items:center;gap:14px}
.btn-pay{background:linear-gradient(180deg,#161455,#0f0f2e);color:#fff;padding:10px 20px;border-radius:8px;text-decoration:none;font-weight:800;box-shadow:0 6px 18px rgba(22,20,85,0.25);transition:all .2s ease}
.btn-pay:hover{opacity:.98;box-shadow:0 8px 24px rgba(22,20,85,0.35)}
.hamburger{display:none;background:transparent;border:0;cursor:pointer;padding:8px}
.main-header.scrolled{box-shadow:0 6px 18px rgba(16,24,40,0.06)}
.nav-close{display:none;background:transparent;border:0;color:#111;font-size:24px;cursor:pointer;padding:8px;z-index:71}
.main-header.scrolled{box-shadow:0 6px 18px rgba(16,24,40,0.06)}
.hamburger span{display:block;width:22px;height:2px;background:#111;margin:4px 0}
.main-header.scrolled{box-shadow:0 6px 18px rgba(16,24,40,0.06)}

/* Responsive */
@media (max-width:992px){
  .container{padding:0 12px}
  .top-inner{height:44px;font-size:12px}
  .nav-inner{height:76px;gap:10px;padding:0 12px}
  .nav-list{gap:12px}
  .main-nav{margin:0 16px}
  /* .logo{height:64px;width:64px} */
  .btn-pay{padding:9px 16px;font-size:13px}
}

@media (max-width:868px){
  .top-right{gap:10px}
  .top-right .info{font-size:12px}
  .nav-list{gap:8px}


  .nav-list li a{font-size:12px}
  .dropdown-menu{min-width:180px}
  .sub-dropdown-menu{min-width:160px}
}

@media (max-width:768px){
  .container{padding:0 12px}
  .top-inner{flex-direction:column;align-items:stretch;height:auto;padding:6px 0;gap:4px;font-size:11px}
  .top-left{width:100%;gap:4px;justify-content:flex-start;display:none}
  .follow{display:none}
  .social-wrap{gap:2px}
  .social{width:20px;height:20px;padding:3px;font-size:10px}
  .top-right{width:100%;gap:4px;flex-direction:row;flex-wrap:nowrap;align-items:center}
  .top-row-1{width:100%;gap:10px;flex-wrap:nowrap}
  .top-row-1 .info:nth-child(2){display:none}
  .top-row-2{width:100%;gap:10px;flex-wrap:nowrap;display:flex}
  .top-row-2 .info{display:inline-flex}
  .top-right .info{font-size:11px;gap:5px}
  .top-right .info i{font-size:11px;min-width:12px}
  .badge-emergency{padding:4px 8px;font-size:9px;flex:none;white-space:nowrap;display:none}
  .badge-emergency i{font-size:9px}
  .emergency-btn{display:inline-flex;position:relative;right:auto;top:auto;transform:none;background:var(--emergency);color:#fff;padding:6px 8px;border-radius:4px;text-decoration:none;font-weight:700;font-size:10px;z-index:50;writing-mode:horizontal-tb;text-orientation:initial;white-space:nowrap;box-shadow:none;align-items:center;gap:4px}
  .emergency-btn i{margin-right:0;font-size:10px}
  
  .price-strip{padding:6px 0}
  .marquee .track{animation-duration:12s;gap:0;padding:6px 0}
  .price-item{padding:6px 14px;border-left:1px solid rgba(255,255,255,0.06)}
  .price-item .label{font-size:11px}
  .price-item .price{font-size:12px}
  
  .nav-inner{height:64px;flex-wrap:nowrap;gap:10px}
  .logo-wrap{order:1;flex-shrink:0}
  /* .logo{height:48px;width:48px} */
  .main-nav{position:fixed;left:0;right:0;top:64px;background:#fff;padding:16px 18px;display:none;z-index:70;max-height:calc(100vh - 64px);overflow-y:auto;border-radius:0;margin:0;width:100%;transform:translateX(-100%);transition:transform .3s cubic-bezier(0.4, 0, 0.2, 1)}
  .main-nav.open{display:block;transform:translateX(0)}
  .nav-close{display:inline-block;position:absolute;top:14px;right:14px;background:transparent;border:0;color:#111;font-size:22px;cursor:pointer;padding:6px;z-index:71;width:32px;height:32px;display:flex;align-items:center;justify-content:center}
  .nav-list{flex-direction:column;gap:12px;align-items:flex-start;width:100%;margin-top:28px}
  .dropdown-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;display:none;background:#f5f5f5;min-width:100%;border-radius:0;margin-top:8px;padding:8px 0}
  .has-dropdown.open .dropdown-menu{display:block}
  .dropdown-menu li a{padding:10px 16px;font-size:12px}
  .sub-dropdown-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;display:none;background:#efefef;min-width:100%;border-radius:0;margin-top:0;margin-left:16px;padding:8px 0}
  .has-sub-dropdown.open .sub-dropdown-menu{display:block}
  .nav-actions{order:2;display:flex;gap:6px;width:auto;align-items:center}
  .hamburger{display:inline-block;order:3;padding:4px;margin-left:auto}
  .btn-pay{display:block;padding:8px 14px;font-size:12px;border-radius:6px;white-space:nowrap}
}

/* Accessibility helpers */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* Ensure marquee repeats seamlessly: duplicate track items via transform width */
.price-strip .track{min-width:200%}

/* Fixed Emergency Button */
.emergency-btn{display:none;position:fixed;right:0;top:50%;transform:translateY(-50%);background:var(--emergency);color:#fff;padding:14px 8px;border-radius:0;text-decoration:none;font-weight:800;font-size:11px;z-index:65;writing-mode:vertical-rl;text-orientation:mixed;white-space:nowrap;box-shadow:-2px 4px 12px rgba(217,43,43,0.3);align-items:center;gap:6px;display:inline-flex;line-height:1.2}
.emergency-btn i{font-size:14px;margin-bottom:4px}
.emergency-btn:hover{box-shadow:-4px 8px 16px rgba(217,43,43,0.4);padding:14px 12px}

/* Extra small devices */
@media (max-width:480px){
  .container{padding:0 10px}
  .follow{display:none}
  .social-wrap{display:none}
  .social{width:18px;height:18px;padding:2px;font-size:9px}
  .top-row-1{gap:8px;flex-wrap:nowrap}
  .top-row-2{gap:8px;display:flex}
  .top-row-2 .info{display:inline-flex}
  .top-right .info{gap:4px;font-size:10px}
  .top-right .info i{font-size:10px;min-width:11px}
  .badge-emergency{padding:3px 6px;font-size:8px;display:none}
  .badge-emergency i{font-size:8px}
  .emergency-btn{display:inline-flex;position:fixed;right:0;top:50%;transform:translateY(-50%);background:var(--emergency);color:#fff;padding:14px 8px;border-radius:0;text-decoration:none;font-weight:800;font-size:11px;z-index:65;writing-mode:vertical-rl;text-orientation:mixed;white-space:nowrap;box-shadow:-2px 4px 12px rgba(217,43,43,0.3);align-items:center;gap:6px;line-height:1.2}
  .emergency-btn i{font-size:14px;margin-bottom:4px;margin-right:0}
  
  .price-item{padding:5px 10px;font-size:10px}
  .price-item .price.highlight{color:var(--price-yellow)}
  
  .nav-inner{height:60px;padding-right:0px}
  /* .logo{height:44px;width:44px} */
  .main-nav{top:60px;max-height:calc(100vh - 60px)}
  .nav-list li a{font-size:13px}
  .dropdown-menu li a{font-size:11px}
  .btn-pay{padding:6px 10px;font-size:11px}
  .hamburger span{width:18px;height:2px}
}

/* Hero Banner (Swiper) */
.hero-banner{position:relative;width:100%;height:520px;overflow:hidden}
.hero-banner .hero-swiper{width:100%;height:100%}
.hero-slide{position:relative;width:100%;height:100%;background-size:cover;background-position:center;display:flex;align-items:center}
.hero-slide .hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(2,6,23,0.45) 0%, rgba(2,6,23,0.25) 40%, rgba(2,6,23,0.55) 100%);z-index:1}
.hero-slide .hero-content{position:relative;z-index:2;max-width:780px;padding:0 40px;color:#fff;margin-left:6%;text-align:left}
.hero-title{font-size:56px;font-weight:800;line-height:1.05;margin:0 0 18px;color:#fff}
.hero-subtitle{font-size:20px;font-weight:600;margin:0 0 26px;color:#e6e6e6}
.btn-know-more{display:inline-block;background:linear-gradient(180deg,#161455,#0f0f2e);color:#fff;padding:12px 32px;border-radius:8px;text-decoration:none;font-weight:800;font-size:14px;transition:all .3s ease;box-shadow:0 8px 28px rgba(22,20,85,0.35)}
.btn-know-more:hover{opacity:0.95;transform:translateY(-2px)}

/* Swiper controls */
.hero-nav{position:absolute;inset:0;z-index:5;pointer-events:none}
.hero-arrow{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12);color:#fff;font-size:18px;cursor:pointer}
.hero-arrow:hover{background:rgba(255,255,255,0.12)}
.hero-prev{position:absolute;left:20px;top:50%;transform:translateY(-50%);z-index:6;pointer-events:auto}
.hero-next{position:absolute;right:20px;top:50%;transform:translateY(-50%);z-index:6;pointer-events:auto}
.hero-pagination{position:absolute;left:0;right:0;bottom:26px;z-index:7;display:flex;align-items:center;justify-content:center;gap:10px;width:100%;transform:none;pointer-events:auto}
.hero-pagination .swiper-pagination-bullet{width:10px;height:10px;border-radius:999px;background:#fff;opacity:0.45;margin:0}
.hero-pagination .swiper-pagination-bullet-active{opacity:1;background:#fff;transform:scale(1.05)}

@media (max-width:992px){
  .hero-banner{height:420px}
  .hero-title{font-size:40px}
  .hero-subtitle{font-size:16px}
  .btn-know-more{padding:10px 26px}
}

@media (max-width:768px){
  .hero-banner{height:360px}
  .hero-slide .hero-content{margin-left:4%;padding:0 22px}
  .hero-title{font-size:30px}
  .hero-subtitle{font-size:14px}
  .hero-nav{position:absolute;left:0;right:0;top:50%;transform:translateY(-50%);bottom:auto;flex-direction:row;gap:0;display:flex;justify-content:space-between;align-items:center;padding:0 12px}
  .hero-arrow{width:40px;height:40px;font-size:16px}
  .hero-prev{position:absolute;left:12px;top:50%;transform:translateY(-50%)}
  .hero-next{position:absolute;right:12px;top:50%;transform:translateY(-50%)}
}

@media (max-width:480px){
  .hero-banner{height:280px}
  .hero-title{font-size:22px}
  .hero-subtitle{font-size:12px}
  .hero-slide .hero-content{margin-left:0;padding:0 16px}
  .btn-know-more{padding:8px 18px;font-size:12px}
  .hero-nav{bottom:14px;gap:8px}
  .hero-arrow{width:36px;height:36px}
}

/* Founder Section */
/* Founder Section (simple two-column) */
.founder-section{padding:80px 0;background:linear-gradient(135deg,#f7f8fb 0%,#ffffff 50%,#fafbfc 100%)}
.founder-wrapper{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}

/* Image Card */
.founder-image-card{display:flex;flex-direction:column;gap:20px}
.image-frame{position:relative;border-radius:16px;overflow:hidden;box-shadow:0 20px 60px rgba(22,20,85,0.12)}
.image-frame img{width:100%;height:auto;display:block;transition:transform 0.4s ease}
.image-frame:hover img{transform:scale(1.02)}
.image-badge{position:absolute;top:16px;right:16px;background:linear-gradient(135deg,#161455,#1e1f60);color:#fff;padding:8px 16px;border-radius:50px;font-size:12px;font-weight:700;letter-spacing:1px}

.founder-info-card{background:#fff;padding:24px;border-radius:12px;border:1px solid rgba(22,20,85,0.06);box-shadow:0 10px 30px rgba(22,20,85,0.08)}
.founder-name{color:var(--dark);margin:0 0 6px;font-size:22px;font-weight:800}
.founder-designation{color:var(--blue);margin:0 0 4px;font-weight:700;font-size:14px;text-transform:uppercase;letter-spacing:0.5px}
.founder-company{color:#4b5563;margin:0;font-size:14px;font-weight:600}

/* Content Card */
.founder-content-card{background:#fff;padding:40px;border-radius:16px;border:1px solid rgba(22,20,85,0.06);box-shadow:0 15px 40px rgba(22,20,85,0.08)}
.section-badge{display:inline-block;background:rgba(22,20,85,0.08);color:var(--blue);padding:6px 14px;border-radius:50px;font-size:12px;font-weight:700;letter-spacing:0.5px;margin-bottom:16px}
.founder-title{font-size:32px;color:var(--dark);margin:0 0 24px;font-weight:800}

.founder-text-block{margin-bottom:28px}
.founder-lead{font-size:16px;color:#4b5563;margin:0;line-height:1.8}

.vision-points{display:flex;flex-direction:column;gap:18px}
.vision-item{display:flex;gap:16px}
.vision-icon{width:50px;height:50px;border-radius:12px;background:linear-gradient(135deg,#161455,#1e1f60);display:flex;align-items:center;justify-content:center;color:#fff;font-size:22px;flex-shrink:0}
.vision-text h4{color:var(--dark);margin:0 0 6px;font-size:15px;font-weight:800}
.vision-text p{color:#4b5563;margin:0;font-size:14px;line-height:1.6}

@media (max-width:1200px){
  .founder-wrapper{gap:36px}
  .founder-content-card{padding:32px}
  .founder-title{font-size:28px}
}

@media (max-width:992px){
  .founder-section{padding:60px 0}
  .founder-wrapper{gap:24px}
  .founder-content-card{padding:24px}
  .founder-title{font-size:24px}
}

@media (max-width:768px){
  .founder-wrapper{grid-template-columns:1fr}
  .founder-section{padding:48px 0}
  .founder-content-card{padding:20px}
  .founder-title{font-size:22px}
  .founder-lead{font-size:14px}
  .vision-item{gap:12px}
  .vision-icon{width:44px;height:44px;font-size:18px}
  .founder-content{width:100%}
  .founder-title{font-size:20px}
}


/* Locations Section */
.locations-section{padding:56px 0;background:#fff}
.locations-heading{text-align:center;font-size:26px;color:var(--blue);font-weight:800;margin:0 0 30px}
.locations-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;align-items:stretch}
.location-card{position:relative;border-radius:12px;overflow:hidden;box-shadow:0 10px 30px rgba(10,20,40,0.06);transition:transform .28s cubic-bezier(.2,.9,.2,1),box-shadow .28s;background:#fff;text-decoration:none;color:inherit}
.location-card:hover{transform:translateY(-8px);box-shadow:0 20px 45px rgba(10,20,40,0.08)}
.location-media{height:180px;background-size:cover;background-position:center}
.location-overlay{position:absolute;inset:auto 0 0 0;height:72px;background:linear-gradient(180deg,rgba(22,20,85,0.06),rgba(22,20,85,0.12));display:flex;align-items:center;justify-content:center}
.location-info{position:absolute;left:16px;right:16px;bottom:12px;background:rgba(22,20,85,0.92);color:#fff;padding:10px 14px;border-radius:10px;display:flex;flex-direction:column;align-items:flex-start;gap:6px}
.location-title{font-weight:800;font-size:18px;margin:0;color:#ffd54a}
.location-sub{font-size:13px;color:rgba(255,255,255,0.95);margin-top:2px}

/* About Section */
.about-section{position:relative;padding:64px 0;color:#fff}
.about-bg{position:absolute;inset:0;background-image:linear-gradient(180deg,rgba(2,6,23,0.48),rgba(2,6,23,0.54)), url('../img/about-bg.jpg');background-size:cover;background-position:center;filter:grayscale(.03) contrast(.95);z-index:0}
.about-inner{position:relative;z-index:2;max-width:1100px;margin:0 auto;padding:40px;display:flex;gap:28px;align-items:center}
.about-card{background:rgba(255,255,255,0.06);backdrop-filter:blur(6px);padding:28px;border-radius:12px;box-shadow:0 14px 40px rgba(2,6,23,0.12);color:#eef2ff}
.about-card h3{margin:0 0 12px;font-size:22px;color:#fff;font-weight:800}
.about-card p{color:rgba(236,239,255,0.92);line-height:1.7;margin:0 0 18px}
.about-cta{display:inline-block;background:linear-gradient(180deg,#ffd54a,#ffb300);color:var(--blue);padding:10px 18px;border-radius:8px;font-weight:800;text-decoration:none}

@media (max-width:992px){
  .locations-grid{grid-template-columns:repeat(2,1fr)}
  .location-media{height:160px}
  .about-inner{padding:28px}
}

@media (max-width:576px){
  .locations-grid{grid-template-columns:1fr}
  .location-media{height:140px}
  .locations-heading{font-size:20px}
  .about-inner{flex-direction:column;padding:18px}
  .about-card{padding:18px}
}

/* Get in Touch Section */
.get-in-touch-section{padding:60px 0;background:#f7f8fb;text-align:center}
.get-in-touch-section .contact-section-title{margin:0 0 36px;text-align:center}
.get-in-touch-section .contact-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.get-in-touch-section .contact-card{background:#fff;padding:24px 20px}

@media (max-width:1200px){
  .get-in-touch-section .contact-cards{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:768px){
  .get-in-touch-section{padding:40px 0}
  .get-in-touch-section .contact-cards{grid-template-columns:1fr}
  .get-in-touch-section .contact-section-title{margin:0 0 24px}
}

/* Site Footer */
.site-footer{background:#fff;padding:60px 0 0;color:var(--dark);border-top:2px solid rgba(22,20,85,0.08)}
.footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:36px;padding:48px 14px;align-items:start}
.footer-section h4{color:var(--blue);margin:0 0 18px;font-size:17px;font-weight:800;letter-spacing:0.3px}
.footer-brand .footer-logo{width:140px;height:auto;display:block;margin-bottom:16px}
.footer-tagline{font-size:14px;color:#4b5563;line-height:1.6;margin-bottom:18px}
.footer-socials{display:flex;gap:10px}
.social-btn{display:inline-flex;width:40px;height:40px;align-items:center;justify-content:center;border-radius:10px;background:linear-gradient(135deg,#161455,#1e1f60);color:#fff;text-decoration:none;transition:all .25s ease;border:1px solid rgba(255,255,255,0.1)}
.social-btn:hover{background:linear-gradient(135deg,#1e1f60,#2a2a88);transform:translateY(-3px);box-shadow:0 8px 20px rgba(22,20,85,0.15)}
.footer-links{list-style:none;padding:0;margin:0}
.footer-links li{margin:10px 0}
.footer-links li a{color:#334155;text-decoration:none;font-size:15px;transition:all .2s ease}
.footer-links li a:hover{color:var(--blue);margin-left:4px}
.footer-divider{height:1px;background:linear-gradient(90deg,transparent,rgba(22,20,85,0.1),transparent);margin:28px 0}
.contact-section-title{color:var(--dark);font-size:24px;font-weight:800;margin:0 0 24px 14px}
.contact-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;padding:0 14px;margin-bottom:28px}
.contact-card{background:#f7f8fb;padding:20px;border-radius:12px;border:1px solid rgba(22,20,85,0.06);transition:all .3s ease;cursor:pointer}
.contact-card:hover{background:#fff;border-color:rgba(22,20,85,0.15);box-shadow:0 12px 32px rgba(22,20,85,0.08);transform:translateY(-4px)}
.contact-icon{width:50px;height:50px;border-radius:12px;background:linear-gradient(135deg,#161455,#1e1f60);display:flex;align-items:center;justify-content:center;color:#fff;font-size:22px;margin:0 auto 12px auto}
.whatsapp-icon{background:linear-gradient(135deg,#22c55e,#16a34a)}
.emergency-icon{background:linear-gradient(135deg,#d92b2b,#991b1b)}
.contact-content h5{margin:0 0 8px;color:var(--dark);font-weight:800;font-size:14px}
.contact-content p{margin:4px 0;font-size:14px}
.contact-content p a{color:var(--blue);text-decoration:none;font-weight:600;transition:color .2s}
.contact-content p a:hover{color:var(--dark)}
.address-card{background:#f7f8fb;padding:20px;border-radius:12px;border:1px solid rgba(22,20,85,0.06);margin:0 14px}
.address-card h5{color:var(--dark);margin:0 0 12px;font-weight:800;font-size:15px}
.address-card p{color:#334155;font-size:13px;line-height:1.6;margin:6px 0}
.newsletter-section{padding:28px 14px;text-align:center}
.newsletter-section h4{color:var(--dark);margin:0 0 10px;font-size:20px;font-weight:800}
.newsletter-section p{color:#4b5563;margin:0 0 16px;font-size:14px}
.newsletter-form{display:flex;gap:10px;max-width:500px;margin:0 auto}
.newsletter-form input{flex:1;padding:12px 16px;border:1px solid rgba(22,20,85,0.1);border-radius:8px;font-size:14px}
.newsletter-form button{background:linear-gradient(180deg,#ffd54a,#ffb300);color:var(--blue);padding:12px 24px;border:0;border-radius:8px;font-weight:800;cursor:pointer;transition:all .2s}
.newsletter-form button:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(255,197,74,0.25)}
.footer-bottom{background:linear-gradient(90deg,#f7f8fb,#fafbfc);border-top:1px solid rgba(22,20,85,0.06);padding:20px 0}
.footer-bottom-content{display:flex;align-items:center;justify-content:space-between;gap:12px}
.copyright{color:#4b5563;font-size:13px;font-weight:600}
.footer-legal{display:flex;gap:24px}
.footer-legal a{color:var(--blue);text-decoration:none;font-weight:700;font-size:12px;transition:color .2s}
.footer-legal a:hover{color:var(--dark)}

@media (max-width:1200px){
  .footer-grid{grid-template-columns:repeat(2,1fr);gap:28px}
  .contact-cards{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:768px){
  .footer-grid{grid-template-columns:1fr;gap:20px;padding:28px 14px}
  .contact-cards{grid-template-columns:1fr}
  .newsletter-form{flex-direction:column}
  .footer-bottom-content{flex-direction:column;align-items:flex-start;text-align:left}
  .footer-legal{flex-direction:column;gap:12px}
  .footer-legal a{margin:0}
}

/* Quick Links (modern cards) */
.quick-links-section{background:transparent;padding:36px 0}
.quick-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.quick-tile{display:block;text-decoration:none;color:inherit}
.quick-tile .tile-inner{display:flex;align-items:center;gap:16px;padding:18px;border-radius:12px;background:#fff;border:1px solid rgba(22,20,85,0.06);box-shadow:0 8px 20px rgba(8,17,36,0.04);transition:transform .22s ease,box-shadow .22s}
.tile-icon{width:56px;height:56px;border-radius:10px;background:#fff;display:flex;align-items:center;justify-content:center;border:1px solid rgba(22,20,85,0.06);color:var(--blue);font-size:22px}
.tile-text{display:flex;flex-direction:column}
.tile-title{font-weight:800;color:var(--dark);font-size:16px}
.tile-sub{font-size:13px;color:var(--muted);margin-top:4px}
.tile-action{margin-left:auto;background:var(--price-yellow);color:var(--blue);padding:8px 10px;border-radius:8px;font-weight:800}
.quick-tile .tile-inner:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(8,17,36,0.08)}

@media (max-width:1200px){
  .quick-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:576px){
  .quick-grid{grid-template-columns:1fr}
  .quick-tile .tile-inner{padding:14px}
}


/* ========================================
   CNG STATIONS PAGE – GURUGRAM
   ======================================== */

/* Stats Banner */
.cng-stats-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #1a1870 50%, #0c1722 100%);
  padding: 10px 0;
  border-bottom: 3px solid var(--price-yellow);
}
.cng-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.cng-stat-item {
  position: relative;
  padding: 10px 0;
}
.cng-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.cng-stat-number {
  font-size: 38px;
  font-weight: 800;
  color: var(--price-yellow);
  line-height: 1;
  letter-spacing: -1px;
}
.cng-stat-number span { font-size: 22px; }
.cng-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  margin-top: 7px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* CNG Stations Main Section */
.cng-stations-section {
  padding: 72px 0 80px;
  background: var(--gray-bg);
}
.cng-section-title {
  text-align: center;
  margin-bottom: 56px;
}
.cng-section-title .section-tag-v2 {
  display: inline-block;
  background: rgba(22,20,85,0.08);
  color: var(--blue);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.cng-section-title h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.cng-section-title p {
  color: var(--muted);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
}

/* Zone Block */
.cng-zone-block { margin-bottom: 64px; }
.cng-zone-block:last-child { margin-bottom: 0; }

.cng-zone-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--blue) 0%, #1a1870 100%);
  border-radius: 16px 16px 0 0;
  position: relative;
  overflow: hidden;
}
.cng-zone-header::after {
  content: '';
  position: absolute;
  right: -30px; top: -30px;
  width: 140px; height: 140px;
  background: rgba(255,212,0,0.07);
  border-radius: 50%;
}
.cng-zone-icon {
  width: 50px; height: 50px;
  background: rgba(255,212,0,0.15);
  border: 1px solid rgba(255,212,0,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--price-yellow);
  font-size: 22px;
  flex-shrink: 0;
}
.cng-zone-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.cng-zone-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.cng-zone-badge {
  margin-left: auto;
  background: var(--price-yellow);
  color: var(--blue);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  position: relative; z-index: 1;
}

/* Stations Grid */
.cng-stations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(22,20,85,0.06);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

/* Card – horizontal: [map | details] */
.cng-station-card {
  background: #fff;
  display: flex;
  flex-direction: row;
  transition: background 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  min-height: 180px;
}
.cng-station-card:hover {
  background: #f8f9ff;
  box-shadow: inset 0 0 0 1.5px rgba(22,20,85,0.10);
  z-index: 1;
}

/* Map pane */
.cng-card-map {
  width: 210px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #dde1ee;
  margin:10px
}
.cng-card-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 12px;
}
/* Thin gradient accent on left edge of the map */
/* .cng-card-map::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--price-yellow) 100%);
  z-index: 2;
} */
/* "View larger map" overlay link strip at bottom */
.cng-map-view-link {
  position: absolute;
  bottom: 0; left: 4px; right: 0;
  padding: 28px 8px 6px;
  background: linear-gradient(to top, rgba(12,23,34,0.55) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 3;
  text-decoration: none;
  transition: background 0.22s;
}
.cng-map-view-link:hover { background: linear-gradient(to top, rgba(12,23,34,0.72) 0%, transparent 100%); }
.cng-map-view-link span {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: rgba(22,20,85,0.72);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

/* Details pane */
.cng-card-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 15px;
}
.cng-card-top {
  display: flex;
  gap: 12px;
  flex: 1;
  margin-bottom: 14px;
}
.cng-card-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue), #1e1f70);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}
.cng-card-info { flex: 1; min-width: 0; }
.cng-card-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  line-height: 1.3;
}
.cng-card-address {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}
.cng-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(22,20,85,0.06);
}
.cng-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.cng-type-badge i { font-size: 9px; }
.badge-online  { background: rgba(22,163,74,0.10); color: #15803d; }
.badge-offline { background: rgba(220,38,38,0.10); color: #dc2626; }
.badge-daughter{ background: rgba(234,88,12,0.10); color: #c2410c; }
.badge-booster { background: rgba(124,58,237,0.10); color: #7c3aed; }

.cng-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  background: linear-gradient(135deg, var(--blue) 0%, #1a1870 100%);
  color: #fff;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.cng-directions-btn:hover {
  background: linear-gradient(135deg, #ffd400 0%, #f0c000 100%);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(22,20,85,0.18);
}

/* No Stations Placeholder */
.cng-no-stations {
  padding: 52px 24px;
  text-align: center;
  background: #fff;
  color: var(--muted);
}
.cng-no-stations i {
  font-size: 48px;
  color: rgba(22,20,85,0.12);
  margin-bottom: 16px;
  display: block;
}
.cng-no-stations p {
  font-size: 15px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .cng-card-map { width: 180px; }
}
@media (max-width: 900px) {
  .cng-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cng-stat-item:nth-child(2)::after { display: none; }
  .cng-stations-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  /* Stack card: map on top, details below */
  .cng-station-card { flex-direction: column; min-height: unset; }
  .cng-card-map { width: 100%; height: 170px; }
  .cng-card-map::before { left: 0; right: 0; top: 0; bottom: auto; width: auto; height: 4px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--price-yellow) 100%); }
  .cng-map-view-link { padding-top: 40px; }
  .cng-card-details { padding: 14px 15px 13px; }
  .cng-card-top { margin-bottom: 10px; }
  .cng-card-footer { flex-direction: row; }
}
@media (max-width: 600px) {
  .cng-stats-banner { padding: 10px 0; }
  .cng-stat-number { font-size: 30px; }
  .cng-section-title h2 { font-size: 26px; letter-spacing: 1px; }
  .cng-stations-section { padding: 48px 0 56px; }
  .cng-zone-header { padding: 14px 18px; gap: 12px; }
  .cng-zone-title { font-size: 17px; }
  .cng-zone-icon { width: 42px; height: 42px; font-size: 18px; }
  .cng-card-icon { width: 38px; height: 38px; font-size: 15px; }
  .cng-card-footer { flex-direction: column; align-items: flex-start; }
}


/* ========================================
   CNG INFO PAGE  (cng.php)
   ======================================== */

.cng-info-wrapper {
  background: var(--gray-bg);
  padding: 56px 0 72px;
}

/* Main white content card */
.cng-info-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(22,20,85,0.07);
  overflow: hidden;
}

/* About section inside card */
.cng-about-body {
  padding: 52px 56px 44px;
}
.cng-about-body h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.cng-about-body p {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Centered CNG image */
.cng-about-image {
  text-align: center;
  margin: 28px 0 36px;
}
.cng-about-image img {
  max-width: 440px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(22,20,85,0.10);
}

/* Section sub-heading inside card */
.cng-sub-heading {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(22,20,85,0.06);
}

/* Dark navy info box (Benefits / Precautions) */
.cng-info-box {
  background: linear-gradient(135deg, #11114a 0%, #161455 60%, #1a1870 100%);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 36px;
}
.cng-info-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cng-info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255,255,255,0.90);
  font-size: 14px;
  line-height: 1.65;
}
.cng-li-icon {
  width: 22px; height: 22px;
  background: var(--price-yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.cng-li-icon i {
  font-size: 10px;
  color: var(--blue);
}

/* Properties comparison table */
.cng-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(22,20,85,0.08);
  margin-bottom: 4px;
}
.cng-props-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.cng-props-table thead tr {
  background: linear-gradient(90deg, var(--blue) 0%, #1a1870 100%);
  color: #fff;
}
.cng-props-table thead th {
  padding: 13px 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.cng-props-table thead th:not(:first-child) { text-align: center; }
.cng-props-table thead th:last-child { color: var(--price-yellow); }
.cng-props-table tbody tr {
  border-bottom: 1px solid rgba(22,20,85,0.06);
  transition: background 0.18s;
}
.cng-props-table tbody tr:last-child { border-bottom: none; }
.cng-props-table tbody tr:hover { background: rgba(22,20,85,0.025); }
.cng-props-table tbody tr.cng-table-subheader { background: rgba(22,20,85,0.05); }
.cng-props-table tbody tr.cng-table-subheader td {
  font-weight: 800;
  color: var(--blue);
  font-size: 13px;
  padding: 11px 18px;
}
.cng-props-table td { padding: 12px 18px; color: #374151; }
.cng-props-table td:not(:first-child):not(:nth-child(2)) {
  text-align: center;
  font-weight: 600;
  color: var(--dark);
}
.cng-props-table td:last-child { color: var(--blue); font-weight: 700; }

/* Divider inside card */
.cng-card-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,20,85,0.08), transparent);
  margin: 0 56px 40px;
}

/* Responsive */
@media (max-width: 900px) {
  .cng-about-body { padding: 36px 32px 30px; }
  .cng-card-divider { margin: 0 32px 32px; }
}
@media (max-width: 600px) {
  .cng-info-wrapper { padding: 32px 0 48px; }
  .cng-about-body { padding: 28px 20px 24px; }
  .cng-about-body h2 { font-size: 22px; }
  .cng-about-body p { font-size: 14px; }
  .cng-card-divider { margin: 0 20px 28px; }
  .cng-info-box { padding: 20px; border-radius: 10px; }
  .cng-props-table thead th,
  .cng-props-table td { padding: 10px 12px; font-size: 13px; }
}

