/* --- CSS Custom Properties --- */
:root {
  /* ===== Brand Colors (from Logo) ===== */
  --brand-blue: #0066B3;
  --brand-blue-dark: #004E8C;
  --brand-blue-light: #1A8FE3;
  --brand-green: #6B9B37;
  --brand-green-dark: #4E7A22;
  --brand-green-light: #8BC34A;
  --brand-gold: #C8A415;
  --brand-gold-light: #F5C518;
  --brand-gold-dark: #A68A0E;

  /* Accent = Brand Blue (primary CTA) */
  --accent: var(--brand-blue);
  --accent-dark: var(--brand-blue-dark);
  --accent-light: var(--brand-blue-light);
  --accent-gradient: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  --gold-gradient: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light), #FFE066);

  /* Light Theme */
  --bg-white: #FFFFFF;
  --bg-light: #F7F8FC;
  --bg-section-alt: #F0F4F0;
  --surface: #FFFFFF;

  /* Dark (Navbar) */
  --nav-dark: #0A1628;
  --nav-dark-2: #0F1F3A;
  --nav-dropdown-bg: #0D1A30;

  /* Text */
  --text-dark: #1A1A2E;
  --text-body: #4A4A68;
  --text-white: #FFFFFF;
  --text-light-gray: #D0D8E8;
  --text-gray-nav: #8A9BBF;

  /* Effects */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-dropdown: 0 15px 50px rgba(0, 102, 179, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --nav-height: 72px;
  --container-max: 1320px;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
li {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}


/* ============================================
   GLOBAL ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

/* --- Keyframes --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 102, 179, 0.4); }
  50%       { box-shadow: 0 0 0 14px rgba(0, 102, 179, 0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes slide-in-bottom {
  from { opacity: 0; transform: translateY(60px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes page-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- Page Load Reveal --- */
/* --- Page Load Reveal --- */
body {
}

/* --- Navbar Logo subtle float --- */
.navbar-logo img {
  transition: transform 0.4s ease;
}
.navbar-logo:hover img {
  transform: scale(1.06) rotate(-2deg);
}

/* --- Service Cards micro-lift --- */
.service-card {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease !important;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
}

/* --- About Image float animation --- */
.about-image-card {
  animation: float 6s ease-in-out infinite;
}

/* --- Hero title entrance (CSS-only fallback) --- */
.hero-title {
  animation: fadeInUp 0.9s ease both;
  animation-delay: 0.2s;
}
.hero-description {
  animation: fadeInUp 0.9s ease both;
  animation-delay: 0.4s;
}
.btn-group {
  animation: fadeInUp 0.9s ease both;
  animation-delay: 0.6s;
}

/* --- Subtitle badge shimmer --- */
.subtitle, .section-title .subtitle, .card-subtitle {
  background: linear-gradient(
    90deg,
    var(--brand-blue) 0%,
    var(--brand-green) 40%,
    var(--brand-blue) 80%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* --- CTA Button pulse glow --- */
.btn-primary, .pp-btn-primary, .card-btn {
  position: relative;
}
.btn-primary:hover, .pp-btn-primary:hover {
  animation: pulse-glow 1.2s ease-out;
}

/* --- Gallery card hover lift --- */
.gallery-card-inner {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.gallery-card-inner:hover {
  transform: translateY(-6px) scale(1.02) !important;
}

/* --- Product Card hover lift --- */
.product-card {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

/* --- VM Flip cards smooth perspective --- */
.vm-flip-card {
  transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1) !important;
}

/* --- Footer brand glow on hover --- */
.footer-logo img {
  transition: filter 0.4s ease, transform 0.4s ease;
}
.footer-logo img:hover {
  filter: drop-shadow(0 0 10px rgba(107, 155, 55, 0.5));
  transform: scale(1.05);
}

/* --- Page Banner text entrance --- */
.banner-content h1 {
  animation: slide-in-bottom 0.8s cubic-bezier(0.34,1.56,0.64,1) both;
  animation-delay: 0.1s;
}
.breadcrumb {
  animation: fadeInUp 0.7s ease both;
  animation-delay: 0.35s;
}

/* --- Smooth scroll indicator on hero --- */
.carousel-control {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.3s ease, box-shadow 0.3s ease !important;
}
.carousel-control:hover {
  transform: translateY(-50%) scale(1.15) !important;
}


/* ============================================
   NAVBAR (Lighter dark with gradient for logo visibility)
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: linear-gradient(135deg, #0F2027 0%, #1A3A4A 50%, #0F2027 100%);
  border-bottom: 1px solid rgba(200, 164, 21, 0.15);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(15, 32, 39, 0.97) 0%, rgba(26, 58, 74, 0.97) 50%, rgba(15, 32, 39, 0.97) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(200, 164, 21, 0.1);
}

.navbar-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Logo --- */
.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
}

.navbar-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
  filter: brightness(1.15) drop-shadow(0 0 8px rgba(200, 164, 21, 0.3));
}

.navbar-logo:hover img {
  transform: scale(1.08);
  filter: brightness(1.25) drop-shadow(0 0 12px rgba(200, 164, 21, 0.5));
}

/* --- Nav Menu --- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --- Nav Items --- */
.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light-gray);
  border-radius: 8px;
  transition: var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.3px;
  overflow: hidden;
}

/* Bottom underline glow on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-light));
  border-radius: 2px;
  transition: var(--transition-smooth);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(200, 164, 21, 0.4);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
  text-shadow: 0 0 12px rgba(200, 164, 21, 0.25);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

/* Subtle background glow on hover */
.nav-link:hover {
  background: rgba(200, 164, 21, 0.08);
}

.nav-link.active {
  background: rgba(0, 102, 179, 0.12);
}

/* --- Dropdown Arrow Icon --- */
.nav-link .arrow-icon {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
}

.nav-item:hover>.nav-link .arrow-icon,
.nav-item.open>.nav-link .arrow-icon {
  transform: rotate(180deg);
}


/* ============================================
   DROPDOWN - Level 1
   ============================================ */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: var(--nav-dropdown-bg);
  border: 1px solid rgba(200, 164, 21, 0.2);
  border-radius: 16px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  box-shadow: 0 15px 50px rgba(200, 164, 21, 0.15);
  z-index: 100;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.nav-item:hover>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- Dropdown Items --- */
.dropdown-item {
  position: relative;
}

.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-gray-nav);
  border-radius: 10px;
  transition: var(--transition-fast);
  cursor: pointer;
  gap: 12px;
}

.dropdown-link:hover {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
  color: #1A1A2E;
  transform: translateX(4px);
}

.dropdown-link .sub-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: var(--transition-fast);
}

.dropdown-link:hover .sub-arrow {
  opacity: 1;
  transform: translateX(3px);
}


/* ============================================
   DROPDOWN - Level 2 (Sub-dropdown) — Premium
   ============================================ */
.sub-dropdown {
  position: absolute;
  top: 0;
  left: calc(100% + 12px);
  min-width: auto;
  width: max-content;
  background: linear-gradient(145deg, #0F1F3A 0%, #162847 60%, #1A3050 100%);
  border: 1px solid rgba(200, 164, 21, 0.25);
  border-left: 3px solid var(--brand-gold);
  border-radius: 12px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px) scale(0.97);
  transition: var(--transition-smooth);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(200, 164, 21, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  z-index: 101;
}

/* Invisible hover bridge */
.sub-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: -14px;
  bottom: 0;
  width: 14px;
  background: transparent;
}

