/* AMRUT-SAKSHAM Main Core Stylesheet */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* 1. Global Custom Variables */
/* :root {
  --primary-color: #005BAC;
  --primary-rgb: 0, 91, 172;
  --secondary-color: #009688;
  --secondary-rgb: 0, 150, 136;
  --accent-color: #F4B400;
  --background-color: #F8FAFC;
  --text-color: #1F2937;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 91, 172, 0.08), 0 4px 6px -2px rgba(0, 91, 172, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 91, 172, 0.12), 0 10px 10px -5px rgba(0, 91, 172, 0.06);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
} */

/* 1. Global Custom Variables */
:root {

  /* Brand Colors */
  --background-color: #FFF7ED;
  --primary-color: #D36D2B;
  --primary-rgb: 211, 109, 43;

  --secondary-color: #DC772E;
  --secondary-rgb: 220, 119, 46;

  --accent-color: #F28958;
  --cta-color: #C8490B;

  --dark-color: #1E2234;

  --text-color: #000008;
  --text-muted: #5F6368;

  --white: #FFFFFF;

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(211, 109, 43, 0.15);

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
               0 2px 4px -1px rgba(0, 0, 0, 0.03);

  --shadow-md: 0 10px 15px -3px rgba(211, 109, 43, 0.12),
               0 4px 6px -2px rgba(211, 109, 43, 0.08);

  --shadow-lg: 0 20px 25px -5px rgba(211, 109, 43, 0.18),
               0 10px 10px -5px rgba(211, 109, 43, 0.10);

  /* Animation */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky navbar */
  font-size: 16px;
}

body {
  font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #E2E8F0;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* 3. Reusable Components & Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: #111827;
}

section {
  padding: 100px 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: rgba(0, 150, 136, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  gap: 8px;
  outline: none;
}

/* .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #004D90);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 91, 172, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 91, 172, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), #00796B);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 150, 136, 0.4);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-color), #DDA300);
  color: #111827;
  box-shadow: 0 4px 15px rgba(244, 180, 0, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 180, 0, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
} */

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--cta-color));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(211, 109, 43, 0.30);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--secondary-color), var(--cta-color));
  box-shadow: 0 6px 20px rgba(200, 73, 11, 0.40);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(220, 119, 46, 0.30);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-color), var(--cta-color));
  box-shadow: 0 6px 20px rgba(211, 109, 43, 0.40);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-color), var(--cta-color));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(242, 137, 88, 0.30);
}

.btn-accent:hover {
  transform: translateY(-2px);
  background: var(--cta-color);
  box-shadow: 0 6px 20px rgba(200, 73, 11, 0.40);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* 4. Sticky Header Navigation */
/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-normal);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
} */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-normal);

  background: rgba(255, 247, 237, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border-bottom: 1px solid rgba(211, 109, 43, 0.15);
}

/* .navbar.scrolled {
  padding: 12px 0;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--glass-border);
} */

.navbar.scrolled {
  padding: 12px 0;

  background: rgba(255, 247, 237, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  box-shadow: 0 8px 25px rgba(211, 109, 43, 0.12);

  border-bottom: 1px solid rgba(211, 109, 43, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gov-logo-badge {
  background: var(--accent-color);
  color: #111827;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-subtext {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--secondary-color);
}

/* Language Toggler styles */
.lang-switcher-wrapper {
  display: flex;
  align-items: center;
  background: #E2E8F0;
  padding: 4px;
  border-radius: 50px;
  gap: 2px;
}

.lang-switch {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--text-color);
  transition: var(--transition-fast);
}

.lang-switch.active {
  background: var(--primary-color);
  color: var(--white);
}

/* Hamburger mobile trigger */
.hamburger {
  display: none;
  cursor: pointer;
  border: none;
  background: transparent;
  outline: none;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-color);
  transition: var(--transition-normal);
}

/* 5. Hero Banner Slider Section */
#home {
  padding: 0;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  position: relative;

  /* Persistent hero background image with a subtle dark gradient overlay
     so the existing SVG slides and floating animations remain visible. */
  background-image: linear-gradient(rgba(11,18,35,0.45), rgba(26,37,58,0.18)), url('../assets/images/Hero%20image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* keep background visually fixed on larger screens for a constant hero image */
  background-attachment: fixed;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Built-in dark overlay */
  opacity: 0.65; /* let the persistent background image show through */
}

/* On small screens avoid fixed attachment for performance/compatibility */
@media (max-width: 900px) {
  #home {
    background-attachment: scroll;
  }
  .hero-bg-img {
    opacity: 0.80;
  }
}

