/* =====================================================
   SWAPNROOP PHARMA — PREMIUM REDESIGN
   Color Palette: Deep Navy + Champagne Gold + White
   Fonts: Playfair Display (headings) + DM Sans (body)
   ===================================================== */

/* ---- RESET & ROOT ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core Colors */
  --navy: #0a0f1e;
  --navy-2: #0f1629;
  --navy-3: #141d35;
  --navy-light: #1c2a50;

  /* Accent Colors */
  --gold: #c9a84c;
  --gold-light: #e8c96f;
  --gold-pale: #f5e6b8;
  --white: #ffffff;

  /* Text */
  --text: #e8eaf0;
  --text-muted: #8892aa;
  --text-light: #c5ccd8;

  /* UI */
  --border: rgba(201, 168, 76, 0.15);
  --glass: rgba(255, 255, 255, 0.04);
  --card-bg: rgba(15, 22, 41, 0.8);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #c9a84c, #e8c96f);
  --grad-navy: linear-gradient(135deg, #0a0f1e, #141d35);
  --grad-glow: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.02));

  /* Shadows */
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.2);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);

  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Mode Variables */
html.light-mode {
  --navy: #f4f6fb;
  --navy-2: #eaecf5;
  --navy-3: #ffffff;
  --navy-light: #dde1ef;
  --text: #0a0f1e;
  --text-muted: #556080;
  --text-light: #3a4567;
  --card-bg: rgba(255, 255, 255, 0.9);
  --glass: rgba(0, 0, 0, 0.03);
  --border: rgba(201, 168, 76, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  transition: background 0.4s, color 0.4s;
}

/* Ambient glow background */
body::before {
  content: '';
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  z-index: 0;
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
}

em {
  font-style: italic;
  color: var(--gold);
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}


/* ======================================================
   NAVBAR
   ====================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6%;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 9999;
  transition: var(--transition);
}

html.light-mode .navbar {
  background: rgba(244, 246, 251, 0.9);
}

.navbar.scrolled {
  padding: 10px 6%;
  background: rgba(10, 15, 30, 0.95);
  box-shadow: var(--shadow-deep);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo {
  height: 44px;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.3));
}

/* Desktop Nav */
nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-trigger .fa-chevron-down {
  transition: transform 0.3s;
  font-size: 10px;
}

.dropdown:hover .dropdown-trigger .fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 200px;
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
  box-shadow: var(--shadow-deep);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-light);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--grad-glow);
  color: var(--gold);
}

.dropdown-menu a i {
  width: 16px;
  color: var(--gold);
  opacity: 0.7;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 100001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.close-btn {
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 22px;
  color: var(--gold);
  cursor: pointer;
  background: rgba(201, 168, 76, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

/* Theme Toggle */
.theme-toggle {
  cursor: pointer;
}

.toggle-track {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 3px;
  transition: var(--transition);
}

.toggle-thumb {
  width: 20px;
  height: 20px;
  background: var(--grad-gold);
  border-radius: 50%;
  position: absolute;
  left: 4px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

#themeToggle {
  display: none;
}

#themeToggle:checked+.toggle-track .toggle-thumb {
  left: 28px;
}

.icon {
  position: absolute;
  font-size: 11px;
}

.sun {
  left: 6px;
}

.moon {
  right: 5px;
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.8);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(10, 15, 30, 0.85) 0%,
      rgba(10, 15, 30, 0.4) 55%,
      transparent 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 640px;
  z-index: 3;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.2s both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.line-reveal {
  display: block;
  overflow: hidden;
  animation: lineReveal 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.line-reveal:nth-child(1) {
  animation-delay: 0.3s;
}

.line-reveal:nth-child(2) {
  animation-delay: 0.5s;
}

.line-reveal:nth-child(3) {
  animation-delay: 0.7s;
}

.line-reveal.gold {
  color: var(--gold-light);
}

@keyframes lineReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.9s both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 1.1s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ======================================================
   BUTTONS
   ====================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  transition: var(--transition);
}

.btn-outline-dark:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-sm.outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--border);
}

.btn-sm.outline:hover {
  background: var(--grad-glow);
}