.dropdown-item:hover>.sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

/* Sub-dropdown links — refined look */
.sub-dropdown .dropdown-link {
  font-size: 0.85rem;
  font-weight: 450;
  padding: 8px 12px;
  color: var(--text-light-gray);
  border-radius: 8px;
  position: relative;
  transition: var(--transition-smooth);
  gap: 4px;
  white-space: nowrap;
}

/* Golden dot indicator on left */
.sub-dropdown .dropdown-link::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-gold);
  opacity: 0.4;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.sub-dropdown .dropdown-link:hover {
  background: linear-gradient(135deg, rgba(200, 164, 21, 0.15), rgba(200, 164, 21, 0.06));
  color: var(--brand-gold-light);
  transform: translateX(4px);
  padding-left: 18px;
}

.sub-dropdown .dropdown-link:hover::before {
  opacity: 1;
  box-shadow: 0 0 8px rgba(200, 164, 21, 0.5);
  transform: scale(1.3);
}


/* ============================================
   HAMBURGER BUTTON
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.hamburger:hover {
  background: var(--glass-bg);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-smooth);
  transform-origin: center;
}

.hamburger span:nth-child(1) {
  margin-bottom: 6px;
}

.hamburger span:nth-child(3) {
  margin-top: 6px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ============================================
   MOBILE OVERLAY
   ============================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}


/* ============================================
   HERO SECTION - Video Background
   ============================================ */
.hero-carousel-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Puri screen par standard height */
    overflow: hidden;
    background-color: #131315;
  }

  /* Core Slide styling */
  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
  }

  .carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  /* Video Background Wrapper */
   .image-bg-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
     width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}
  

  .hero-video {
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;      /* <-- Change from 0% to 100% */
    object-fit: cover;
    object-position: center;
    z-index: 1;
    display: block;
  }

  /* Image Background Styling */
  .image-bg-container {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* Dark overlay over backgrounds */
  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), var(--overlay-color), rgba(15, 23, 42, 0.4));
    z-index: 2;
  }

  /* Content Box on top of Media */
  .hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 24px;
    text-align: center;
  }

  .hero-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  
  /* Titles */
  .hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #cbd5e1;;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  .gradient-text {
    background: linear-gradient(to right, #f59e0b , #ffe082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 720px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }

  /* Action Buttons styling */
  .btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
  }

  .btn-primary {
    background-color:  #d97706;;
    color: #0f172a;
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
  }

  .btn-primary:hover {
    background-color: #d97706;;
    transform: translateY(-2px);
  }

  .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
  }

  .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }

  /* Left/Right Slide Arrows */
  .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(15, 23, 42, 0.5);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
  }

  .carousel-control:hover {
    background-color: #f59e0b;
    color: #0f172a;
    border-color: #f59e0b;
  }

  .carousel-control.prev { left: 24px; }
  .carousel-control.next { right: 24px; }

  /* Navigation Indicators (Dots) */
  .carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
  }

  .indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .indicator-dot.active {
    width: 28px;
    border-radius: 9999px;
    background-color: #f59e0b;
  }

  /* Responsive Design */
  @media (min-width: 768px) {
    .hero-title { font-size: 3.5rem; }
    .hero-description { font-size: 1.25rem; }
  }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.2px;
}

/* Primary button = Brand Blue */
.btn-primary {
  background: var(--brand-blue);
  color: var(--text-white);
  box-shadow: 0 8px 30px rgba(0, 102, 179, 0.4);
}

.btn-primary:hover {
  background: #0052a3;;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 102, 179, 0.5);
}

.btn-primary svg {
  transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* Outline button = Gold border */
.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(200, 164, 21, 0.5);
}

.btn-outline:hover {
  background: rgba(200, 164, 21, 0.15);
  border-color:#dfb76c;
  transform: translateY(-3px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 31px 24px;
  background: var(--bg-white);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* About Text */
.about-content {
  padding-right: 20px;
}

.section-title {
  margin-bottom: 4px;
}

.section-title .subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0px;
  position: relative;
  padding-bottom: 4px;
}

.section-title .subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--brand-gold);
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.about-text p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.mt-4 {
  margin-top: 1.5rem;
}

/* About Image Card */
.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  padding: 20px 0 0 20px;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.1), rgba(107, 155, 55, 0.1));
  border-radius: 24px;
  z-index: 0;
}

.about-image-card {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  height: 500px;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-card:hover .about-img {
  transform: scale(1.05);
}

/* Overlay Text */
.image-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0) 100%);
  color: var(--text-white);
}

.image-overlay-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.image-overlay-text .highlight {
  color: var(--brand-gold-light);
  font-weight: 700;
}


/* ============================================
   SERVICES SECTION (Premium Grid)
   ============================================ */
.services-section {
  padding: 4px 24px;
  ;
  background: var(--bg-light);
  position: relative;
}

.text-center {
  text-align: center;
}

.section-desc {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--text-body);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: linear-gradient(145deg, #0F1F3A 0%, #162847 100%);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border: none;
  box-shadow: 0 15px 35px rgba(10, 22, 40, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 164, 21, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

/* Bottom golden border glow on hover */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 102, 179, 0.1);
  border-color: rgba(200, 164, 21, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Icon */
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold-light);
  transition: all 0.4s ease;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-icon {
  background: var(--brand-gold);
  color: var(--text-dark);
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(200, 164, 21, 0.25);
}

/* Content */
.service-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: var(--brand-gold-light);
}

/* Arrow */
.card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  transition: all 0.4s ease;
  transform: translateX(-10px);
  opacity: 0;
}

.card-arrow svg {
  width: 16px;
  height: 16px;
}

.service-card:hover .card-arrow {
  transform: translateX(0);
  opacity: 1;
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--text-dark);
}

/* ============================================
   PRODUCTS SECTION (HONEYCOMB)
   ============================================ */
.products-section{
    position: relative;
    padding: 22px 24px;
    overflow: hidden;
}

.products-section::before{
  padding: 22px 24px;
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/about-solar.png") no-repeat center;
  background-size: cover;
  opacity: 0.27;   
  z-index: 0;
}

.honeycomb-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 15px;
  padding: 20px 0;
}

