
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --teal-500: #14b8a6;
  --amber-400: #fbbf24;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--slate-50);
}
::-webkit-scrollbar-thumb {
  background: var(--slate-300);
  border-radius: 20px;
  border: 2px solid var(--slate-50);
  transition: var(--transition);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green-600);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--slate-800);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.utility-bar {
  background: var(--slate-800);
  padding: 6px 0;
  font-size: 12px;
}
.utility-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.utility-text { color: var(--green-400); font-weight: 500; }
.utility-text i { margin-right: 4px; }
.utility-links { display: flex; gap: 20px; }
.utility-links a {
  color: var(--slate-300);
  font-size: 12px;
  font-weight: 400;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.utility-links a:hover { color: var(--green-400); }

/* ============================================================
   HEADER — ADANI RENEWABLES STYLE
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.header-primary {
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  padding: 0;
  background: transparent;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* BRAND / LOGO */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Real logo image in header */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 8px; /* Tighter gap between icon and text */
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo-img {
  height: 52px; /* Restored to perfect height for the windmill icon */
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}
.brand-logo-link:hover .brand-logo-img { opacity: 0.9; transform: scale(1.02); }

.brand-text {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #1a73e8; /* Vivid logo blue */
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.brand-divider-inline {
  color: var(--slate-300);
  font-size: 20px;
  font-weight: 300;
}
.brand-sub {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #555555; /* Medium dark logo gray */
  letter-spacing: -0.01em;
}
.brand-divider {
  width: 1px;
  height: 36px;
  background: var(--slate-300);
  margin: 0 6px;
}
.brand-tagline {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-500);
  letter-spacing: 0.01em;
}

/* PRIMARY NAV LINKS */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-500);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  display: none;
}
.nav-link:hover {
  color: var(--slate-900);
  background: transparent;
}
.nav-link.active {
  color: var(--slate-900);
  background: transparent;
  font-weight: 600;
}
.nav-link--cta {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.55) 100%);
  color: #0f172a !important;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 700;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.9), 0 4px 14px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.nav-link--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.85) 50%, transparent 100%);
  transform: translateX(-120%) skewX(-25deg);
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  z-index: 1;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 100%) !important;
  border-color: #ffffff !important;
  color: #000000 !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.95), 0 8px 22px rgba(255, 255, 255, 0.4);
}
.nav-link--cta:hover::before {
  transform: translateX(120%) skewX(-25deg);
}

/* SECONDARY NAV ROW */
.header-secondary {
  background: transparent;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: none;
}
.secondary-nav {
  display: flex;
  align-items: center;
  justify-content: center; /* Center the links */
  width: 100%; /* Use full width of container */
  gap: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.secondary-nav::-webkit-scrollbar { display: none; }
.subnav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-600);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}
.subnav-link:hover {
  color: var(--slate-900);
  background: transparent;
  border-bottom-color: var(--slate-400);
}
.subnav-link:hover .subnav-icon {
  transform: translateY(-1px);
}
.subnav-link.active {
  color: var(--slate-900);
  border-bottom-color: var(--slate-800);
  background: transparent;
  font-weight: 600;
}
.subnav-icon {
  font-size: 13px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.subnav-icon i { font-size: 13px; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* MOBILE MENU — Professional Slide-Down Drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--green-500);
  padding: 0 0 8px;
  gap: 0;
  /* Slide animation */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1),
              opacity 0.28s ease,
              transform 0.28s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.mobile-menu.open {
  display: flex;
  max-height: 100vh;
  opacity: 1;
  transform: translateY(0);
}

/* Section label */
.mobile-nav-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-400);
  padding: 14px 20px 6px;
}

/* Group separator */
.mobile-nav-group {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.mobile-nav-group:last-of-type {
  border-bottom: none;
}

/* Each nav link row */
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: 0;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  text-decoration: none;
  position: relative;
  border-left: 3px solid transparent;
}
.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: var(--slate-100);
  color: var(--slate-900);
  padding-left: 24px;
  border-left-color: #0f172a;
}