/* ======================================================
   SECTION COMMON
   ====================================================== */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* Fade In on Scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   STATS BAR
   ====================================================== */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 36px 8%;
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.stat-item {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 12px 24px;
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ======================================================
   ABOUT SECTION
   ====================================================== */
.about-section {
  padding: 100px 8%;
  position: relative;
  z-index: 1;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text .section-heading {
  margin-bottom: 24px;
}

.about-lead {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-glow);
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
}

.tag i {
  color: var(--gold);
}

.img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10, 15, 30, 0.6) 100%);
  z-index: 1;
}

.img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: var(--grad-gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
}

.img-badge i {
  font-size: 22px;
}

/* ======================================================
   PRODUCTS SECTION
   ====================================================== */
.products-section {
  padding: 100px 0;
  background: var(--navy-2);
  position: relative;
  z-index: 1;
}

.products-section .section-header {
  padding: 0 8%;
}

.products-cta {
  text-align: center;
  margin-top: 48px;
}

.scroll-container {
  overflow: hidden;
  width: 100%;
}

.scroll-track {
  display: flex;
  gap: 24px;
  padding: 20px 8% 30px;
  width: max-content;
  animation: scrollAuto 35s linear infinite;
}

.scroll-track:hover {
  animation-play-state: paused;
}

@keyframes scrollAuto {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.card {
  flex: 0 0 300px;
  width: 300px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}

.card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--grad-gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 6px;
}

.card-body p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card-actions {
  display: flex;
  gap: 10px;
}

/* ======================================================
   WHY CHOOSE US
   ====================================================== */
.why-section {
  padding: 100px 8%;
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: var(--shadow-gold);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--grad-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--gold);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--grad-gold);
  color: var(--navy);
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ======================================================
   MAP SECTION
   ====================================================== */
.map-section {
  padding: 80px 8%;
  background: var(--navy-2);
  text-align: center;
  position: relative;
  z-index: 1;
}

.map-header {
  margin-bottom: 48px;
}

.map-header p {
  color: var(--text-muted);
}

.map-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 20px;
  background: var(--card-bg);
}

.map-bg {
  width: 100%;
  opacity: 0.25;
  filter: sepia(0.3) hue-rotate(200deg);
}

.point {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  animation: pulse 2s infinite;
  cursor: pointer;
}

.point::before {
  content: attr(data-label);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-2);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: 0.2s;
}

.point:hover::before {
  opacity: 1;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(201, 168, 76, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

.india {
  top: 46%;
  left: 61%;
}

.usa {
  top: 34%;
  left: 18%;
}

.europe {
  top: 28%;
  left: 48%;
}

.brazil {
  top: 65%;
  left: 30%;
}

.africa {
  top: 52%;
  left: 46%;
}

/* ======================================================
   CLIENTS / VENDORS
   ====================================================== */
.clients-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.vendors {
  background: var(--navy-2);
}

.clients-section .section-header {
  padding: 0 8%;
}

.clients-wrapper {
  overflow: hidden;
  position: relative;
}

.clients-wrapper::before,
.clients-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.clients-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

.clients-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}

.vendors .clients-wrapper::before {
  background: linear-gradient(to right, var(--navy-2), transparent);
}

.vendors .clients-wrapper::after {
  background: linear-gradient(to left, var(--navy-2), transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
  padding: 20px 0;
}

.clients-track.reverse {
  animation-direction: reverse;
}

.clients-track img {
  height: 50px;
  width: auto;
  filter: grayscale(1) opacity(0.5);
  transition: var(--transition);
  object-fit: contain;
}

.clients-track img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ======================================================
   CERTIFICATIONS
   ====================================================== */
.cert-section {
  padding: 80px 0;
  background: var(--navy-2);
  position: relative;
  z-index: 1;
}

.cert-section .section-header {
  padding: 0 8%;
}

.cert-wrapper {
  overflow: hidden;
}

.cert-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee 25s linear infinite;
  padding: 20px 24px;
}
/* ===== CERTIFICATE IMAGES SIZE FIX ===== */
.cert-track img {
  height: 240px;
  width: auto;
  object-fit: contain;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
}

.cert-track img:hover {
  transform: scale(1.1);
}

/* ======================================================
   BLOG SECTION
   ====================================================== */
.blog-section {
  padding: 100px 8%;
  position: relative;
  z-index: 1;
}

.blog-cta {
  text-align: center;
  margin-top: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: var(--shadow-gold);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--text);
  padding: 16px 20px 8px;
  line-height: 1.5;
}

.blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 0 20px 20px;
  transition: var(--transition);
}

.blog-card a:hover {
  gap: 10px;
}

/* ======================================================
   SEO SECTION
   ====================================================== */
.seo-section {
  padding: 60px 8%;
  background: var(--navy-2);
  position: relative;
  z-index: 1;
}

.seo-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  transition: var(--transition);
}

.seo-box:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.seo-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold);
  margin: 24px 0 12px;
}

.seo-box h2:first-child {
  margin-top: 0;
}

.seo-box p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 12px;
}

.seo-box ul {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.seo-box ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.seo-box ul li:last-child {
  border-bottom: none;
}

.seo-box ul li i {
  color: var(--gold);
}

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding-top: 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06), transparent 70%);
  pointer-events: none;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8% 64px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.brand-col p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
}

.social:hover {
  background: var(--grad-gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-item i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: var(--grad-gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 50px;
  transition: var(--transition);
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-tagline {
  font-style: italic;
  color: var(--gold);
  opacity: 0.7;
}

/* ======================================================
   LIGHT MODE OVERRIDES
   ====================================================== */
html.light-mode body {
  background: var(--navy);
  color: var(--text);
}

html.light-mode .navbar {
  border-bottom-color: rgba(201, 168, 76, 0.2);
}

html.light-mode .card,
html.light-mode .why-card,
html.light-mode .seo-box,
html.light-mode .blog-card {
  background: rgba(255, 255, 255, 0.9);
}

html.light-mode .footer {
  background: #edf0f8;
}

html.light-mode .footer-bottom {
  background: #e2e6f2;
}

html.light-mode .stat-label,
html.light-mode .text-muted {
  color: var(--text-muted);
}

html.light-mode .clients-wrapper::before {
  background: linear-gradient(to right, var(--navy), transparent);
}

html.light-mode .clients-wrapper::after {
  background: linear-gradient(to left, var(--navy), transparent);
}

html.light-mode .vendors .clients-wrapper::before {
  background: linear-gradient(to right, var(--navy-2), transparent);
}

html.light-mode .vendors .clients-wrapper::after {
  background: linear-gradient(to left, var(--navy-2), transparent);
}

html.light-mode .scroll-indicator {
  color: rgba(10, 15, 30, 0.4);
}

html.light-mode .toggle-track {
  background: #dde1ef;
}

html.light-mode nav a {
  color: var(--text-light);
}

/* ======================================================
   RESPONSIVE — TABLET
   ====================================================== */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .img-frame img {
    height: 360px;
  }
}

/* ======================================================
   RESPONSIVE — MOBILE
   ====================================================== */
@media (max-width: 768px) {

  /* Navbar Mobile */
  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--navy-2);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 99999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid var(--border);
  }

  nav.active {
    left: 0;
  }

  .nav-link {
    font-size: 18px;
    padding: 12px 24px;
  }

  .menu-toggle {
    display: flex;
  }

  .close-btn {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  /* Hero */
  .hero {
    height: 100svh;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 42px);
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .scroll-indicator {
    display: none;
  }

  /* Stats */
  .stats-bar {
    gap: 0;
    padding: 24px 5%;
  }

  .stat-item {
    min-width: 50%;
    padding: 12px;
  }

  .stat-divider {
    display: none;
  }

  /* About */
  .about-section {
    padding: 60px 5%;
  }

  .img-frame img {
    height: 260px;
  }

  /* Products */
  .products-section {
    padding: 60px 0;
  }

  .scroll-track {
    padding: 10px 5% 20px;
    gap: 16px;
  }

  .card {
    flex: 0 0 260px;
  }

  /* Why */
  .why-section {
    padding: 60px 5%;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Map */
  .map-section {
    padding: 60px 5%;
  }

  /* Clients */
  .clients-section {
    padding: 60px 0;
  }

  /* Blog */
  .blog-section {
    padding: 60px 5%;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 5% 48px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Section headings */
  .section-heading {
    font-size: clamp(24px, 6vw, 34px);
  }
}
/* ===== REMOVE CLIENTS & VENDORS FADE COMPLETELY ===== */
.clients-wrapper::before,
.clients-wrapper::after {
  content: none !important;
  display: none !important;
}
html.light-mode .clients-wrapper::before,
html.light-mode .clients-wrapper::after,
html.light-mode .vendors .clients-wrapper::before,
html.light-mode .vendors .clients-wrapper::after {
  display: none !important;
}
/* ===== NAVBAR SEARCH ===== */
.nav-search {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search input {
  width: 180px;
  padding: 8px 35px 8px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text);
  font-size: 13px;
  outline: none;
  transition: 0.3s;
}

/* Focus Effect */
.nav-search input:focus {
  width: 220px;
  border-color: var(--gold);
}

/* Search Icon */
.nav-search i {
  position: absolute;
  right: 10px;
  font-size: 12px;
  color: var(--gold);
  pointer-events: none;
}

/* 🔥 MOBILE SAFE (NO CHANGE IN STRUCTURE) */
@media (max-width: 768px) {
  .nav-search {
    display: none;
  }
}
/* ======================================================
   ABOUT PAGE (MATCHING PREMIUM UI)
   ====================================================== */

.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 120px 8% 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* TEXT CONTENT */
.about-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.7;
}

/* HIGHLIGHT TEXT */
.about-content .highlight {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 20px;
}

/* COMMIT TEXT */
.about-content .commit {
  margin-top: 20px;
  font-weight: 500;
  color: var(--gold-light);
}

/* LIST BOX */
.about-list {
  margin-top: 28px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.about-list:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-gold);
}

.about-list h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 18px;
}