/* Image-based hero slide that uses the file placed in the project root 'assests' folder */
/* removed .hero-slide.hero-image — background is applied to #home to keep image constant */

/* Hero Content and Positioning */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Offset for header spacing */
}

.hero-text-wrapper {
  max-width: 780px;
}

/* .hero-badge {
  display: inline-block;
  background: var(--accent-color);
  color: #111827;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(244, 180, 0, 0.2);
} */

.hero-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(242, 137, 88, 0.25);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-title span {
  color: var(--accent-color);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  line-height: 1.5;
}

/* Static Info Overlays / Wave shapes */
.hero-bottom-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 15;
  line-height: 0;
}

.hero-bottom-curve svg {
  width: 100%;
  height: 80px;
  fill: var(--background-color);
}

.scroll-indicator-mouse {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-size: 0.75rem;
  gap: 8px;
  opacity: 0.8;
}

.mouse-scroll-outline {
  width: 20px;
  height: 32px;
  border: 2px solid var(--white);
  border-radius: 50px;
  position: relative;
}

.mouse-scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 50px;
  position: absolute;
  top: 6px;
  left: 50%;
  margin-left: -2px;
}

/* Floating Shapes in Hero for Premium UI Feel */
.floating-shapes-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* .floating-shape {
  position: absolute;
  background: linear-gradient(135deg, rgba(0, 150, 136, 0.15), rgba(0, 91, 172, 0.15));
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  filter: blur(2px);
  will-change: transform;
} */

.floating-shape {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(242, 137, 88, 0.22),
    rgba(220, 119, 46, 0.18),
    rgba(211, 109, 43, 0.15)
  );
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  filter: blur(2px);
  will-change: transform;
}

.shape-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 10%;
}

.shape-2 {
  width: 250px;
  height: 250px;
  bottom: 15%;
  left: 5%;
  border-radius: 53% 47% 43% 57% / 51% 39% 61% 49%;
}

/* 6. Counters / Stats Section */
/* .stats-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: -80px; /* pull stats box up over the wave curve overlap */
  /* position: relative; */
  /* z-index: 20; */
/* } */ 

/* 6. Counters / Stats Section */
.stats-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  /* Creates space between hero and stats cards */
  margin-top: 40px;

  position: relative;
  z-index: 20;
}

/* .stat-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 91, 172, 0.05);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 150, 136, 0.3);
} */

.stat-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(211, 109, 43, 0.08);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* .stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(211, 109, 43, 0.30);
  box-shadow: 0 20px 35px rgba(211, 109, 43, 0.15);
} */

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow:
    0 20px 35px rgba(211, 109, 43, 0.15),
    0 0 0 4px rgba(242, 137, 88, 0.08);
}

.stat-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(211, 109, 43, 0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition-normal);
  .stat-card:hover .stat-card-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  transform: scale(1.08);
}
}

.stat-num-wrapper {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.stat-num-wrapper span.suffix {
  color: var(--accent-color);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* 7. Implementing Across Marquee Banner */
/* .marquee-section {
  background: #111827;
  padding: 24px 0;
  color: var(--white);
  overflow: hidden;
  z-index: 10;
}

.marquee-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.marquee-label {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 1.5px;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  padding-right: 30px;
}

.marquee-slide-wrapper {
  overflow: hidden;
  display: flex;
}

.marquee-content span {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 0 24px;
  letter-spacing: 0.5px;
  position: relative;
}

.marquee-content span::after {
  content: '•';
  position: absolute;
  right: -4px;
  color: var(--secondary-color);
} */

.marquee-section {
  background: var(--dark-color);
  padding: 24px 0;
  color: var(--white);
  overflow: hidden;
  z-index: 10;
}

.marquee-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.marquee-label {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 1.5px;
  border-right: 2px solid rgba(255, 255, 255, 0.15);
  padding-right: 30px;
}

.marquee-slide-wrapper {
  overflow: hidden;
  display: flex;
}

.marquee-content span {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 0 24px;
  letter-spacing: 0.5px;
  position: relative;
  color: var(--white);
}

.marquee-content span::after {
  content: '•';
  position: absolute;
  right: -4px;
  color: var(--primary-color);
}

/* 8. About Section Styling */
#about {
  background: var(--background-color);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-intro-text h3 {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.about-intro-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-vision-mission-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vm-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  border-left: 5px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.vm-card.mission {
  border-left-color: var(--secondary-color);
}

.vm-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.vm-card.mission h4 {
  color: var(--secondary-color);
}

.vm-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Core Pillars Grid */

.about-pillars-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 40px;
  font-weight: 700;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid rgba(211, 109, 43, 0.08);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.pillar-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(211, 109, 43, 0.25);
}

.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(211, 109, 43, 0.12);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: var(--transition-normal);
}

.pillar-card:nth-child(even) .pillar-icon {
  color: var(--secondary-color);
  background: rgba(220, 119, 46, 0.12);
}

.pillar-card:hover .pillar-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  transform: scale(1.08);
}