.hex-item {
  width: 198px;
  height: 250px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.hex-content {
  width: 224px;
  /* Slightly smaller than parent to create border effect */
  height: 244px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(145deg, #2a2d34 0%, #17191d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  gap: 12px;
  transition: all 0.4s ease;
}

.hex-item:hover {
  transform: scale(1.08) translateY(-10px);
  z-index: 10;
}

.hex-item:hover .hex-content {
  background: linear-gradient(145deg, #17191d 0%, #0F1F3A 100%);
}

.hex-icon {
  width: 50px;
  height: 50px;
  color: var(--brand-gold);
  margin-bottom: 5px;
  transition: transform 0.4s ease;
}

.hex-item:hover .hex-icon {
  transform: scale(1.15);
  color: var(--brand-gold-light);
}

.hex-title {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.hex-btn {
  background: var(--brand-gold);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
  transition: all 0.3s ease;
}

.hex-btn:hover {
  background: var(--brand-gold-light);
  transform: scale(1.05);
}

/* ============================================
   GALLERY SECTION (BENTO GRID)
   ============================================ */
.gallery-section {
  padding: 10px 24px;
  background: var(--bg-white);
}

.bento-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  max-width: var(--container-max);
  margin: 40px auto 0;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 102, 179, 0.08);
  cursor: pointer;
  background: var(--nav-dark);
}

.gallery-item img {
  width: 100%;
  height: 107%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item.large-item {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide-item {
  grid-column: span 2;
}

/* Overlay & Hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.1) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--brand-gold);
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.overlay-content svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}

.overlay-content span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-white);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

/* Bento Gallery Responsive */
@media (max-width: 992px) {
  .bento-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large-item {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item.wide-item {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .bento-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.large-item,
  .gallery-item.wide-item {
    grid-column: span 1;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 85vw);
    height: 100vh;
    background: var(--nav-dark-2);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 20px 30px;
    gap: 0;
    transition: right var(--transition-smooth);
    overflow-y: auto;
    z-index: 1000;
    border-left: 1px solid var(--glass-border);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu::-webkit-scrollbar {
    width: 4px;
  }

  .nav-menu::-webkit-scrollbar-thumb {
    background: var(--brand-blue);
    border-radius: 4px;
  }

  .nav-link {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1rem;
    justify-content: space-between;
  }

  /* Hide underline effect on mobile, use bg highlight instead */
  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(0, 102, 179, 0.15);
  }

  /* Mobile dropdowns = Accordion style */
  .dropdown,
  .sub-dropdown {
    position: static;
    min-width: unset;
    background: rgba(0, 102, 179, 0.08);
    border: none;
    border-radius: 12px;
    padding: 0;
    margin: 4px 0 4px 8px;
    box-shadow: none;
    border-left: 2px solid var(--brand-blue);
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height var(--transition-smooth), padding var(--transition-smooth);
  }

  .dropdown::before,
  .sub-dropdown::before {
    display: none;
  }

  .nav-item.open>.dropdown,
  .dropdown-item.open>.sub-dropdown {
    max-height: 1200px;
    padding: 8px 0 8px 12px;
  }

  .dropdown-link {
    padding: 11px 14px;
    font-size: 0.88rem;
    border-radius: 8px;
  }

  .dropdown-link:hover {
    transform: none;
  }

  .nav-item.open>.nav-link .arrow-icon {
    transform: rotate(180deg);
  }

  .dropdown-item.open>.dropdown-link .sub-arrow {
    transform: rotate(90deg);
  }

  /* About section responsive */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    padding-right: 0;
  }

  .about-image-wrapper {
    padding: 0;
  }

  .about-image-wrapper::before {
    display: none;
  }

  .about-image-card {
    height: 350px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-height: 64px;
  }

  .navbar-logo img {
    height: 40px;
  }

  .nav-menu {
    width: 100%;
    padding: 80px 16px 30px;
  }

  .hero-content {
    padding: 100px 16px 60px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}

/* Our Association */
.assoc-section {
    background: var(--surface-page);
    padding: 27px 24px;
}
  
  .assoc-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(279px, 1fr));
    gap: 16px;
  }

  .assoc-card {
   background: var(--bg-white);
   box-shadow: 0 20px 60px rgba(0, 102, 179, 0.08);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  }

  .assoc-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }

  .assoc-img {
   width: 228px;
    height: 109px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .assoc-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
  }

  @media (max-width: 480px) {
    .assoc-title { font-size: 22px; }
    .assoc-grid { grid-template-columns: repeat(2, 1fr); }
  }


 .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 24px 0;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--green);
  }

  .footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }

  .footer-brand-name {
    font-size: 18px;
    font-weight: 700;
    color:#FFFFFF;
  }

  .footer-brand-tag {
    font-size: 12px;
    color:#4E7A22;
    font-weight: 600;
  }

  .footer-desc {
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 0 20px;
    color: #FFFFFF;
  }

  .footer-social {
    display: flex;
    gap: 10px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #0066B3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
  }

  .footer-social a:hover {
    border-color:  #a6a8a9;
    color: #C8A415;
    background:  #0066B3;
  }

  .footer-heading {
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 700;
    margin: 0 0 18px;
  }

  .footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    color: #FFFFFF;
    flex-direction: column;
    gap: 12px;
  }

  .footer-list li {
    display: flex;
    gap: 10px;
    color:#FFFFFF;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
  }

  .footerli{
    color: #FFFFFF;
  }

  .footer-list .ico {
    color:#C8A415;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .footer-list a {
    color:  #FFFFFF;
    text-decoration: none;
  }



  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 0;
    margin-top: 8px;
    font-size: 13px;
  }

  .footer-bottom span {
    color: #FFFFFF;
    font-weight: 700;
  }

  @media (max-width: 720px) {
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
  }


  /*==============================
    PAGE BANNER
==============================*/

.page-banner{
    position: relative;
    width: 100%;
    height: 330px;
    background: url("../img/banner-img.jpg") center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Green Overlay */

.banner-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(28, 27, 30, 0.75),
        rgba(55,180,70,.45),
        rgba(0,0,0,.25)
    );
}

/* Content */

.banner-content{
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-content h1{
    color:#f2eded;
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
    font-family:'Poppins',sans-serif;
}

/* Breadcrumb */

.breadcrumb{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:12px 24px;
    background:#111;
    border-radius:50px;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.breadcrumb a:hover{
    color:#8BC34A;
}

.breadcrumb span{
    color:#fff;
    font-size:14px;
}

.breadcrumb .active{
    color:#9be443;
    font-weight:600;
}

/* Zoom Animation */

.page-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:inherit;
    animation:zoomBanner 18s linear infinite alternate;
    z-index:-1;
}

@keyframes zoomBanner{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }

}

/* Responsive */

@media(max-width:768px){

.page-banner{
    height:240px;
}

.banner-content h1{
    font-size:38px;
}

.breadcrumb{
    padding:10px 18px;
}

}

@media(max-width:480px){

.page-banner{
    height:210px;
}

.banner-content h1{
    font-size:30px;
}

.breadcrumb{
    font-size:13px;
    gap:8px;
    padding:8px 16px;
}

}

@media (max-width:768px){

.assoc-grid{

grid-template-columns:1fr;

gap:15px;

}

}

/*ABout us css*/
.about-sec{
    padding: 33px 8%;
}


.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.about-image{
    position:relative;
    width:48%;
}

/* Main Image */

.main-img{

    width:520px;
    height:430px;

    object-fit:cover;

    border-radius:30px;
}

/* Small Image */