.about-list ul {
  list-style: none;
}

.about-list ul li {
  padding: 6px 0;
  color: var(--text-light);
  font-size: 14px;
}

/* IMAGE SECTION */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-deep);
}

/* SECOND IMAGE STACK */
.about-image .second-img {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 60%;
  border-radius: 16px;
  border: 3px solid var(--navy);
}

/* ===== LIGHT MODE ===== */
html.light-mode .about-list {
  background: rgba(255,255,255,0.9);
}

/* ======================================================
   RESPONSIVE — TABLET
   ====================================================== */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-image .second-img {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    margin-top: 12px;
  }
}

/* ======================================================
   RESPONSIVE — MOBILE
   ====================================================== */
@media (max-width: 768px) {
  .about-container {
    padding: 100px 5% 60px;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-list {
    padding: 16px;
  }
}
/* ======================================================
   🔥 GLOBAL PAGE HERO (ALL PAGES TOP)
   ====================================================== */
.page-hero {
  padding: 140px 8% 80px;
  text-align: center;
  background: var(--grad-navy);
  position: relative;
}

.page-hero h1 {
  font-size: clamp(30px,5vw,48px);
  color: var(--gold);
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: auto;
}

/* ======================================================
   🏆 AWARDS PAGE (CURASOL)
   ====================================================== */
.curasol-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.curasol-left {
  padding: 140px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.curasol-left h1 {
  font-size: clamp(32px,5vw,54px);
  color: var(--gold);
  margin-bottom: 20px;
}

.curasol-left p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.curasol-btn {
  background: var(--grad-gold);
  color: var(--navy);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  width: fit-content;
}

.curasol-right {
  overflow: hidden;
  position: relative;
}

.curasol-right .scroll-track {
  display: flex;
  gap: 20px;
  animation: scroll 25s linear infinite;
}

.curasol-right img {
  height: 320px;
  border-radius: 16px;
  object-fit: cover;
}

/* ======================================================
   📝 BLOG PAGE (LIST)
   ====================================================== */
.hblogs {
  text-align: center;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 40px;
}

.blog-grid {
  gap: 24px;
}

.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.blog-card img {
  height: 220px;
}

/* ======================================================
   📖 BLOG INNER PAGE
   ====================================================== */
/* ======================================================
   🚀 BLOG PAGE — PREMIUM UI
   ====================================================== */

/* ===== HERO ===== */
.blog-hero {
  padding: 130px 8% 60px;
  text-align: center;
  background: var(--grad-navy);
}

.blog-hero h1 {
  font-size: clamp(32px,5vw,48px);
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: auto;
}

/* ===== SECTION TITLE ===== */
.hblogs {
  text-align: center;
  font-size: 34px;
  color: var(--gold);
  margin: 40px 0 20px;
}

/* ===== FEATURED GRID ===== */
/* ===== BLOG GRID (FORCE 4 CARDS IN ONE ROW) ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🔥 4 FIXED CARDS */
  gap: 24px;
  padding: 20px 8% 60px;
}

/* CARD HEIGHT CONSISTENT */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT FIX */
.blog-card h3 {
  flex-grow: 1;
}

/* ===== BLOG CARD ===== */
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

/* HOVER EFFECT 🔥 */
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,168,76,0.4);
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.5s;
}