.pillar-card h5 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Target Audience list styles */
.target-audience-box {
  background: #111827;
  border-radius: var(--border-radius-lg);
  padding: 50px;
  color: var(--white);
}

.target-audience-box h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.target-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.target-item i {
  color: var(--accent-color);
  margin-top: 4px;
  font-size: 1.1rem;
}

.target-item span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

/* 9. Business Models Section Grid Layout */
#models {
  background: var(--background-color);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.model-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.model-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 91, 172, 0.1);
}

.card-img-placeholder {
  height: 220px;
  position: relative;
  background: linear-gradient(135deg, rgba(0, 91, 172, 0.03), rgba(0, 150, 136, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Simulated Image Backdrop pattern */
.card-img-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.3;
}

.card-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--primary-color);
  z-index: 5;
  transition: var(--transition-normal);
}

.model-card:hover .card-icon-wrapper {
  transform: scale(1.1);
  color: var(--secondary-color);
}

.card-content-wrapper {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.model-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.model-card p.description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.read-more-btn {
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-color);
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: var(--transition-fast);
}

.read-more-btn:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

/* 10. Process Flow timeline */
#process {
  background: var(--white);
}

.timeline-outer-wrapper {
  position: relative;
  padding: 50px 0;
  margin-top: 40px;
}

/* Horizontal line overlay for desktop screen size */
.timeline-outer-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #E2E8F0;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-horizontal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 5;
}

.timeline-step-node {
  text-align: center;
}

.step-node-number {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.timeline-step-node:nth-child(even) .step-node-number {
  background: var(--secondary-color);
}

.step-node-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid #E2E8F0;
  color: var(--primary-color);
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.timeline-step-node:hover .step-node-circle {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  transform: scale(1.1);
}

.step-node-circle i {
  will-change: transform;
}

.step-node-info h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #111827;
}

.step-node-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0 10px;
}

/* 11. Changemakers Tab System */
#changemakers {
  background: var(--background-color);
}

.tab-system-wrapper {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.tab-buttons-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  border-bottom: 2px solid #E2E8F0;
  padding-bottom: 24px;
  margin-bottom: 40px;
}

.tab-btn {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
}

.tab-btn:hover {
  color: var(--primary-color);
}

.tab-btn.active {
  background: rgba(0, 91, 172, 0.08);
  color: var(--primary-color);
}

.tab-panes-container {
  position: relative;
}

.tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.tab-pane.active {
  display: block;
  opacity: 1;
}

.tab-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.tab-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--background-color);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--secondary-color);
}

.tab-bullet-item i {
  color: var(--secondary-color);
  margin-top: 4px;
  font-size: 1.15rem;
}

.tab-bullet-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
}

/* 12. Success Stories / Testimonial sliding carousel */
#success {
  background: var(--white);
}

.carousel-outer-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  padding: 20px 5px;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc(50% - 15px); /* Two columns on desktop */
  background: var(--background-color);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-rating {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-info h5 {
  font-size: 0.95rem;
  color: #111827;
}

.user-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Slider Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.carousel-prev {
  left: -70px;
}

.carousel-next {
  right: -70px;
}

/* 13. Masonry Gallery Filters and Grid Layout */
#gallery {
  background: var(--background-color);
}