.small-img{

    position:absolute;

    width:330px;
    height:270px;

    object-fit:cover;

    right:-40px;
    bottom:-80px;

    border-radius:25px;

    border:8px solid #fff;

    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* Dots */

.dots{

    position:absolute;

    top:20px;
    right:-70px;

    width:130px;
    height:260px;

    background-image:radial-gradient(#ddd 2px,transparent 2px);

    background-size:22px 22px;

    z-index:-1;
}

.about-contentt{
    width:48%;
}

.sub-title{

    color:#0066B3;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;
}

.about-contentt h2{

    font-size:35px;

    margin:18px 0;

    color:#163400;

    line-height:1.2;

    font-weight:700;
}

.about-contentt p{

    color:#666;

    line-height:1.9;

    margin-bottom:22px;

    font-size:17px;
}

.feature-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px 35px;

    margin-top:30px;
}

.feature-list div{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:18px;

    font-weight:600;
}

.feature-list i{

    color:#0066B3;

    font-size:22px;
}

.hero-about{
    font-size:33px;
    font-weight:700;
    line-height:1.15;
    color:#0b2239;
    letter-spacing:-1px;
}

    /* .hero-title span{
font-size:35px;
-webkit-text-stroke:2px #34a853;
color:transparent;

} */

.hero-about span{
transition:.4s;
-webkit-text-stroke:2px #34a853;
color:transparent
}

.hero-about span:hover{
letter-spacing:2px;
transform:scale(1.05);
}



/* .hero-title span::after{
    content:"";
    position:absolute;
    left:0;
    bottom:5px;
    width:100%;
    height:8px;
    background:#c9f2b9;
    z-index:-1;
} 
 */

/*Resonpive*/

@media (max-width:768px){
.section-header .sub-heading::after {
    display: none;
}
.main-img{
  display: none;
}
.about-container {
    display:flex;
    flex-direction: column-reverse;
    gap: 30px;
}

.about-image {
    width: 100%;
    margin-top: 0;
    display: flex;
    justify-content: center;
}

.about-contentt{
  width:100%;
  margin-top: 0;
}

.small-img{
  position: static;
  width: 100%;
  max-width: 400px;
  height: auto;
  border: 4px solid #fff;
  border-radius: 20px;
}

.hero-title {
    font-size: 26px;
    margin-bottom: 12px;
}

.dots{
  display: none;
}
.feature-list {
    grid-template-columns: 1fr;
}
.feature-list .btn {
    width: 100% !important;
}
}

/* ============================================
   VISION & MISSION SECTION (3D FLIP CARDS)
   ============================================ */
.vision-mission-section {
  padding: 60px 24px;
  background: var(--bg-light);
}

.vm-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vm-grid-3col {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

/* 3D Flip Card Container */
.vm-flip-card {
  background-color: transparent;
  height: 320px; /* Fixed height for flip effect */
  perspective: 1000px; /* 3D perspective */
}

/* Inner container that flips */
.vm-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Hover effect */
.vm-flip-card:hover .vm-flip-inner {
  transform: rotateY(180deg);
}

/* Front and Back common styles */
.vm-flip-front, .vm-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Front Style */
.vm-flip-front {
  background: var(--bg-white);
  border-top: 4px solid var(--brand-blue);
}

.vm-mission-card .vm-flip-front {
  border-top-color: var(--brand-green);
}

.icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 102, 179, 0.1);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.vm-mission-card .icon-box {
  background: rgba(107, 155, 55, 0.1);
  color: var(--brand-green-dark);
}

.vm-flip-front h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--nav-dark);
  margin-bottom: 10px;
}

.flip-hint {
  font-size: 0.9rem;
  color: var(--text-gray-nav);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  opacity: 0.7;
}

/* Back Style */
.vm-flip-back {
  background: var(--brand-blue);
  color: white;
  transform: rotateY(180deg);
  border-top: 4px solid var(--brand-gold);
}

.vm-mission-card .vm-flip-back {
  background: var(--brand-green-dark);
}

.vm-flip-back h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: white;
}

.vm-flip-back p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}

.vm-flip-back p:last-child {
  margin-bottom: 0;
}

/* Center Image */
.vm-center-img-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 10px;
}

.vm-center-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .vm-grid-3col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .vm-center-img-wrapper {
    order: -1;
  }
  .vm-flip-card {
    height: 300px;
  }
}