/* Icon box */
.mob-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--slate-600);
  flex-shrink: 0;
  transition: background 0.18s ease, color 0.18s ease;
}
.mobile-nav-link:hover .mob-icon,
.mobile-nav-link:active .mob-icon {
  background: var(--green-100);
  color: var(--green-700);
}
.mob-icon--solar { background: rgba(251,191,36,0.12); color: #d97706; }
.mob-icon--wind  { background: rgba(59,130,246,0.12); color: #2563eb; }
.mob-icon--hybrid{ background: rgba(20,184,166,0.12); color: #0f766e; }

/* Right arrow */
.mob-arrow {
  margin-left: auto;
  font-size: 10px;
  color: var(--slate-300);
  transition: transform 0.18s ease, color 0.18s ease;
  flex-shrink: 0;
}
.mobile-nav-link:hover .mob-arrow {
  transform: translateX(3px);
  color: var(--green-500);
}

/* CTA button group at bottom */
.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px 8px;
}
.mobile-nav-cta .btn {
  font-size: 14px;
  padding: 12px 20px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1a0f;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  animation: hero-zoom 12s ease-out forwards;
}
@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Cinematic dark overlay — bottom heavier so text pops */
  background:
    linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 60%, rgba(0,0,0,0.18) 100%),
    linear-gradient(to top,   rgba(0,0,0,0.55) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(0,10,0,0.45) 0%, transparent 40%);
  z-index: 1;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--green-400);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
}
@keyframes float-particle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
  20%, 80% { opacity: 0.6; }
  50% { transform: translateY(-120px) scale(1.5); opacity: 0.8; }
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 0 24px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--green-400);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #4ade80, #22c55e, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

/* LIQUID GLASS BUTTONS */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  font-family: var(--font-main);
  letter-spacing: 0.02em;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  color: #0f172a !important;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.58) 50%, rgba(255, 255, 255, 0.75) 100%);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.9), inset 0 -1px 3px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

/* Liquid Shine Wave Sweep */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.85) 50%, transparent 100%);
  transform: translateX(-120%) skewX(-25deg);
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  z-index: 1;
}

.btn:hover::before {
  transform: translateX(120%) skewX(-25deg);
}

.btn i, .btn svg {
  color: #0f172a !important;
  fill: #0f172a !important;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, color 0.3s ease;
}

.btn:hover i, .btn:hover svg {
  color: #000000 !important;
  fill: #000000 !important;
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.78) 50%, rgba(255, 255, 255, 0.95) 100%);
  border-color: #ffffff;
  color: #000000 !important;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.95), 0 12px 28px -4px rgba(255, 255, 255, 0.4), 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0.82) 100%);
  color: #0f172a !important;
  border-color: rgba(255, 255, 255, 0.85);
}

.btn--ghost {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.5) 100%);
  color: #0f172a !important;
  border-color: rgba(255, 255, 255, 0.75);
}

.btn--ghost:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 100%);
  border-color: #ffffff;
  color: #000000 !important;
}

.btn--full { width: 100%; justify-content: center; }

.btn--outline {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.5) 100%);
  color: #0f172a !important;
  border-color: rgba(255, 255, 255, 0.75);
}

.btn--outline:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 100%);
  border-color: #ffffff;
  color: #000000 !important;
}