.blog-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.blog-card h3 {
  font-size: 16px;
  padding: 16px 18px 8px;
  color: var(--text);
  line-height: 1.5;
}

.blog-card p {
  font-size: 13px;
  color: var(--text-muted);
  padding: 0 18px 10px;
}

/* READ MORE */
.blog-card a {
  display: inline-block;
  margin: 10px 18px 18px;
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  transition: 0.3s;
}

.blog-card a:hover {
  letter-spacing: 1px;
}

/* ===== LATEST BLOG (BIG CARD FIX) ===== */
.blog-featured {
  padding: 40px 8%;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.blog-featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-content h2 {
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-featured-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.blog-featured-content a {
  color: var(--gold);
  font-weight: 600;
}

/* ======================================================
   📱 RESPONSIVE
   ====================================================== */

/* TABLET */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .blog-hero {
    padding: 110px 5% 40px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    padding: 20px 5% 40px;
  }

  .blog-card img {
    height: 180px;
  }

  .blog-featured {
    padding: 20px 5%;
  }

  .blog-featured-content {
    padding: 20px;
  }

  .hblogs {
    font-size: 26px;
  }
}

/* ======================================================
   👨‍💼 CEO PAGE
   ====================================================== */
.ceo-name {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 22px;
}

/* ======================================================
   💼 CAREER PAGE
   ====================================================== */
/* ======================================================
   🚀 CAREER PAGE — PREMIUM UI (MATCH INDEX)
   ====================================================== */

/* HERO */
.product-hero {
  padding: 130px 8% 60px;
  text-align: center;
  background: var(--grad-navy);
}

.product-hero h1 {
  font-size: clamp(30px,5vw,46px);
  color: var(--gold);
}

.product-hero p {
  color: var(--text-muted);
}

/* WHY SECTION */
.why-premium {
  padding: 80px 8%;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 50px;
}

/* GRID */
.why-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

/* LEFT CONTENT */
.why-left h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.why-left p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.why-highlights div {
  margin: 8px 0;
  color: var(--text-light);
}

/* RIGHT STATS */
.why-right {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.stat-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.stat-card h3 {
  font-size: 32px;
  color: var(--gold);
}

/* JOB CARDS */
.products {
  padding: 80px 8%;
}

.products h2 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 40px;
}

/* FORM SECTION */
.apply-section {
  padding: 80px 8%;
  text-align: center;
}

.apply-section h2 {
  color: var(--gold);
  margin-bottom: 10px;
}

.apply-section p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* FORM */
.career-form {
  max-width: 700px;
  margin: auto;
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row input,
.form-row select {
  flex: 1;
}

.form-group {
  margin-bottom: 15px;
}

.career-form input,
.career-form textarea,
.career-form select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text);
}

.submit-btn {
  background: var(--grad-gold);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 10px;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: scale(1.05);
}

/* ======================================================
   📱 RESPONSIVE
   ====================================================== */

@media (max-width: 1024px) {
  .why-container {
    grid-template-columns: 1fr;
  }

  .why-right {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 768px) {

  .product-hero {
    padding: 100px 5% 40px;
  }

  .why-premium,
  .products,
  .apply-section {
    padding: 60px 5%;
  }

  .form-row {
    flex-direction: column;
  }

  .why-right {
    grid-template-columns: 1fr;
  }
}
/* ======================================================
   📦 PRODUCTS PAGE
   ====================================================== */
/* ======================================================
   🚀 PRODUCT PAGE — PREMIUM FIXED UI
   ====================================================== */

/* HERO */
.product-hero {
  padding: 120px 8% 40px;
  text-align: center;
}

.product-hero h1 {
  font-size: clamp(28px,4vw,42px);
  color: var(--gold);
}

.product-hero p {
  color: var(--text-muted);
}

/* SEARCH BAR */
.filter-bar {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.search-box {
  position: relative;
  width: 320px;
}

.search-box input {
  width: 100%;
  padding: 12px 40px 12px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text);
  outline: none;
}

.search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
}

/* CATEGORY BUTTONS */
.categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.cat {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: 0.3s;
}