.hero-services{
    position:relative;
    overflow:hidden;
    min-height:260px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:44px 20px;
    color:#fff;
  }
  .hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(0.62) saturate(1.15) sepia(0.12) hue-rotate(-8deg);
    z-index:0;
  }
  .hero-servicesro::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(11,39,64,0.7) 0%, rgba(156,120,16,0.28) 45%, rgba(11,39,64,0.88) 100%);
    z-index:1;
  }
  .hero-copy{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:12px;
    letter-spacing:0.18em;
    text-transform:uppercase;
    color:#33D9BE;
    margin-bottom:22px;
  }
 
  h1.title{
    font-weight:700;
    font-size:35px;
    line-height:1.1;
    letter-spacing:-0.01em;
  }
  h1.title .accent{ color:#FFB100; }
  .subtitle{
    margin-top:14px;
    font-size:15px;
    color:#9FB4BA;
    max-width:560px;
    line-height:1.6;
  }
  .range-badge{
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(11, 39, 64, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 12px 24px;
    border-radius: 999px;
  }
  .range-badge .num{
       font-weight: 600;
    font-size: 15px;
    color: #FFB100;
  }
  .range-badge .lbl{
    font-size:11px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:#9FB4BA;
  }

  /* ---------- SECTION LABEL ---------- */
  .section-head{
    padding:56px clamp(20px,6vw,72px) 0;
  }
  .section-head .kicker{
    font-size:12px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:#B97A00;
    margin-bottom:8px;
  }
  .section-head h2{
    font-weight:600;
    font-size:clamp(24px,3vw,32px);
    letter-spacing:-0.01em;
  }

  /* ---------- FLOW DIAGRAM ---------- */
  .flow-wrap{
    margin:36px 0 0;
    padding:0 clamp(20px,6vw,72px) 8px;
  }
  .flow-card{
    background:#122731;
    border-radius:4px;
    padding:52px 40px 44px;
    position:relative;
    overflow:hidden;
  }
  .flow-svg{
    width:100%;
    height:auto;
    display:block;
  }
  .flow-caption{
    display:flex;
    justify-content:space-between;
    margin-top:28px;
    flex-wrap:wrap;
    gap:16px;
  }
  .flow-caption .item{
    flex:1;
    min-width:130px;
  }
  .flow-caption .item .k{
    font-size:10px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:#33D9BE;
    margin-bottom:6px;
  }
  .flow-caption .item .v{
    font-size:14px;
    color:#DCE6EE;
  }

  /* ---------- MAIN GRID ---------- */
  .main-grid{
    margin:48px 0 0;
    padding:0 clamp(20px,6vw,72px) 90px;
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:40px;
  }
  @media (max-width:860px){
    .main-grid{ grid-template-columns:1fr; }
  }

  .info-block h3{
    font-weight:600;
    font-size:26px;
    margin-bottom:16px;
  }
  .info-block p{
    color:#5B6B70;
    line-height:1.75;
    font-size:15.5px;
    margin-bottom:16px;
    max-width:560px;
  }
  .feature-list{
    margin-top:28px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
  }
  @media (max-width:480px){
    .feature-list{ grid-template-columns:1fr; }
  }
  .feature-list .f{
    position:relative;
    background:#FFFFFF;
    border:1px solid rgba(14,27,33,0.12);
    border-left:3px solid #FFB100;
    border-radius:4px;
    padding:20px 18px 18px;
    transition:transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  }
  .feature-list .f:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(14,27,33,0.08);
    border-left-color:#0F7A69;
  }
  .feature-list .f .top-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:14px;
  }
  
  .feature-list .f .icon{
    width:30px; height:30px;
    border-radius:50%;
    background:rgba(214,164,25,0.14);
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .feature-list .f .icon svg{
    width:15px; height:15px;
    stroke:#B97A00;
    fill:none;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
  .feature-list .f .t{
    font-size:15.5px;
    font-weight:600;
    line-height:1.35;
  }

  /* ---------- SPEC / CONTACT CARD ---------- */
  .spec-card{
    background:#FFFFFF;
    border:1px solid rgba(14,27,33,0.12);
    border-radius:4px;
    padding:0;
    height:fit-content;
    position:sticky;
    top:24px;
     box-shadow:
        0 20px 40px rgba(37, 99, 235, 0.10);
  }
  .spec-card .head{
    padding:24px 26px;
    border-bottom:1px solid rgba(253, 253, 253, 0.12);
  }
  .spec-card .head .kicker{
    font-size:11px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:#B97A00;
    margin-bottom:6px;
  }
  .spec-card .head h4{
    font-weight:600;
    font-size:20px;
  }
  .spec-rows{
    padding:8px 26px;
  }
  .spec-rows .row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
    padding:16px 0;
    border-bottom:1px solid rgba(14,27,33,0.12);
  }
  .spec-rows .row:last-child{ border-bottom:none; }
  .spec-rows .row .label{
    font-size:11.5px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:#5B6B70;
    padding-top:2px;
  }
  .spec-rows .row .val{
    font-size:15px;
    font-weight:600;
    text-align:right;
  }
  .cta-zone{
    padding:22px 26px 26px;
  }
  .cta-zone p{
    font-size:13.5px;
    color:#5B6B70;
    margin-bottom:14px;
    line-height:1.6;
  }
  .cta-zone a.link{
    color:#0F7A69;
    text-decoration:none;
    font-weight:600;
  }
  

/* ============================================
   PRODUCT DETAIL SECTION (PREMIUM)
   ============================================ */
.product-detail-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.pd-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumb Banner */
.pd-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0;
  text-align: center;
  color: var(--text-white);
  margin-top: var(--nav-height);
}
.pd-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 22, 40, 0.75); /* nav-dark with opacity */
}
.pd-banner-content {
  position: relative;
  z-index: 2;
}
.pd-banner h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 15px;
}
.pd-breadcrumb {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pd-breadcrumb a {
  color: var(--brand-gold);
  transition: var(--transition-fast);
}
.pd-breadcrumb a:hover {
  color: var(--brand-gold-light);
}
.pd-breadcrumb span {
  color: var(--text-light-gray);
}

/* Main Product Grid */
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .pd-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Gallery Section */
.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pd-main-img {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(0, 102, 179, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.pd-main-img img {
  max-height: 500px;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.pd-main-img:hover img {
  transform: scale(1.05);
}
.pd-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--brand-green);
  color: var(--text-white);
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(107, 155, 55, 0.4);
}

.pd-thumbs {
  display: flex;
  gap: 15px;
}
.pd-thumb {
  width: 90px;
  height: 90px;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-fast);
}
.pd-thumb.active, .pd-thumb:hover {
  border-color: var(--brand-blue);
  background: var(--bg-white);
  box-shadow: 0 5px 15px rgba(0, 102, 179, 0.1);
}

/* Info Section */
.pd-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.pd-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--nav-dark);
  font-weight: 700;
  line-height: 1.2;
}
.pd-short-desc {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.7;
}

.pd-specs-list {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(0, 102, 179, 0.05);
}
.pd-spec-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pd-spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pd-spec-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 102, 179, 0.1);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.pd-spec-text {
  display: flex;
  flex-direction: column;
}
.pd-spec-label {
  font-size: 0.85rem;
  color: var(--text-body);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
.pd-spec-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--nav-dark);
}
.pd-spec-value.stock-ok {
  color: var(--brand-green);
}

.pd-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pd-feature-pill {
  background: rgba(107, 155, 55, 0.1);
  color: var(--brand-green-dark);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.pd-btn {
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}
.pd-btn-primary {
  background: var(--brand-blue);
  color: var(--text-white);
  box-shadow: 0 10px 20px rgba(0, 102, 179, 0.25);
}
.pd-btn-primary:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 102, 179, 0.35);
}
.pd-btn-outline {
  background: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
}
.pd-btn-outline:hover {
  background: var(--brand-blue);
  color: var(--text-white);
}

/* Full Description Section */
.pd-full-desc {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.pd-full-desc h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--nav-dark);
  margin-bottom: 25px;
}
.pd-full-desc p {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

 .simulator-panel {
      max-width: 500px;
      margin: 0 auto 60px;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.9);
      padding: 20px 30px;
      border-radius: 24px;
      box-shadow: 0 15px 35px rgba(0, 102, 179, 0.05);
      text-align: center;
    }
    .simulator-title {
      font-family: var(--font-display);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 15px;
      color: var(--text-muted);
      font-weight: 700;
    }
    .sim-slider-container {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .sim-slider {
      flex-grow: 1;
      -webkit-appearance: none;
      height: 6px;
      border-radius: 5px;
      background: #e2e8f0;
      outline: none;
      cursor: pointer;
    }
    .sim-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--brand-green);
      border: 4px solid #ffffff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .time-label {
      font-family: var(--font-display);
      font-weight: 700;
      min-width: 100px;
      color: var(--text-main);
    }

    /* ===== ORIGINAL MAIN DESIGN CARDS (PREMIUM FIRST DESIGN) ===== */
    
      

    /* STATE CONVERSIONS CONTROLLED BY SLIDER SYSTEM */
    .mode-midday .rel-img-wrap,
    .mode-midday .card-badge,
    .mode-midday .rel-card h4,
    .mode-midday .rel-card p,
    .mode-midday .product-specs,
    .mode-midday .rel-link {
      display: none !important;
    }

    .mode-midday .pdf-document,
    .mode-midday .pdf-download-btn {
      display: flex !important;
    }
    .mode-midday .pdf-document { display: block !important; }

    .mode-midday .rel-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
      border: 1px solid #cbd5e1;
    }

    /*Testimonail*/
   
.luxury-testimonial-section {
  width: 100%;
  background-color: #eceff1;
  padding:29px 0px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* --- HEADER AREA --- */
.luxury-header-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 0px;
  position: relative;
  z-index: 2;
}

.luxury-tag {
  color:#576574;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.luxury-title {
  color: var(--text-primary);
  font-size: 2.6rem;
  font-weight: 800;
  margin: 6px 0 12px 0;
  letter-spacing: -0.02em;
}

.accent-orange-text {
  color: #6ba852;
}

/* --- THE CARD WITH BOTTOM CUTOUT WAVE --- */
.luxury-card-container {
  width: 90%;
  max-width: 850px;
  position: relative;
  z-index: 2;
}

.premium-single-card {
  position: relative;
  width: 100%;
  background-color: var(--card-surface);
  border-radius: 32px;
 padding: 19px 60px 79px 29px;
  box-sizing: border-box;
  box-shadow: 0 12px 24px rgba(0,0,0,.08),
        0 35px 80px rgba(0,0,0,.16);

}