/* Form Buttons on Light Backgrounds - Liquid Frosted Glass Overlay */
form .btn--primary,
.supplier-form .btn,
.careers-form .btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 245, 249, 0.85) 100%) !important;
  color: #0f172a !important;
  border: 1.5px solid rgba(15, 23, 42, 0.25) !important;
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.95), 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}
form .btn--primary:hover,
.supplier-form .btn:hover,
.careers-form .btn:hover {
  background: linear-gradient(135deg, #ffffff 0%, rgba(241, 245, 249, 0.98) 100%) !important;
  border-color: rgba(15, 23, 42, 0.45) !important;
  color: #000000 !important;
  box-shadow: inset 0 2px 4px #ffffff, 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 32px;
  flex: 1;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-400);
  line-height: 1;
}
.stat-unit { font-size: 1.1rem; color: var(--green-400); font-weight: 700; margin-left: 2px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; text-align: center; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* SCROLL HINT */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  z-index: 2;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: bounce-arrow 2s infinite;
}
@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  background: var(--green-700);
  overflow: hidden;
  padding: 10px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  gap: 0;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-track span { padding: 0 8px; }

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */
.services, .about, .newsroom, .careers, .projects { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header--light { color: var(--white); }
.section-tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-tag--light { background: rgba(255,255,255,0.15); color: var(--white); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title--light { color: var(--white); }
.section-desc { font-size: 1rem; color: var(--slate-500); line-height: 1.7; }
.section-desc--light { color: rgba(255,255,255,0.7); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services { background: var(--slate-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--slate-100);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.service-img-wrap { position: relative; height: 220px; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img { transform: scale(1.06); }
.service-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--green-600);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.service-card-badge.wind { background: var(--blue-600); }
.service-card-badge.hybrid { background: var(--teal-500); }
.service-body { padding: 28px; }
.service-icon { font-size: 1.8rem; margin-bottom: 14px; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.solar-icon { background: rgba(251, 191, 36, 0.12); color: #d97706; }
.wind-icon  { background: rgba(59, 130, 246, 0.12); color: #2563eb; }
.hybrid-icon{ background: rgba(20, 184, 166, 0.12); color: #0f766e; }
.service-icon i { font-size: 1.5rem; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}
.service-body p { font-size: 0.9rem; color: var(--slate-500); margin-bottom: 16px; line-height: 1.65; }
.service-features { margin-bottom: 20px; }
.service-features li { font-size: 0.85rem; color: var(--slate-600); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.service-features li i { color: var(--green-600); font-size: 0.85rem; flex-shrink: 0; }
.service-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-700);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-cta i { transition: transform 0.25s ease; }
.service-cta:hover { color: var(--green-500); }
.service-cta:hover i { transform: translateX(4px); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; max-height: 520px; object-fit: cover; object-position: top center; }
.about-badge-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--slate-100);
}
.about-badge-card--2 {
  bottom: auto;
  top: -20px; left: -20px;
  right: auto;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-700);
}
.badge-txt { font-size: 11px; color: var(--slate-500); font-weight: 500; }
.about-content { padding: 20px 0; }
.about-text { font-size: 0.95rem; color: var(--slate-600); margin-bottom: 16px; line-height: 1.75; }
.about-values { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--slate-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--green-500);
}
.value-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(22, 163, 74, 0.1); color: var(--green-700); }
.value-item strong { display: block; font-weight: 700; color: var(--slate-800); margin-bottom: 2px; }
.value-item p { font-size: 0.85rem; color: var(--slate-500); margin: 0; }


/* ============================================================
   PROJECTS SECTION
   ============================================================ */
.projects { background: var(--slate-50); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  cursor: pointer;
  transition: var(--transition);
}
.project-card--large {
  grid-column: 1 / 3;
  min-height: 320px;
}
.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}
#proj-1::before { background: linear-gradient(135deg, #164e63, #0f766e); }
#proj-2::before { background: linear-gradient(135deg, #1e3a5f, #1d4ed8); }
#proj-3::before { background: linear-gradient(135deg, #064e3b, #0f766e); }
#proj-4::before { background: linear-gradient(135deg, #422006, #9a3412); }

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 L60 30 L80 30 L65 45 L70 65 L50 55 L30 65 L35 45 L20 30 L40 30 Z' fill='white' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 80px;
  z-index: 0;
}
.project-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  transition: var(--transition);
}
.project-card:hover .project-overlay { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%); }
.project-card:hover { transform: scale(1.02); }
.project-type {
  display: inline-block;
  background: var(--green-500);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  width: fit-content;
}
.project-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.project-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.project-stat {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-400);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
}

/* ============================================================
   NEWSROOM SECTION
   ============================================================ */
.newsroom { background: var(--white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--slate-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--teal-500));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.news-card:hover::before { transform: scaleX(1); }
.news-tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.news-date { font-size: 12px; color: var(--slate-400); margin-bottom: 12px; }
.news-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card p { font-size: 0.87rem; color: var(--slate-500); line-height: 1.65; margin-bottom: 16px; }
.news-link { font-size: 13px; font-weight: 600; color: var(--green-700); transition: var(--transition); }
.news-link:hover { color: var(--green-500); }

/* ============================================================
   CAREERS SECTION
   ============================================================ */
.careers {
  background: linear-gradient(135deg, var(--slate-900), var(--green-900));
  color: var(--white);
}
.careers-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.careers-info-col .section-title { color: var(--white); }
.careers-info-col p { color: rgba(255,255,255,0.7); margin-bottom: 24px; font-size: 1rem; line-height: 1.7; }