.gallery-filters-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-color);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.gallery-masonry-grid {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  background: var(--white);
  margin-bottom: 20px;
  break-inside: avoid;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item.hide {
  opacity: 0;
  transform: scale(0.9);
}

.gallery-item.show {
  opacity: 1;
  transform: scale(1);
}

.gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  background: #E2E8F0;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-overlay-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(200, 73, 11, 0.75), rgba(211, 109, 43, 0.25));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

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

.gallery-overlay-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: translateY(20px);
  transition: var(--transition-normal);
}

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

/* Gallery Lightbox */
.gallery-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: rgba(17, 24, 39, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gallery-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  text-align: center;
}

.lightbox-content {
  max-height: 80vh;
  max-width: 100%;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: opacity 0.15s ease;
}

.lightbox-caption {
  color: var(--white);
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.lightbox-nav:hover {
  background: var(--primary-color);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* Lazy Loading Transition Effects */
img.lazy {
  opacity: 0;
  filter: blur(5px);
}

img.lazy-loaded {
  opacity: 1;
  filter: blur(0);
  transition: opacity 0.5s ease-out, filter 0.5s ease-out;
}

/* 14. FAQs Modern Accordion */
#faq {
  background: var(--white);
}

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--background-color);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: var(--transition-normal);
}

.accordion-item.active {
  background: var(--white);
  border-color: rgba(0, 91, 172, 0.15);
  box-shadow: var(--shadow-md);
}

.accordion-header {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.accordion-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  transition: var(--transition-fast);
  padding-right: 20px;
}

.accordion-item.active .accordion-header h4 {
  color: var(--primary-color);
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 0.8rem;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  background: var(--primary-color);
  color: var(--white);
  transform: rotate(45deg);
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content {
  padding: 0 30px 24px 30px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  padding-top: 20px;
}

/* 15. Contact Section layout */
#contact {
  background: var(--background-color);
}

/* Contact cards row — three info cards centred */
.contact-cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-cards-row .contact-info-card {
  flex: 1 1 280px;
  max-width: 360px;
}

.contact-info-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(211, 109, 43, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-card-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--dark-navy);
}

.contact-card-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-card-info a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-card-info a:hover {
  text-decoration: underline;
}

/* 16. Business Model Details Modal details popup */
.modal-overlay-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2500;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay-container.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-wrapper {
  background: var(--white);
  width: 90%;
  max-width: 650px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(50px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.modal-overlay-container.active .modal-wrapper {
  transform: translateY(0);
}

.modal-header-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 24px;
}

.modal-img-placeholder {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  color: var(--white);
}

.modal-body-content {
  padding: 40px;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-section {
  margin-bottom: 24px;
}

.modal-section:last-child {
  margin-bottom: 0;
}

.modal-section h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(0, 91, 172, 0.1);
  padding-bottom: 6px;
}

.modal-section p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.modal-benefits-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}

.modal-benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-color);
}

/* 17. Register Card Box banner at bottom */
.register-cta-banner {
  padding: 60px 0;
  background: var(--background-color);
}

.register-card-box {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.register-card-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 150, 136, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.register-card-box h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 5;
}

.register-card-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 36px auto;
  position: relative;
  z-index: 5;
}

.register-card-box .btn {
  position: relative;
  z-index: 5;
}

/* 18. Footer Styling */
.footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-brand-info p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

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

.social-circle-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-circle-link:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-links-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  font-size: 0.95rem;
}

.footer-links-col a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-bar p {
  font-size: 0.85rem;
}

.footer-legal-terms {
  display: flex;
  gap: 24px;
}

.footer-legal-terms a {
  font-size: 0.85rem;
}

.footer-legal-terms a:hover {
  color: var(--white);
}

/* 19. Back To Top Floating Action Trigger */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* 20. Floating Apply Now Side Button */
.floating-apply-wrapper {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
}

.floating-apply-btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: linear-gradient(135deg, var(--secondary-color), #00796B);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 20px 14px;
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  box-shadow: -4px 0 15px rgba(0, 150, 136, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  transition: var(--transition-normal);
}

.floating-apply-btn i {
  transform: rotate(90deg);
}

.floating-apply-btn:hover {
  padding-right: 22px;
  background: linear-gradient(135deg, var(--primary-color), #004D90);
  box-shadow: -4px 0 20px rgba(0, 91, 172, 0.4);
}