.premium-slides-viewport {
  position: relative;
  width: 100%;
  min-height: 150px;
}

.luxury-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.luxury-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Typography styles */
.client-title-name {
  color: #0275c7;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.client-subtitle-designation {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}

/* Divider with tiny end dots */
.premium-line-divider {
  position: relative;
  width: 25%;
  height: 1px;
  background-color: #e2e8f0;
  margin: 0 auto 30px auto;
}

.center-axis-dot {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.left-dot { left: 0; }
.right-dot { right: 0; }

.testimonial-main-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto;
}

/* --- THE NAVIGATION PLACED INSIDE THE BOTTOM CUTOUT --- */
.bottom-wave-nav-wrapper {
  position: absolute;
 bottom: 11px; /* Sits perfectly centered at the bottom */
  left: 50%;
  transform: translate(-50%, 0);
  width: 70px;
  height: 38px;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.nav-circle {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--purple-translucent);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.prev-circle {
  left: 0;
  z-index: 2;
}

.next-circle {
  right: 0;
  z-index: 1;
}

.nav-circle:hover {
  background-color: rgba(139, 92, 246, 0.95);
  transform: scale(1.08);
  z-index: 3;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .premium-single-card {
    padding: 45px 25px 85px 25px;
    clip-path: none !important; /* Standard corners on mobile screens */
  }
  
}

/*news paper*/
.editorial-news-section {
  width: 100%;
  background-color: var(--news-bg-light);
  padding: 5px 0 33px 0;
  overflow: hidden;
}

/* --- HEADER AND DUAL INTERLOCKING BUTTONS --- */
.news-header-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 13px;
  
}

.news-main-title {
  color:#1e293b;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.pink-text {
  color: #0066B3;
}

.title-underline {
  width: 80px;
  height: 1px;
  background-color: #64748b;
  margin-bottom: 24px;
}

/* The Overlapping Round Controls Layout */
.interlocking-nav {
  display: flex;
  position: relative;
  height: 40px;
  width: 70px;
  justify-content: center;
}

.nav-circle {
  position: absolute;
  width: 36px;
  height: 36px;
      margin-left: -6px;
  border-radius: 50%;
  background-color: #F5C518;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.prev-circle {
  left: 0;
  z-index: 2;
}

.next-circle {
  right: 0;
  z-index: 1;
}

.nav-circle:hover {
  background-color: #F5C518;
  transform: scale(1.05);
  z-index: 3;
}

/* --- THE SPLIT ROW COMPONENT --- */
.news-row-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  gap: 50px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .08), 0 35px 80px rgba(0, 0, 0, .16);
    padding: 45px 49px;
}

/* Left Brand Box Core Styles */
.media-logo-axis {
  position: relative;
  width: 100%;
  height: 180px;
}

.logo-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: scale(0.9);
}