/* Careers Stats Row */
.careers-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.career-stat-mini {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.career-stat-mini:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.c-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-400);
}
.c-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; display: block; }

/* Careers Form Wrap */
.careers-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.careers-form .form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.careers-form .form-subtitle {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  line-height: 1.4;
}
.careers .form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
  display: block;
}
.careers .form-group input,
.careers .form-group select,
.careers .form-group textarea {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-family: var(--font-main);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  box-sizing: border-box;
  transition: var(--transition);
  margin-bottom: 0;
}
.careers-form input::placeholder,
.careers-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.careers .form-group input:focus,
.careers .form-group select:focus,
.careers .form-group textarea:focus {
  outline: none;
  border-color: var(--green-400);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.careers-form select option {
  background: var(--slate-900);
  color: var(--white);
}
.careers-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.careers-form .btn {
  margin-top: 8px;
}
.careers-form .form-success {
  display: none;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--green-400);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
  align-items: center;
  gap: 8px;
}
.careers-form .form-success[style*="flex"],
.careers-form .form-success[style*="block"] {
  display: flex !important;
}

/* Custom File Upload Styling in Careers Form */
.careers .file-upload-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  cursor: pointer;
  transition: var(--transition);
}
.careers .file-upload-wrapper:hover {
  border-color: var(--green-400);
  background: rgba(255, 255, 255, 0.08);
}
.careers .file-upload-input {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  cursor: pointer;
  margin-bottom: 0 !important;
  padding: 0 !important;
}
.careers .file-upload-btn {
  background: var(--green-600);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.careers .file-upload-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

@media (max-width: 768px) {
  .careers-form-wrap {
    padding: 28px;
  }
}
@media (max-width: 576px) {
  .careers-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .careers-stats-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .careers-form-wrap {
    padding: 24px;
  }
}



/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { background: var(--slate-50); padding: 96px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
}
.info-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--green-100); color: var(--green-700); }
.info-item strong { display: block; font-weight: 700; color: var(--slate-800); margin-bottom: 4px; }
.info-item p { font-size: 0.88rem; color: var(--slate-500); line-height: 1.6; margin: 0; }

/* CONTACT FORM */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--slate-700); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--slate-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-sm);
  color: var(--green-700);
  font-weight: 500;
  font-size: 14px;
  margin-top: 12px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-success[style*="block"] {
  display: flex !important;
}
.form-error {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  color: #dc2626;
  font-weight: 500;
  font-size: 14px;
  margin-top: 8px;
}
.form-error[style*="flex"] { display: flex !important; }
.form-error[style*="block"] { display: flex !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #0b1120 0%, #030712 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle background glow */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.footer-top {
  padding: 80px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 24px;
  transition: var(--transition);
  white-space: nowrap;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.footer-logo-link:hover .footer-logo-img {
  transform: scale(1.05);
}

.footer-brand-text {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  white-space: nowrap;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.footer-brand-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
  font-weight: 300;
}

.footer-brand-sub {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-400);
  letter-spacing: -0.01em;
  transition: var(--transition);
  white-space: nowrap;
}

.footer-logo-link:hover .footer-brand-name {
  color: var(--green-400);
}

.footer-logo-link:hover .footer-brand-sub {
  color: var(--white);
}

.footer-tagline {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

/* Sister Company Stylings */
.footer-sister-company {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.footer-sister-company img {
  height: 48px;
  object-fit: contain;
  width: auto;
  transition: var(--transition);
}

.footer-sister-company img:hover {
  transform: scale(1.05);
}

.footer-sister-company .sister-tag {
  display: block;
  font-size: 11px;
  color: var(--green-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-sister-company .sister-name {
  display: block;
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Footer Columns */
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}

.footer-col ul li i {
  color: var(--green-500);
  font-size: 12px;
  flex-shrink: 0;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.footer-col ul a:hover {
  color: var(--green-400);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 24px 0;
  background: rgba(0, 0, 0, 0.15);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--green-400);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--green-600);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--green-700); box-shadow: 0 8px 24px rgba(22, 163, 74, 0.5); transform: translateY(-3px); }

/* TICKER ICON SIZING */
.ticker-track i { font-size: 12px; margin-right: 4px; }
/* Removed [data-aos] — scroll animations handled by .reveal class below */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .careers-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 40px 0 48px; }
}