.cat.active,
.cat:hover {
  background: var(--grad-gold);
  color: var(--navy);
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px 8% 60px;
}

/* CARD */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

/* IMAGE FIX (IMPORTANT 🔥) */
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain; /* FIXES STRETCH ISSUE */
  background: #fff;
  padding: 10px;
}

/* CONTENT */
.product-info {
  padding: 16px;
}

.product-info h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text);
}

.product-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* BUTTONS */
.product-btns {
  display: flex;
  gap: 10px;
}

.view-btn,
.enquire-btn {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

/* VIEW */
.view-btn {
  border: 1px solid var(--border);
  color: var(--text);
}

.view-btn:hover {
  background: var(--glass);
}

/* ENQUIRE */
.enquire-btn {
  background: var(--grad-gold);
  color: var(--navy);
}

.enquire-btn:hover {
  transform: scale(1.05);
}

/* ======================================================
   📱 RESPONSIVE
   ====================================================== */

/* TABLET */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .search-box {
    width: 90%;
  }

  .product-card img {
    height: 160px;
  }
}
/* ======================================================
   📞 CONTACT PAGE
   ====================================================== */
.contact-cards-premium {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  padding: 120px 8% 40px;
}

.contact-card {
  background: var(--card-bg);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
}

.contact-form-premium {
  padding: 40px 8%;
}

.career-form input,
.career-form textarea {
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text);
}

.submit-btn {
  background: var(--grad-gold);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 50px;
}

/* ======================================================
   🎤 TESTIMONIALS
   ====================================================== */
.t-card {
  background: var(--card-bg);
  border-radius: var(--radius);
}

/* ======================================================
   🌍 EXHIBITIONS
   ====================================================== */
.expo-hero {
  position: relative;
  height: 100vh;
}

.expo-slide img {
  filter: brightness(0.6);
}

.expo-text {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
}

.expo-text h1 {
  color: var(--gold);
}

/* ======================================================
   📱 RESPONSIVE (ALL PAGES)
   ====================================================== */
@media (max-width: 1024px) {

  .curasol-hero-split,
  .why-container {
    grid-template-columns: 1fr;
  }

  .contact-cards-premium {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .contact-cards-premium {
    grid-template-columns: 1fr;
  }

  .curasol-left {
    padding: 100px 5%;
  }

  .product-hero {
    padding: 100px 5%;
  }

  .blog-container {
    margin-top: 100px;
  }

  .curasol-right img {
    height: 220px;
  }
}
/* ======================================================
   🚀 CONTACT PAGE — PREMIUM UI
   ====================================================== */

/* HERO */
.contact-hero {
  padding: 130px 8% 60px;
  text-align: center;
  background: var(--grad-navy);
}

.contact-hero h1 {
  font-size: clamp(30px,5vw,46px);
  color: var(--gold);
}

.contact-hero p {
  color: var(--text-muted);
}

/* CONTACT CARDS */
.contact-cards-premium {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  padding: 60px 8%;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.contact-card h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

/* FORM SECTION */
.contact-form-premium {
  padding: 60px 8%;
}

.career-form {
  max-width: 800px;
  margin: auto;
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.career-form input,
.career-form textarea,
.career-form select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text);
}

.submit-btn {
  background: var(--grad-gold);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 50px;
  margin-top: 10px;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: scale(1.05);
}

/* MAP */
.form-box {
  padding: 60px 8%;
}

.map {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  border: none;
}

/* FAQ */
.faq {
  padding: 60px 8%;
  max-width: 900px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: var(--text);
  font-weight: 500;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  transition: 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 14px;
  border-radius: 50%;
  color: #fff;
}

/* ======================================================
   📱 RESPONSIVE
   ====================================================== */

@media (max-width: 1024px) {
  .contact-cards-premium {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 768px) {

  .contact-cards-premium {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-hero {
    padding: 100px 5% 40px;
  }

  .contact-form-premium,
  .faq,
  .form-box {
    padding: 40px 5%;
  }
}
/* ======================================================
   🚀 EXHIBITIONS PAGE — PREMIUM HERO SLIDER
   ====================================================== */

.expo-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* CAROUSEL */
.expo-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

/* SLIDES */
.expo-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.expo-slide.active {
  opacity: 1;
  z-index: 2;
}

/* IMAGE */
.expo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

/* OVERLAY TEXT */
.expo-text {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
  z-index: 3;
}

.expo-text h1 {
  font-size: clamp(32px,5vw,52px);
  color: var(--gold);
  margin-bottom: 10px;
}

.expo-text p {
  font-size: 16px;
  color: #ddd;
}

/* OPTIONAL GRADIENT OVERLAY */
.expo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,23,42,0.8), transparent);
  z-index: 1;
}