.logo-wrapper.active-logo {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.logo-box {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

/* Distinct Brand Background Shifts */
.et-red { background-color: #e52d67; }
.mint-blue { background-color: #008fa0; font-size: 2.8rem; letter-spacing: -1px; }

/* Right News Excerpt text blocks */
.news-excerpt-canvas {
  position: relative;
  width: 100%;
}

.news-slides-wrapper {
  position: relative;
  width: 100%;
  min-height: 220px;
}

.news-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.article-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 12px;
}

.publication-tag {
  color: #0066B3;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.article-date {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
}

.article-headline {
  color: #1e293b;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px 0;
}

.article-snippet {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

/* --- MOBILE OPTIMIZATION LAYER --- */
@media (max-width: 768px) {
  .news-row-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .media-logo-axis {
    height: 160px;
  }
  .article-meta {
    justify-content: center;
  }
  .article-headline {
    font-size: 1.45rem;
  }
}


/* Left Top Background Shape */
.news-row-container::before{
       content:"";
    position:fixed;
    top:-150px;
    left:-250px;

    width:700px;
    height:750px;

    background:radial-gradient(
        circle at 70% 40%,
        rgba(0,123,255,.20) 0%,     /* Blue */
        rgba(40,167,69,.18) 50%,    /* Green */
        rgba(255,193,7,.15) 100%    /* Gold */
    );

    border-radius:58% 42% 63% 37% / 40% 60% 40% 60%;

    filter:blur(25px);
    opacity:.9;
    z-index:-1;
}

.news-row-container::after{
    content: "";
    position: absolute;
    bottom: -180px;
    left: -180px;

    width: 500px;
    height: 500px;

    background: radial-gradient(
        circle,
        rgba(105, 86, 28, 0.15) 0%,
        rgba(76,175,80,0.14) 50%,
        rgba(0,123,255,0.12) 100%
    );

    border-radius: 50%;
    filter: blur(18px);
    z-index: 0;
}

/*COnatact*/

.light-solar-contact {
  width: 100%;
  background-color: #f8fafc; /* Premium clean off-white canvas (No Black/Dark BG) */
  padding: 27px 0;;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Structural Accent Shapes for Premium Aesthetics */
.light-shape-left {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.light-shape-right {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(241, 90, 36, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.light-contact-container {
  width: 92%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  position: relative;
  z-index: 5;
  align-items: center;
}

/* --- LEFT SIDE: ACCENT DATA COLUMN --- */
.light-brand-column {
  color: #0f172a;
}

.eco-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #2e7d32;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.green-glow-dot {
  width: 6px;
  height: 6px;
  background-color: #4caf50;
  border-radius: 50%;
  box-shadow: 0 0 8px #4caf50;
}

.light-main-title {
  font-size: 2.8rem;
  font-weight: 850;
  margin: 0 0 16px 0;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.solar-orange-text {
  color: #f15a24; /* Theme matching accent */
}

.light-sub-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 35px 0;
}

/* Minimalist Information Structural Cards */
.light-info-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.light-info-card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.lic-icon {
  font-size: 1.25rem;
  margin-top: 2px;
}

.lic-text h4 {
  margin: 0 0 4px 0;
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 700;
}

.lic-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.lic-text .timing-highlight {
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 4px;
}

.lic-text .channels-links a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
}

.lic-text .channels-links a:hover {
  color: #f15a24;
}

.light-social-bar {
  display: flex;
  gap: 20px;
}

.light-social-bar a {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.light-social-bar a:hover {
  color: #0f172a;
}

/* --- RIGHT SIDE: HIGHLIGHTED WHITE INPUT CARD --- */
.light-form-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.03), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

.light-form-header {
  margin-bottom: 30px;
}

.light-form-header h3 {
  font-size: 1.4rem;
  color: #0f172a;
  margin: 0 0 6px 0;
  font-weight: 700;
}

.light-form-header p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
}

.light-interactive-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.light-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.light-input-field {
  position: relative;
  width: 100%;
}

.light-input-field input,
.light-input-field textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px 16px;
  border-radius: 10px;
  color: #0f172a;
  font-size: 0.92rem;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
  transition: all 0.2s ease;
}

.light-input-field textarea {
  resize: vertical;
}

.light-input-field input::placeholder,
.light-input-field textarea::placeholder {
  color: #94a3b8;
}

/* Dynamic Focus Highlight Borders */
.input-focus-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0f172a;
  transition: all 0.25s ease;
}

.light-input-field input:focus ~ .input-focus-bar,
.light-input-field textarea:focus ~ .input-focus-bar {
  left: 0;
  width: 100%;
}

.light-input-field input:focus,
.light-input-field textarea:focus {
  background: #ffffff;
  border-color: #cbd5e1;
}

/* Premium High Contrast Interactive Button */
.light-action-row {
  display: flex;
  margin-top: 6px;
}

.light-submit-btn {
  background-color: #0f172a; /* Sophisticated deep slate button fill */
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.light-submit-btn:hover {
  background-color: #f15a24; /* Changes smoothly to theme orange on focus */
  transform: translateY(-1px);
}

/* --- ADAPTIVE PORT RESPONSIVENESS --- */
@media (max-width: 992px) {
  .light-contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .light-main-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 600px) {
  .light-form-panel {
    padding: 30px 20px;
  }
  .light-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================
   Gallery Page
========================== */

.solar-gallery-section {
  width: 100%;
  background-color: #f8fafc;
  padding: 15px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.gallery-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery-header {
  margin-bottom: 40px;
  text-align: center;
}

.gallery-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #2e7d32;
  background-color: #e8f5e9;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.gallery-header h2 {
  font-size: 2.5rem;
  font-weight: 850;
  color: #0f172a;
  margin: 15px 0 10px 0;
  letter-spacing: -0.02em;
}

.orange-highlight {
  color: #f15a24;
}

.gallery-header p {
  color: #64748b;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- HIDING RADIOS & FILTER FUNCTIONALITY --- */
.css-filter-radio {
  display: none;
}

.gallery-filter-controls {
  /* display: inline-flex;
  background-color: #ffffff; */
  padding: 6px;
  border-radius: 30px;
  text-align: center;
  /* border: 1px solid #e2e8f0; */
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.02); */
  margin-bottom: 11px;
}

.filter-label {
  display: inline-block;
  padding: 10px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.25s ease;
  user-select: none;
}

.filter-label:hover {
  color: #0f172a;
}

/* Active State Styles controlled completely via CSS Trigger Engine */
#tab-all:checked ~ .gallery-filter-controls .btn-all,
#tab-solar:checked ~ .gallery-filter-controls .btn-solar,
#tab-install:checked ~ .gallery-filter-controls .btn-install {
  background-color: #0f172a;
  color: #ffffff;
}

/* --- PURE CSS FILTERING MATRIX --- */
/* Jab 'Solar' select ho, toh installation classes ko crash/hide karein */
#tab-solar:checked ~ .gallery-grid .gallery-item:not(.type-solar) {
  display: none;
}

/* Jab 'Installation' select ho, toh standard solar items compress karein */
#tab-install:checked ~ .gallery-grid .gallery-item:not(.type-install) {
  display: none;
}

/* --- GRID DISPLAY --- */
.gallery-grid {
   display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    grid-auto-rows: 260px;

    gap: 30px;          /* 24px se 30 ya 35 kar do */
    padding: 15px;      /* outer spacing */
}


.gallery-item {
  animation: fadeInSmooth 0.4s ease-in-out forwards;
}

@keyframes fadeInSmooth {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery-card-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.01);
  cursor: pointer;
}

.gallery-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-overlay h4 {
  color: #ffffff;
  margin: 0 0 4px 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.card-overlay span {
  color: #4cc9f0;
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-card-inner:hover img {
  transform: scale(1.06);
}

.gallery-card-inner:hover .card-overlay {
  opacity: 1;
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {

    .honeycomb-grid {
       display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    justify-items:center;
    }

    
}

.header-section {
      text-align: center;
      margin-bottom: 50px;
    }

    .header-section h1 {
      font-size: 2.5rem;
      color: #38bdf8; /* Light Ice Blue Accent */
      margin-bottom: 10px;
      font-weight: 800;
    }

    .header-section p {
      color: #94a3b8;
      font-size: 1.1rem;
    }

    /* ==========================================
       NEW PREMIUM GRID & CARD UI
       ========================================== */
    .datasheet-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .datasheet-card {
      background: #1e293b; /* Glassmorphism/Card Slate Color */
      border: 1px solid #334155;
      border-radius: 20px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                  box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                  border-color 0.4s ease;
    }

    /* Hover State Elevates and glows */
    .datasheet-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(56, 189, 248, 0.15);
      border-color: #38bdf8;
    }

    .card-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: rgba(56, 189, 248, 0.2);
      color: #38bdf8;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border: 1px solid rgba(56, 189, 248, 0.3);
      z-index: 10;
    }

    /* ==========================================
       IMAGE DISPLAY VIEWPORT
       ========================================== */
    .image-viewport {
      width: 100%;
      height: 420px;
      background: #ffffff; /* Clean white canvas background for images */
      border-radius: 12px;
      overflow: hidden;
      margin: 15px 0 24px 0;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: inset 0 2px 8px rgba(0,0,0,0.2);
      position: relative;
    }

    .image-viewport img {
      width: 92%;
      height: 92%;
      object-fit: contain; /* Full Image View Guarantee */
      transition: transform 0.5s ease;
    }

    /* Micro-animation: image subtly zooms on card hover */
    .datasheet-card:hover .image-viewport img {
      transform: scale(1.03);
    }

    .card-meta {
      margin-top: auto;
    }

    .card-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #f8fafc;
      margin: 0 0 6px 0;
    }

    .card-subtitle {
      font-size: 0.875rem;
      color: #94a3b8;
      margin: 0 0 20px 0;
    }

    /* ==========================================
       ACTION DOWNLOAD BUTTON
       ========================================== */
    .action-download-btn {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #0284c7, #0369a1); /* Sky Blue Tech Gradient */
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-sizing: border-box;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
    }

    .action-download-btn:hover {
      background: linear-gradient(135deg, #38bdf8, #0284c7);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
    }

    .action-download-btn:active {
      transform: translateY(1px) scale(0.98);
    }
    
    .action-download-btn svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

/*Product*/
  /* Catalog Header */
    .catalog-header {
      background: linear-gradient(135deg, var(--nav-dark) 0%, var(--nav-dark-2) 100%);
      padding: 80px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .catalog-header::before {
      content: '';
      position: absolute;
      top: -50%; left: -10%;
      width: 40%; height: 200%;
      background: radial-gradient(circle, rgba(107, 155, 55, 0.15) 0%, transparent 60%);
      transform: rotate(30deg);
    }
    .catalog-header-title {
      font-family: var(--font-heading);
      font-size: 3.5rem;
      color: var(--text-white);
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }
    .catalog-header-title span {
      color: var(--brand-green-light);
    }
    .catalog-header-desc {
      font-size: 1.15rem;
      color: var(--text-light-gray);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    /* Catalog Grid Area */
    .catalog-container {
      max-width: 1350px;
      margin: -40px auto 32px;
      padding: 0 5%;
      position: relative;
      z-index: 2;
    }

    .catalog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
    }

    /* Premium Product Card */
    .product-card {
      background: var(--bg-white);
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0,0,0,0.03);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }
    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 102, 179, 0.1);
      border-color: rgba(0, 102, 179, 0.1);
    }

    .card-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(107, 155, 55, 0.1);
      color: var(--brand-green-dark);
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      z-index: 2;
    }

    /* Image Wrapper */
    .card-img-wrapper {
      background: var(--bg-light);
      border-radius: 14px;
      padding: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 220px;
      margin-bottom: 25px;
      position: relative;
    }
    .card-img-wrapper::after {
      content: '';
      position: absolute;
      width: 100px; height: 100px;
      background: radial-gradient(circle, rgba(0, 102, 179, 0.1) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    .card-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      z-index: 1;
      filter: drop-shadow(0 10px 15px rgba(0,0,0,0.08));
      transition: transform 0.5s ease;
    }
    .product-card:hover .card-img {
      transform: scale(1.08);
    }

    /* Content */
    .card-title {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      color: var(--nav-dark);
      font-weight: 700;
      margin-bottom: 8px;
    }
    .card-subtitle {
      font-size: 0.9rem;
      color: var(--brand-blue);
      font-weight: 600;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .card-desc {
      font-size: 0.95rem;
      color: var(--text-body);
      line-height: 1.6;
      margin-bottom: 25px;
      flex-grow: 1;
    }

    /* Specs List */
    .card-specs {
      list-style: none;
      padding: 0;
      margin: 0 0 25px;
      border-top: 1px solid rgba(0,0,0,0.05);
      border-bottom: 1px solid rgba(0,0,0,0.05);
      padding: 15px 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .card-specs li {
      font-size: 0.85rem;
      color: var(--text-body);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .card-specs i {
      color: var(--brand-green);
      font-size: 0.9rem;
    }

    /* Action Button */
    .card-btn {
      display: block;
      width: 100%;
      padding: 14px 0;
      text-align: center;
      background: var(--bg-white);
      color: var(--brand-blue);
      border: 2px solid var(--brand-blue);
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .product-card:hover .card-btn {
      background: var(--brand-blue);
      color: var(--text-white);
    }

    @media (max-width: 768px) {
      .catalog-header {
        padding: 60px 5% 80px;
      }
      .catalog-header-title {
        font-size: 2.5rem;
      }
    }

/* ==============================================
   COMPREHENSIVE RESPONSIVE STYLES — ALL PAGES
   Breakpoints: 992px | 768px | 480px
   ============================================== */

/* ---- TABLET (992px) ---- */
@media (max-width: 992px) {

  /* Navbar */
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; left: 0;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--nav-dark);
    flex-direction: column;
    padding: 90px 24px 40px;
    gap: 0;
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 4px 0 30px rgba(0,0,0,0.3);
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-link { padding: 14px 0; width: 100%; display: flex; justify-content: space-between; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: rgba(255,255,255,0.04);
    border-radius: 8px; margin: 6px 0; padding: 4px 0;
    display: none;
  }
  .nav-item.open > .dropdown { display: block; }
  .sub-dropdown { position: static; display: none; }
  .dropdown-item.open > .sub-dropdown { display: block; }

  /* Hero */
  .hero-carousel-section { height: 60vh; }
  .hero-title { font-size: 2.2rem !important; }
  .hero-description { font-size: 1rem !important; }
  .carousel-control { width: 38px; height: 38px; }

  /* About Section (index) */
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-content { padding-right: 0; }
  .about-image-card { height: 350px; }

  /* About page two-col image */
  .about-container { flex-direction: column !important; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Product Catalog */
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* VM Section */
  .vm-grid-3col { grid-template-columns: 1fr 1fr !important; }
  .vm-center-img-wrapper { display: none; }

  /* Footer */
  .footer-top { flex-direction: column !important; gap: 30px; }
  .footer-top > div { width: 100% !important; }
}

/* ---- SMALL TABLET / LARGE MOBILE (768px) ---- */
@media (max-width: 768px) {

  /* Hero */
  .hero-carousel-section { height: 55vh; min-height: 400px; }
  .hero-title { font-size: 1.9rem !important; }
  .btn-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Sections padding */
  .services-section,
  .vision-mission-section,
  .luxury-testimonial-section { padding: 40px 16px !important; }

  /* About section index */
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-image-card { height: 280px; }

  /* About page image stack */
  .about-sec .about-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
  }
  .about-image { width: 100% !important; }
  .about-image .main-img { width: 100%; }
  .about-image .small-img { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
    padding: 10px;
  }

  /* Catalog header */
  .catalog-header { padding: 60px 5% 80px; }
  .catalog-header-title { font-size: 2.2rem; }
  .catalog-header-desc { font-size: 1rem; }
  .catalog-container { margin: -25px auto 50px; padding: 0 4%; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-card { padding: 18px; }
  .card-img-wrapper { height: 180px; padding: 20px; }

  /* Vision Mission */
  .vm-grid-3col {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .vm-center-img-wrapper { display: none; }

  /* Testimonial */
  .premium-single-card { padding: 30px 20px !important; }
  .testimonial-main-text { font-size: 1rem !important; }

  /* Contact */
  .contact-grid,
  .contact-form-wrapper { grid-template-columns: 1fr !important; }

  /* Page banner */
  .page-banner { height: 200px !important; }
  .banner-content h1 { font-size: 2rem !important; 
    margin-top: 39px;
  }

  /* Footer */
  .footer-top { padding: 40px 16px 30px !important; }
  .footer-bottom { flex-direction: column !important; gap: 8px; text-align: center; padding: 16px !important; }
  .footer-social { justify-content: center; }
}

/* ---- MOBILE (480px) ---- */
@media (max-width: 480px) {

  /* Navbar container */
  .navbar-container { padding: 0 16px; }
  .navbar-logo img { height: 44px !important; }

  /* Hero */
  .hero-carousel-section { height: 75vh; min-height: 350px; }
  .hero-title { font-size: 1.6rem !important; line-height: 1.3; }
  .hero-description { font-size: 0.95rem !important; }
  .carousel-control { width: 34px; height: 34px; }
  .carousel-control.prev { left: 10px; }
  .carousel-control.next { right: 10px; }

  /* About */
  .section-title h2 { font-size: 1.6rem !important; }
  .about-image-card { height: 220px; }

  /* Services */
  .service-card { padding: 20px 16px; }

  /* Gallery — single column */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 14px;
    padding: 8px;
  }

  /* Product Catalog — single column */
  .catalog-header-title { font-size: 1.8rem; }
  .catalog-grid { grid-template-columns: 1fr; gap: 16px; }
  .card-img-wrapper { height: 200px; }
  .card-title { font-size: 1.4rem; }

  /* Footer */
  .footer-brand { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-brand-name { font-size: 1rem !important; }
  .footer-list li { font-size: 0.85rem; }
  .footer-bottom { font-size: 0.78rem; }
}

.laod-button{
  margin-top:50px;
}

@media screen and (max-width: 768px) {
  .client-title-name {
    color: #0275c7;
    font-size: 1.2rem;
}
.luxury-title {
    color: var(--text-primary);
    font-size: 1.6rem;

}
.bottom-wave-nav-wrapper{
        bottom: -13px!important;
    }

  .laod-button{
  margin-top: 12px!important;
}

.about-section{
        padding: 6px 16px !important;
    }

    .footer-inner {
    padding: 0px 24px 0;
}
}