@media (max-width: 768px) {
  .utility-bar { display: none; }
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .header-secondary { display: none; }
  .brand-tagline { display: none; }
  .brand-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card--large { grid-column: 1; }
  .news-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 40px 24px; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 80%; height: 1px; }
  .stat-item { width: 100%; padding: 16px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { margin-left: 0; }
  .about-badge-card, .about-badge-card--2 { position: static; margin: 12px auto; width: fit-content; box-shadow: var(--shadow-md); }
  .about-visual { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .expertise-list-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .brand-logo-img { height: 38px; }
  .brand-name { font-size: 16px; }
  .brand-divider-inline { font-size: 14px; margin: 0 2px; }
  .brand-sub { font-size: 16px; }
  .brand { margin-left: 0; }
  .brand-logo-link { gap: 6px; }
  .contact-form { padding: 20px; }
}

/* ============================================================
   EXPERTISE & FLEET SECTIONS — Matched to site design system
   ============================================================ */

/* .section padding same as rest of the site sections */
.section { padding: 96px 0; }

/* ---- Gradient accent text (used in headings) ---- */
.grad {
  background: linear-gradient(135deg, var(--green-600), var(--teal-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Expertise section tag (reuses site pill style) ---- */
.exp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  color: var(--green-700);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.exp-tag-dot {
  width: 7px; height: 7px;
  background: var(--green-600);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

/* ---- Expertise section ---- */
.expertise-section { background: var(--slate-50); }

.exp-header {
  max-width: 660px;
  margin-bottom: 52px;
}

/* 13-item list grid — 3 columns, same gap as site grids */
.expertise-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Individual expertise card — same border/radius/shadow language as site cards */
.exp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  text-decoration: none;
  color: var(--slate-800);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.exp-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green-500), var(--teal-500));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  border-radius: 0 2px 2px 0;
}
.exp-card:hover {
  border-color: var(--green-400);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px) scale(1.01);
  background: rgba(34, 197, 94, 0.04);
}
.exp-card:hover::after { transform: scaleY(1); }

/* SVG icon box — same style as site's value-icon */
.exp-icon-wrap {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.exp-card:hover .exp-icon-wrap {
  background: var(--green-100);
  border-color: var(--green-300);
}
.exp-icon-wrap svg { transition: var(--transition); }
.exp-card:hover .exp-icon-wrap svg { transform: scale(1.1); }

/* Numbered badge */
.exp-num {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 4px;
  padding: 2px 6px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  line-height: 1.6;
}

/* Card title */
.exp-title {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
  line-height: 1.45;
  flex: 1;
  transition: color 0.2s ease;
}
.exp-card:hover .exp-title { color: var(--green-800); }

/* Right arrow — same as site's service-cta arrow */
.exp-arrow {
  font-size: 11px;
  color: var(--slate-300);
  flex-shrink: 0;
  transition: var(--transition);
}
.exp-card:hover .exp-arrow {
  color: var(--green-600);
  transform: translateX(3px);
}

/* ============================================================
   FLEET & MACHINERY SECTION
   ============================================================ */

/* Same bg as site's .services section */
.fleet-section { background: var(--white); }

/* Fleet Teaser styles */
.fleet-teaser-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.fleet-teaser-inner .teaser-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--slate-600);
  margin: 16px 0 32px;
}
.fleet-teaser-inner .teaser-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}
@media (max-width: 900px) {
  .fleet-teaser-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .fleet-teaser-inner .teaser-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
}


/* 3-column fleet grid — same gap as services-grid */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

/* Fleet card — merged complete definition */
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--slate-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.fleet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--teal-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.fleet-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--green-200);
}
.fleet-card:hover::before { transform: scaleX(1); }

/* Fleet card media container */
.fleet-card-media {
  position: relative;
  background: var(--slate-50);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  overflow: hidden;
}

.fleet-card-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: 0;
  transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-card-img {
  transform: scale(1.06);
}

.fleet-qty-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green-100);
  color: var(--green-700);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--green-200);
}

.fleet-card-footer {
  margin-top: 16px;
}

/* Fleet card title */
.fleet-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