/* ======================================================
   📱 RESPONSIVE
   ====================================================== */

@media (max-width: 768px) {

  .expo-text {
    left: 5%;
    right: 5%;
    text-align: center;
  }

  .expo-text h1 {
    font-size: 26px;
  }

  .expo-text p {
    font-size: 14px;
  }
}
/* ======================================================
   🚀 TESTIMONIAL PAGE — PREMIUM UI (MATCH INDEX)
   ====================================================== */

/* SECTION */
.reviews {
  padding: 80px 8%;
  text-align: center;
}

.reviews h2 {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 30px;
}

/* GLASS CARD */
.glass {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

/* =========================
   ⭐ RATING BOX
========================= */
#ratingValue {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
}

.rating-box {
  max-width: 500px;
  margin: auto;
}

.bar {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  margin: 10px 0;
  overflow: hidden;
}

.bar-fill {
  background: var(--grad-gold);
  padding: 6px;
  font-size: 12px;
  color: var(--navy);
  border-radius: 10px;
  width: 0;
  transition: 1s ease;
}

/* =========================
   🎯 SLIDER
========================= */
.slider-wrap {
  overflow: hidden;
  margin-top: 40px;
}

.slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

/* SMOOTH LOOP */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* CARD */
.t-card {
  min-width: 280px;
  padding: 22px;
  text-align: left;
  transition: 0.4s;
}

.t-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.t-card h4 {
  color: var(--gold);
  font-size: 14px;
}

/* HOVER EFFECT */
.t-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

/* HIGHLIGHT */
.highlight {
  color: var(--gold);
  font-weight: 600;
}

/* ======================================================
   📱 RESPONSIVE
   ====================================================== */

@media (max-width: 768px) {

  .reviews {
    padding: 60px 5%;
  }

  .t-card {
    min-width: 240px;
  }

  .reviews h2 {
    font-size: 24px;
  }
}
.contact-cards-premium {
  margin-top: clamp(60px, 8vw, 100px);
}
/* ======================================================
   🚀 PRODUCT DETAIL PAGE — UNIVERSAL PREMIUM UI
   ====================================================== */

/* SECTION */
.product-detail {
  padding: 80px 8%;
}

/* CONTAINER */
.product-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT SIDE */
.left-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* IMAGE */
.product-image {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
}

.product-image img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

/* SPEC BOX */
.specs-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.specs-box h2 {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 18px;
}

.spec-item {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text-light);
}

/* TABLE */
.spec-table {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

.spec-table h2 {
  color: var(--gold);
  margin-bottom: 10px;
}

.spec-table table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.spec-table th {
  color: var(--gold);
  text-align: left;
}

/* RIGHT SIDE */
.product-content h1 {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--text);
}

.product-content h2 {
  color: var(--gold);
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 18px;
}

.product-content h3 {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 10px;
}

.product-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* LISTS */
.feature-list,
.app-list,
.why-list {
  padding-left: 18px;
}

.feature-list li,
.app-list li,
.why-list li {
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--text-light);
}

/* CTA BUTTON */
.enquire-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--grad-gold);
  color: var(--navy);
  font-weight: 600;
  transition: 0.3s;
}

.enquire-btn:hover {
  transform: scale(1.05);
}

/* SEO CONTENT */
.seo-content {
  padding: 60px 8%;
}

.seo-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
}

.seo-box h2 {
  color: var(--gold);
  margin-top: 20px;
}

.seo-box p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ======================================================
   📱 RESPONSIVE
   ====================================================== */

@media (max-width: 1024px) {
  .product-container {
    grid-template-columns: 1fr;
  }

  .product-image img {
    height: 220px;
  }
}

@media (max-width: 768px) {

  .product-detail {
    padding: 60px 5%;
  }

  .seo-content {
    padding: 40px 5%;
  }

  .product-content h1 {
    font-size: 22px;
  }

  .spec-item {
    font-size: 13px;
  }

  .product-image img {
    height: 200px;
  }
}