/* Fleet Tabs */
.fleet-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .fleet-tabs { gap: 8px; }
  .fleet-tab-btn { padding: 8px 16px; font-size: 13px; }
}
.fleet-tab-btn {
  padding: 10px 22px;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  color: var(--slate-600);
  border-radius: 999px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.fleet-tab-btn:hover {
  border-color: rgba(15, 23, 42, 0.3);
  color: #0f172a;
}
.fleet-tab-btn.active {
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.2);
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}



/* Tab filter animation helper */
.fleet-card.hidden {
  display: none !important;
}

/* CTA button wrapper */
.fleet-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

/* Fleet CTA button — pill shape like site uses */
.fleet-btn {
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   REVEAL SCROLL ANIMATION — matches site's [data-aos] style
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — consistent with site's breakpoints
   ============================================================ */
@media (max-width: 1024px) {
  .expertise-list-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .expertise-list-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .exp-header { margin-bottom: 36px; }
}

/* ============================================================
   CLIENTS SUB-PAGE STYLES
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--slate-900) 0%, #0d381c 50%, var(--slate-900) 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  border-bottom: 2px solid var(--green-600);
}
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin: 12px 0 16px;
  line-height: 1.15;
}
.page-hero-desc {
  font-size: 1.05rem;
  color: var(--slate-300);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .page-hero { padding: 72px 0 56px; }
  .page-hero-title { font-size: 2rem; }
  .page-hero-desc { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .page-hero { padding: 56px 0 40px; }
  .page-hero-title { font-size: 1.7rem; }
}

.clients-section {
  background: var(--slate-50);
}
.clients-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.client-logo-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.client-logo-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-400);
  transform: translateY(-4px);
}
.client-logo-inner {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.client-logo-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: grayscale(15%);
  transition: var(--transition);
}
.client-logo-card:hover .client-logo-img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.client-card-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-600);
  transition: var(--transition);
  letter-spacing: -0.01em;
}
.client-logo-card:hover .client-card-name {
  color: var(--green-700);
}

@media (max-width: 1024px) {
  .clients-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .clients-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .news-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .clients-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .client-logo-inner {
    height: 80px;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PROJECTS SUB-PAGE STYLES
   ============================================================ */
.projects-section {
  background: var(--slate-50);
  padding: 80px 0;
}
.projects-filter-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.project-tab-btn, .project-client-btn {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-600);
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.project-tab-btn:hover, .project-client-btn:hover {
  border-color: rgba(15, 23, 42, 0.3);
  color: #0f172a;
  transform: translateY(-1px);
}
.project-tab-btn.active, .project-client-btn.active {
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.2);
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.client-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Projects Cards Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.project-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1a73e8 0%, var(--green-500) 100%);
  opacity: 0;
  transition: var(--transition);
}
.project-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--green-300);
  transform: translateY(-6px) scale(1.01);
}
.project-card:hover::before {
  opacity: 1;
}

/* Card Header */
.project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.project-client-logo {
  height: 46px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-client-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.project-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--green-50);
  color: var(--green-700);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--green-100);
}
.project-badge--infra {
  background: #f0f7ff;
  color: #1a73e8;
  border-color: #dceafe;
}

/* Title and Meta */
.project-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 8px;
}
.project-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 24px;
}
.project-loc i {
  color: var(--green-600);
}

/* Key Statistics Grid */
.project-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  margin-bottom: 20px;
}
.project-stat-item {
  display: flex;
  flex-direction: column;
}
.project-stat-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--slate-800);
  line-height: 1.2;
}
.project-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--slate-500);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Card Footer */
.project-card-footer {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.project-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green-500);
  display: inline-block;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}
.project-status-dot--active {
  background-color: var(--amber-400);
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
  animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* ============================================================
   RESPONSIVE PROJECTS
   ============================================================ */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .projects-section {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .project-card {
    padding: 24px;
  }
  .project-stat-val {
    font-size: 20px;
  }
  .contact-form { padding: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   SERVICES / SECTORS SUB-PAGE STYLES
   ============================================================ */
.services-section {
  padding: 90px 0;
  border-bottom: 1px solid var(--slate-200);
  background: var(--white);
}
/* Alternate sections use a soft slate background */
.services-section.alt-bg {
  background: var(--slate-50);
}
.service-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.service-grid.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
/* On reverse, visual goes left — reorder columns */
.service-grid.reverse .service-visual { order: -1; }
.service-grid.reverse .service-content { order: 1; }

.service-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  /* Aspect ratio with height fallback */
  aspect-ratio: 4 / 3;
  min-height: 320px;
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.service-visual:hover img {
  transform: scale(1.05);
}
.service-visual-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.35) 0%, transparent 55%);
  pointer-events: none;
  border-radius: var(--radius-lg);
}

/* Service content badge — does NOT conflict with old .service-badge */
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-100);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  position: static; /* Override any inherited absolute positioning */
}
.service-content .service-badge {
  position: static;
  top: auto;
  left: auto;
  background: var(--green-50);
  color: var(--green-700);
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--slate-800);
  margin-bottom: 14px;
  line-height: 1.15;
}
.service-desc {
  color: var(--slate-600);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.service-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-bottom: 28px;
}
.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate-700);
  font-size: 0.91rem;
  line-height: 1.45;
}
.service-feature-item i {
  color: var(--green-600);
  margin-top: 3px;
  font-size: 13px;
  flex-shrink: 0;
}
.service-stats {
  display: flex;
  gap: 28px;
  padding-top: 22px;
  border-top: 1.5px solid var(--slate-200);
  margin-top: 4px;
  flex-wrap: wrap;
}
.service-stat-item {
  display: flex;
  flex-direction: column;
  min-width: 100px;
}
.service-stat-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--green-600);
  line-height: 1.2;
  white-space: nowrap;
}
.service-stat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ============================================================
   RESPONSIVE — Services Sections
   ============================================================ */
@media (max-width: 1024px) {
  .service-grid,
  .service-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Always put image on top on tablet/mobile */
  .service-visual {
    order: -1 !important;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
  .service-content {
    order: 1 !important;
  }
}
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  .service-features-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .service-stats {
    gap: 20px;
  }
  .service-stat-num {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .service-title {
    font-size: 1.6rem;
  }
  .services-section {
    padding: 48px 0;
  }
}

/* Custom contact SVG icons */
.contact-svg {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

/* ============================================================
   PROJECT GALLERY PAGE STYLES
   ============================================================ */
.gallery-section {
  background: var(--slate-50);
  padding: 80px 0 96px;
}
.gallery-filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.gallery-tab-btn {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  color: var(--slate-600);
  padding: 8px 20px;
  border-radius: 999px;
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}
.gallery-tab-btn:hover {
  border-color: rgba(15, 23, 42, 0.3);
  color: #0f172a;
}
.gallery-tab-btn.active {
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.2);
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  background: var(--slate-900);
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-card.hidden {
  display: none !important;
}

.gallery-img-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}
.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}
.gallery-card:hover .gallery-img-wrapper img {
  transform: scale(1.05);
}

.gallery-hover-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(10, 45, 22, 0.92) 0%, rgba(10, 45, 22, 0.3) 70%, transparent 100%);
  opacity: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-md);
}
.gallery-card:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  flex: 1;
  text-align: left;
  transform: translateY(8px);
  transition: transform 0.3s ease;
  padding-right: 12px;
}
.gallery-card:hover .gallery-overlay-content {
  transform: translateY(0);
}

.gallery-card-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-400);
  margin-bottom: 2px;
  display: inline-block;
}
.gallery-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.gallery-zoom-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  transform: translateY(8px);
  flex-shrink: 0;
}
.gallery-card:hover .gallery-zoom-icon {
  transform: translateY(0);
}
.gallery-zoom-icon:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  transform: scale(1.08) !important;
}

/* ============================================================
   LIGHTBOX MODAL STYLES
   ============================================================ */
.lightbox-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 100001;
  outline: none;
}
.lightbox-close:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 54px; height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  z-index: 100001;
  outline: none;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  transform: translateY(-50%) scale(1.08);
}
.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-content {
  max-width: 840px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: lightbox-scale 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes lightbox-scale {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-img-container {
  width: auto;
  max-width: 90vw;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.4);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
}
.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.lightbox-caption-box {
  text-align: center;
  margin-top: 20px;
  max-width: 580px;
  color: var(--white);
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.lightbox-category {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-400);
  display: inline-block;
  margin-bottom: 6px;
}
.lightbox-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}
.lightbox-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   RESPONSIVE — GALLERY
   ============================================================ */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
}
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }
  .gallery-grid {
    gap: 20px;
  }
  .lightbox-modal {
    padding: 24px;
  }
  .lightbox-prev, .lightbox-next {
    width: 44px; height: 44px;
    font-size: 14px;
  }
  .lightbox-close {
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    font-size: 26px;
  }
  .lightbox-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .lightbox-prev, .lightbox-next {
    display: none !important; /* Hide arrows on small screens, use swipe or taps */
  }
  .lightbox-caption-box {
    margin-top: 16px;
    padding: 12px 18px;
  }
  .lightbox-title {
    font-size: 1.15rem;
  }
}

/* ============================================================
   UTILITY BAR ACTIVE LINK
   ============================================================ */
.utility-links a.active {
  color: var(--green-400);
  font-weight: 600;
}


/* ============================================================
   SUPPLIER PORTAL SECTION
   ============================================================ */
.supplier-section {
  background: var(--slate-50);
  padding: 96px 0;
  border-top: 1px solid var(--slate-200);
}
.supplier-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.supplier-info .section-title { margin-bottom: 14px; }
.supplier-info p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.75;
  margin-bottom: 24px;
}
.supplier-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.supplier-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate-700);
  font-weight: 500;
}
.supplier-benefits li i {
  color: var(--green-600);
  font-size: 15px;
  flex-shrink: 0;
}
.supplier-form {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.supplier-form .form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 6px;
}
.supplier-form .form-subtitle {
  font-size: 0.84rem;
  color: var(--slate-500);
  margin-bottom: 24px;
  line-height: 1.4;
}
.supplier-form .form-group {
  margin-bottom: 16px;
}
.supplier-form .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.supplier-form .form-group input,
.supplier-form .form-group select,
.supplier-form .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--slate-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  box-sizing: border-box;
}
.supplier-form .form-group input:focus,
.supplier-form .form-group select:focus,
.supplier-form .form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}
.supplier-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.supplier-form .form-success {
  display: none;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.25);
  color: var(--green-700);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 500;
  align-items: center;
  gap: 8px;
}
@media (max-width: 900px) {
  .supplier-inner { grid-template-columns: 1fr; gap: 40px; }
  .supplier-form .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 576px) {
  .supplier-form { padding: 24px; }
  .supplier-section { padding: 64px 0; }
}
@media (max-width: 420px) {
  .supplier-form { padding: 18px; }
}
/* Active link in mobile drawer — current page indicator */
.mobile-nav-link.mob-active {
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  border-left-color: #0f172a;
  font-weight: 700;
}
.mobile-nav-link.mob-active .mob-icon {
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}
.mobile-nav-link.mob-active .mob-arrow {
  color: #0f172a;
}

/* Scrollable drawer on very small screens */
@media (max-height: 600px) {
  .mobile-menu.open {
    max-height: 80vh;
    overflow-y: auto;
  }
}

/* Widescreen Footer Layout */
@media (min-width: 1200px) {
  .footer-top .container, .footer-bottom .container {
    max-width: 1440px;
    width: 92%;
  }
}

/* Achievements Card Micro-animations */
.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}
.achievement-card:hover .achievement-img-wrapper img {
  transform: scale(1.04);
}

/* Leadership Message Section */
.leadership-section {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--slate-200);
}
.leadership-header {
  margin-bottom: 48px;
  border-left: 4px solid var(--green-600);
  padding-left: 16px;
}
.leadership-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--slate-900);
  margin: 0;
  letter-spacing: -0.01em;
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.leadership-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--slate-50);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  transition: var(--transition);
}
.leadership-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
}
.leadership-photo-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.leadership-card img {
  width: 140px;
  height: 165px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--white);
  transition: transform 0.3s ease;
}
.leadership-card:hover img {
  transform: scale(1.02);
}
.leadership-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-700);
  background: var(--slate-100);
  border: 1px solid var(--slate-300);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.leadership-upload-btn:hover {
  background: #1e40af;
  color: #ffffff;
  border-color: #1e40af;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.25);
}
.leadership-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e40af; /* Adani Blue */
  margin-bottom: 6px;
}
.leadership-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-500);
  margin-bottom: 2px;
}
.leadership-company {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-400);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.leadership-quote {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

@media (max-width: 991px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 480px) {
  .leadership-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .leadership-card img {
    width: 120px;
    height: 140px;
    margin-bottom: 16px;
  }
}
