@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Roboto:wght@400;500;700;900&display=swap');

:root {
  /* Color Palette - Nitibridge Brand Theme (Teal & Charcoal) */
  --bg-primary: #ffffff;
  --bg-secondary: #F2FAFA; /* Light teal tint */
  --bg-card: #ffffff;
  
  --color-primary: #269D9D; /* Brand Teal */
  --color-primary-hover: #1D7D7D;
  --color-secondary: #333333; /* Brand Charcoal */
  
  --color-text-main: #1A1A1A; /* Clean Charcoal/Black */
  --color-text-muted: #4B5563; /* Neutral gray */
  
  --color-border: #E5E7EB;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Typography */
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;

  --transition-fast: 0.2s ease-in-out;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Category Colors */
  --cat-startup: #269D9D;     /* Teal */
  --cat-cert: #269D9D;        /* Teal/Emerald */
  --cat-funding: #269D9D;     /* Charcoal */
  --cat-web: #269D9D;         /* Teal */

  /* Advanced Shadows */
  --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 20px rgba(38, 157, 157, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section-padding {
  padding: var(--spacing-xl) 0;
}

.bg-secondary {
  background-color: var(--bg-secondary);
}

/* Typography Utilities */
.text-primary {
  color: var(--color-primary);
}

.text-center { text-align: center; }

h2.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 900;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 700px;
}

/* Standard Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  border-radius: 6px;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
  border: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(38, 157, 157, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 6px 20px rgba(38, 157, 157, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* --- Simple Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
  height: 70px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-main);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.top-header {
    background: linear-gradient(to right, #333333, #269D9D);
    padding: 8px 0;
    font-size: 14px;
}

.container-top {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left side */
.left span {
    color: #ccc;
    margin-right: 20px;
}

.left i {
    margin-right: 6px;
    color: #fff;
}

/* Right side icons */
.right a {
    color: #ccc;
    margin-left: 15px;
    font-size: 14px;
    transition: 0.3s;
}

.right a:hover {
    color: #fff;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.5px;
  height: 25px;
}

/* Nav */
.nav-links {
  z-index: 1100;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  /* padding-right: 27%; */
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  color: var(--color-text-main);
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--color-primary);
}

/* Search Box */
.search-box input {
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  outline: none;
}
.search-box input:focus {
  border-color: var(--color-primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(33, 33, 33, 0.8) 0%, 
    rgba(33, 33, 33, 0.5) 50%,
    rgba(38, 157, 157, 0.3) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.hero-content {
  max-width: 550px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .hero-content {
  max-width: 550px;
  background: linear-gradient(
    to right,
    rgba(51, 51, 51, 0.7),
    rgba(38, 157, 157, 0.5),
    rgba(38, 157, 157, 0)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
} */

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-subhead {
  color: var(--color-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.video-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--color-text-main);
  cursor: pointer;
  /* align-items: center; */
}

.video-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(38, 157, 157, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(38, 157, 157, 0); }
  100% { box-shadow: 0 0 0 0 rgba(38, 157, 157, 0); }
}

/* Features Grid 4-Boxes */
.four-boxes {
  margin-top: -3rem; /* Overlap hero */
  position: relative;
  z-index: 3;
  padding-bottom:2rem ;
}

.box-grid {
  padding-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.info-box {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-smooth);
}

.info-box:hover {
  /* transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary); */

  border-color: var(--color-primary);
  /* color: var(--color-primary); */
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(38, 157, 157, 0.25);
}

.info-box-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(38, 157, 157, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.info-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.info-box p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* About Section */
.about-section .grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-section-2 .grid-split {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.about-content h3 {
  font-size: 1.5rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--color-text-main);
}

.checklist-icon {
  color: var(--color-primary);
  background: rgba(38, 157, 157, 0.1);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Why Choose Us */
.why-us {
  background-color: var(--bg-secondary);
  
}

.why-list {
  list-style: none; margin-bottom: 2rem;
}
.why-list li {
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--color-text-main);
  padding-left: 1.5rem;
  position: relative;
}
.why-list li::before {
  content: '→';
  color: var(--color-primary);
  position: absolute;
  left: 0;
}

.highlight-box {
  background: var(--bg-card);
  padding: 1.5rem;
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

/* Process Section */
.process-section {
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-border);
  z-index: 1;
}

.step-card {
  position: relative;
  z-index: 2;
  background: #F2FAFA;;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
}

.step-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-premium);
  background: #ffffff;
  border-color: var(--color-primary);
}

.step-card:hover .step-number {
  /* transform: scale(1.1) rotate(8deg); */
  transform: scale(1.1);
  background: var(--color-primary-hover);
  box-shadow: 0 0 0 10px rgba(255,255,255,1), 0 15px 30px rgba(38, 157, 157, 0.25);
}

.step-number {
  width: 85px;
  height: 85px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 10px rgba(255,255,255,1), 0 0 0 12px var(--color-primary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Counters */
.counters-section {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1D7D7D 100%);
  border-top: 5px solid var(--color-primary);
  background-color: var(--color-secondary);
  color: #fff;
  padding: 4rem 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.counter-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  /* color: #ffffff; */
  display: inline-block;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.counter-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.8);
}

/* Reviews */
/* Testimonial Carousel */
.testimonial-carousel-container {
  overflow: hidden;
  padding: 1rem 0;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  width: max-content;
}

.testimonial-track .review-card {
  width: 450px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.testimonial-track .review-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

.review-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #cbd5e1;
}
.reviewer-info h4 { margin: 0; font-size: 1rem; }
.review-date { font-size: 0.8rem; color: var(--color-text-muted); }
.stars { color: #fbbc05; font-size: 1.2rem; }

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.map-container iframe { width: 100%; height: 100%; border: none;}

.form-container {
  padding: 4rem;
  background: var(--bg-card);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* Footer */
footer {
  background-color: var(--color-text-main);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 1rem;
  text-align: justify;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  display: block;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.00rem;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
}

/* Navigation Dropdown Mega Menu */
.mega-menu-wrapper {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  width: 900px; /* Mega menu width */
  padding: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  z-index: 1200;
  pointer-events: auto;
}

/* Caret for Dropdown indicator */
.dropdown-icon {
  font-size: 0.8em;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.mega-menu-wrapper:hover .mega-menu,
.mega-menu-wrapper.active .mega-menu{
  opacity: 1;
  visibility: visible;
  /* transform: translateX(-50%) translateY(0); */
  pointer-events: auto;
}

.mega-menu-wrapper:hover > a .dropdown-icon {
  transform: rotate(180deg);
}

/* .mega-column h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-column ul li {
  margin-bottom: 0.5rem;
}

.mega-column ul li a {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.15rem 0;
  display: inline-flex;
  transition: var(--transition-fast);
  text-decoration: none;
  position: relative;
  text-transform: none;  override nav uppercase 
  line-height: 1.3;
} */

/* Specific overrides for mega menu links because generic nav link is uppercase */
.nav-links .mega-menu-wrapper .mega-menu a {
  text-transform: none;
  font-weight: 500;
}

.nav-links .mega-menu-wrapper > a {
  display: flex;
  align-items: center;
}

/* .mega-column ul li a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
} */

/* Career Page Styles */
.career-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
  transition: all 0.3s ease;
}

.career-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.career-header {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.career-reqs ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.career-reqs ul li {
  margin-bottom: 0.5rem;
}

/* Responsive */
/* Responsive Hub */
/* @media (max-width: 1200px) {
  .mega-menu { width: 95vw; left: 0; transform: translateY(20px); }
  .mega-menu-wrapper:hover .mega-menu { transform: translateY(0); }
} */

@media (max-width: 992px) {
  .hero .container, .grid-split, .contact-grid {
    flex-direction: row;
    grid-template-columns: 1fr;
    /* text-align: center; */
    gap: 2rem;
  }
  /* .about-section{
    flex-direction: row;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  } */
  .hero-actions { justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .box-grid { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
  .four-boxes { margin-top: 2rem; }
  
  /* Reset Overlaps */
  .contact-wrapper, .service-content-grid { margin-top: 0 !important; }
  
  /* Mobile Menu Sidebar */
  /* .mobile-toggle { display: block; } */
  /* .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: white;
    flex-direction: column;
    padding: 6rem 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    z-index: 1050;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .nav-links.active { right: 0; } */
  
  /* .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 1rem;
    opacity: 1;
    visibility: visible;
  }
  .mega-menu-wrapper:hover .mega-menu { display: grid; }
  .mega-menu-wrapper a { width: 100%; justify-content: space-between; } */
  
  .search-box { display: none; } 
}

@media (max-width: 769px) {
  .box-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .form-container { padding: 2rem; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .hero-title { font-size: 2.5rem; }
  .hero-content { padding: 2rem 1.5rem; border-radius: 16px; margin: 0 1rem; }
  /* .grid-split{
    flex-direction: row;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  } */
   /* Mobile Menu Sidebar */
  .mobile-toggle { display: block; } 
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: white;
    flex-direction: column;
    padding: 6rem 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    z-index: 1050;
    display: none;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-links.active { right: 0; } 
  
   .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 1rem;
    opacity: 1;
  }
  .mega-menu-wrapper:hover .mega-menu { display: grid; }
  .mega-menu-wrapper a { width: 100%; justify-content: space-between; }
}


@media (max-width: 480px) {
  .hero { padding: 4rem 0; min-height: 100vh; }
  .section-padding { padding: 3rem 0; }
  .btn { width: 100%; margin-bottom: 1rem; }
  .hero-actions { flex-direction: column; gap: 1rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-desc { font-size: 1.1rem; }
}
/* Service Template Specific Styles */
.service-hero-premium {
    padding: 10rem 0 6rem;
    color: #ffffff !important;
}

.service-hero-premium h1, 
.service-hero-premium h6,
.service-hero-premium span,
.service-hero-premium a {
    color: black !important;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.6); /* Darker overlay for readability */
}

.service-hero .container {
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.breadcrumbs a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Service Body Layout */
.service-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 992px) {
  .service-body {
    grid-template-columns: 1fr;
  }
}

.service-image-container img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.service-intro-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.service-intro p, #main-content-sections {
  text-align: justify;
}

/* Accordion Component */
.accordion-container {
  margin-top: 2rem;
}

.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-header {
  padding: 1.25rem 1.5rem;
  background: var(--bg-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-text-main);
  transition: background var(--transition-fast);
}

.accordion-header:hover {
  background: #edf2f7;
}

.accordion-header i {
  transition: transform var(--transition-fast);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background: #fff;
  transition: all 0.3s ease-out;
}

.accordion-content p, .accordion-content ul {
  padding: 1.5rem 0;
  color: var(--color-text-muted);
}

.accordion-content ul {
  padding-left: 1.5rem;
  list-style: disc;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

/* Content Blocks */
.main-content-sections {
  margin-top: 4rem;
}

.content-block {
  margin-bottom: 3rem;
}

.content-block h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.content-block h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 50px; height: 3px;
  background: var(--color-primary);
}

.faq-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.apply-banner {
  background: var(--color-primary);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.apply-banner h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.apply-banner .btn-outline {
  border-color: #fff;
  color: #fff;
}

.apply-banner .btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
}

/* --- PREMIUM UI TOOLKIT --- */

.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-premium);
}

.sticky-card {
  position: sticky;
  top: 100px;
  z-index: 10;
}

/* Category Accent Classes */
.accent-startup { --current-accent: var(--cat-startup); }
.accent-cert { --current-accent: var(--cat-cert); }
.accent-funding { --current-accent: var(--cat-funding); }
.accent-web { --current-accent: var(--cat-web); }

.bg-accent { background-color: var(--current-accent) !important; }
.text-accent { color: var(--current-accent) !important; }
.border-accent { border-color: var(--current-accent) !important; }

/* Visual Process Path */
.process-path {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 3rem 0;
}

.process-path::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.path-step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  transition: all 0.4s ease;
  cursor: pointer;
}

.step-icon-circle {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.path-step:hover .step-icon-circle {
  background: var(--color-primary);
  color: #fff;
  /* transform: scale(1.2) rotate(15deg); */
  transform: scale(1.2);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-primary);
}

.path-step:hover h4 {
  color: var(--color-primary);
  transform: translateY(-5px);
}

.path-step h4 {
  transition: all 0.3s ease;
}

/* Premium Form Inputs */
.form-group-premium {
  margin-bottom: 2rem;
  position: relative;
}

.form-control-premium {
  width: 100%;
  padding: 1.25rem 1rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-border);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control-premium:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}

.float-label {
  position: absolute;
  top: 1.25rem;
  left: 1rem;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-control-premium:focus + .float-label,
.form-control-premium:not(:placeholder-shown) + .float-label {
  top: -0.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
}




/* pop up css */

/* .popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 80vh;
  transform: translate(-50%, -50%);
  background: var(--color-secondary);
  background: #fff5;

  color: white;
  z-index: 1000000;
  border-radius: 25px;
} */
 /* .popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  color: white;
} 

.popup-content {
  background: var(--color-secondary);
  width: 70%;
  max-width: 900px;
  height: auto;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  gap: 30px;
}

.popup-content h2{
  color: white;
  text-align: center;
}

#closePopup{
  position: absolute;
  right: 3%;
  top: 3%
}

.popup-content form{
  width: 50%;
} 

.popup-left{
width: 50%;
padding: 19% 10% 10% 10%;
}

.popup-h2{
  margin: 10px 10px 10px 10px;
} */

.popup {
  /* display: none; */
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* height: 100%; */
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  /* align-items: center; */
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
  overflow-y: auto;
}

.popup-content {
  /* background: linear-gradient(135deg, #0d1529, #1e4386); */
  /* background: linear-gradient(
    135deg,
    #1A1A1A 0%,
    #2b2b2b 50%,
    #333333 100%
  ); */
  background: linear-gradient(
    135deg,
    #1A1A1A 0%,
    #1f2f2f 40%,
    #223838 70%,
    #269D9D22 100%
  );
  max-height: 90vh;
  overflow-y: auto;
  width: 70%;
  max-width: 1000px;
  border-radius: 20px;
  display: flex;
  gap: 40px;
  padding: 50px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  /* color: #ffffff;
border: 1px solid rgba(255,255,255,0.08); */
}


/* 
.popup-content&::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(38,157,157,0.25), transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(60px);
} */

/* Close button */
#closePopup {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 22px;
  cursor: pointer;
  background: rgba(255,255,255,0.85);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  z-index: 10;
}

/* Left side */
/* .popup-left {
  width: 50%;
  padding: 40px 20px;
  background-color: #6a7ba1;
   background: 
    linear-gradient(rgba(2,6,23,0.85), rgba(2,6,23,0.95)),
    url('POPUP.jpeg');
} */
 .popup-left {
  width: 50%;
  padding: 40px;
  /* background: 
    linear-gradient(rgba(4, 11, 39, 0.65), rgba(67, 73, 98, 0.75)); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.popup-left p {
  line-height: 1.6;
  margin-bottom: 10px;
}

.popup-left ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.popup-left ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Right form */
.popup-content form {
  width: 50%;
}

.popup-h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Inputs */
.form-control {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  /* border: 2px; */
  /* background: transparent; */
  margin-top: 5px;
  font-size: 14px;
  border-color: whitesmoke;
}

.form-group {
  margin-bottom: 15px;
}

/* Button Override Fix */
.btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: var(--color-primary);
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: var(--color-primary-hover);
}

/* Mobile Responsive */
@media (max-width: 900px) { 
  .popup-content {
    flex-direction: column;
    padding: 25px;
  }

  .popup-left,
  .popup-content form {
    width: 100%;
  }

  .popup-left {
    padding: 10px;
  }
}
/* Headings */
.popup-left h2,
.popup-h2 {
  color: #ffffff;
}

/* Paragraph text */
.popup-left p {
  color: #cbd5e1;
}

/* List text */
.popup-left li {
  color: #e2e8f0;
}

/* Labels */
label {
  color: #000000;
  font-size: 14px;
}

/* Input text */
.form-control {
  color: #111827;
}

/* Placeholder text */
.form-control::placeholder {
  color: #6b7280;
}

/* Submit button text */
.btn {
  color: #ffffff;
  letter-spacing: 1px;
}




/* video css */

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

/* ==============================================================
   Process Section Styles (process.html)
   ============================================================== */

.process-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(38, 157, 157, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(38, 157, 157, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-header h2 {
    font-size: 2.5rem;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-hover));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Common Step Card */
.pm-step-card, .pd-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    /* height: 100%; */
}

.pm-step-card:hover, .pd-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(38, 157, 157, 0.15);
    transform: translateY(-5px);
}

.pm-highlight, .pd-highlight {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pm-time, .pd-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(38, 157, 157, 0.1);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Mobile Stacked */
.process-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.pm-progress-bar {
    height: 4px;
    background: var(--color-border);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.pm-progress {
    height: 100%;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-hover));
    border-radius: 2px;
}

.pm-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pm-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-glow);
}

.pm-title-area h3 { margin: 0; font-size: 1.2rem; }
.pm-title-area span { font-size: 0.75rem; color: var(--color-text-muted); }
.pm-desc { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }

/* Desktop Alternating */
.process-desktop { display: none; }

@media (min-width: 992px) {
    .process-mobile { display: none; }
    .process-desktop {
        display: block;
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
    }
    .pd-central-line {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, var(--color-primary) 0%, rgba(38, 157, 157, 0.2) 100%);
        transform: translateX(-50%);
        border-radius: 2px;
    }
    .pd-row {
        display: flex;
        align-items: center;
        margin-bottom: 4rem;
        position: relative;
    }
    .pd-card-side { width: 50%; padding: 0 3rem; }
    .pd-empty-side { width: 50%; }
    .pd-center-icon {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 80px;
        background: var(--bg-card);
        border: 4px solid rgba(38, 157, 157, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transition: border-color 0.3s;
    }
    .pd-row:hover .pd-center-icon {
        border-color: var(--color-primary);
    }
    .icon-bulb {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
    }
    .right-align { text-align: right; }
    /* .right-align .pd-time { float: right; margin-top: 1rem; } */
    .left-align { text-align: left; }
    /* .left-align .pd-time { float: left; margin-top: 1rem; } */
    .pd-step-tag {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        background: linear-gradient(to right, var(--color-primary), var(--color-primary-hover));
        color: white;
        font-size: 0.75rem;
        font-weight: 700;
        border-radius: 50px;
        margin-bottom: 1rem;
    }
    .pd-desc { color: var(--color-text-muted); margin-bottom: 0.5rem; }
    
    /* Make right align text look consistent */
    .right-align h3, .right-align .pd-desc, .right-align .pd-highlight {
        text-align: right;
    }
}

/* Features grid at bottom */
.process-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 4rem;
}
@media (min-width: 992px) {
    .process-features { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.pf-item {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pf-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(38, 157, 157, 0.15);
    transform: translateY(-5px);
}
.pf-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-glow);
}
.pf-item span { font-weight: 600; font-size: 0.9rem; color: var(--color-text-main); }

/* Eligibility App Styles */
.eligibility-container {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 3rem; */
    /* background: #fff; */
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-top: 2rem;
    /* background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);   */
}
.eligibility-form-wrapper {
    padding: 3rem;
    /* background: #fafafa; */
    border-right: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

}
.eligibility-results-wrapper {
    padding: 3rem;
}
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-left-color: var(--color-primary);
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.hidden { display: none !important; }
.scheme-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp 0.5s ease backwards;
}
.scheme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(38, 157, 157, 0.1);
    border-color: var(--color-secondary);
}
.scheme-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.scheme-details h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--color-text-main);
}
.agency-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: #e2e8f0;
    color: #475569;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.scheme-info span {
    font-size: 0.9rem;
    color: var(--color-text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .eligibility-container {
        grid-template-columns: 1fr;
    }
    .eligibility-form-wrapper, .eligibility-results-wrapper {
        padding: 1.5rem;
    }
    .eligibility-form-wrapper {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
}


/* ============================================================
   OUR IMPACT SECTION — Native Vanilla CSS
   ============================================================ */
/* .impact-section {
  background: linear-gradient(160deg, #0d1b2a 0%, #0f2537 60%, #0a1520 100%);
} */

.impact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.impact-header .section-title { color: #ffffff; font-size: 2.8rem; }

.impact-subtext {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Metric Cards */
.impact-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.metric-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(38,157,157,0.2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: left;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(38,157,157,0.2);
  border-color: var(--color-primary);
}

/* Metric card top row: icon + sparkline */
.metric-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.metric-sparkline {
  width: 80px;
  height: 32px;
  flex-shrink: 0;
}

.metric-icon {
  width: 44px; height: 44px;
  background: rgba(38,157,157,0.15);
  color: var(--color-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.metric-value {
  font-size: 2.2rem; font-weight: 900;
  color: #ffffff; margin-bottom: 0.4rem;
  font-family: var(--font-heading);
}
.metric-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 1px;
}

/* India SVG Map */
.impact-map-wrapper { margin-bottom: 3rem; }
.impact-map-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.impact-map-container svg { width: 100%; height: auto; display: block; }
.impact-map-container svg path {
  fill: #1e4d4d;
  stroke: rgba(38,157,157,0.3);
  stroke-width: 0.5px;
  cursor: pointer;
  transition: fill 0.25s ease, filter 0.25s ease;
}
.impact-map-container svg path:hover {
  fill: var(--color-primary);
  filter: drop-shadow(0 0 8px rgba(38,157,157,0.6));
}
.impact-map-container svg path.map-state--active { fill: #1D7D7D; }

.map-tooltip {
  position: absolute;
  background: rgba(10,20,30,0.92);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem; font-weight: 600;
  border: 1px solid rgba(38,157,157,0.4);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  white-space: nowrap;
  z-index: 10;
}

/* ============================================================
   FUNDING OPTIONS SECTION — Native Vanilla CSS
   ============================================================ */
.funding-header {
  text-align: center;
  margin-top: 4rem; margin-bottom: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.funding-header .section-title { color: #ffffff; }

.text-gradient {
  background: linear-gradient(90deg, var(--color-primary), #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero tag pill (reusable) */
.hero-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  background: rgba(38,157,157,0.15);
  color: var(--color-primary);
  border: 1px solid rgba(38,157,157,0.3);
  margin-bottom: 0.75rem;
}

/* Filter Tabs */
.funding-filter-tags {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0.75rem; margin-top: 1.5rem;
}
.filter-btn {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.45rem 1.2rem;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; font-family: var(--font-body);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* Funding Cards */
.funding-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.funding-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.funding-card:hover {
  transform: translateY(-6px);
  border-color: rgba(38,157,157,0.4);
  background: rgba(37, 95, 95);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.fc-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: rgba(38,157,157,0.15);
  color: var(--color-primary);
  border: 1px solid rgba(38,157,157,0.25);
  margin-bottom: 1rem; width: fit-content;
}
.fc-tag--highlight {
  background: rgba(234,179,8,0.15);
  color: #f59e0b;
  border-color: rgba(234,179,8,0.25);
}
.fc-title { font-size: 1.15rem; font-weight: 800; color: #ffffff; margin-bottom: 0.5rem; }
.fc-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; flex-grow: 1; margin-bottom: 1.25rem; }

.fc-btn {
  display: block; text-align: center;
  padding: 0.6rem 1rem; font-size: 0.82rem;
  border-radius: 8px;
  border: 2px solid rgba(38,157,157,0.4);
  color: var(--color-primary);
  transition: background 0.25s ease, color 0.25s ease;
}
.fc-btn:hover { background: var(--color-primary); color: #ffffff; border-color: var(--color-primary); transform: none; }

/* Responsive */
@media (max-width: 900px) {
  .impact-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .funding-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .impact-metrics-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .metric-card { padding: 1.25rem 1rem; }
  .metric-value { font-size: 1.6rem; }
  .funding-cards-grid { grid-template-columns: 1fr; }
  .impact-header .section-title,
  .funding-header .section-title { font-size: 2rem; }
}






/* hero elligiblity section */

/* .eligibility-app{
  max-width: 550px;
} */




/* about us section css */
.orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
}

.orb1 {
  background: #269D9D;
  top: 10%;
  left: 5%;
}

.orb2 {
  background: #333333;
  bottom: 10%;
  right: 5%;
}


/* cursor animations */
/* Hide default cursor */
/* body {
  cursor: none;
} */

/* Main small dot */
/* .cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #333333;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
} */

/* Icons */
.icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
 
}

.red { background: #fdecea; color: #e53935; }
.blue { background: #e3f2fd; color: #1e88e5; }
.green { background: #e8f5e9; color: #43a047; }
.orange { background: #fff3e0; color: #fb8c00; }
.purple { background: #ede7f6; color: #5e35b1; }
.pink { background: #fce4ec; color: #d81b60; }
.violet { background: #f3e5f5; color: #8e24aa; }








.map-tooltip {
  position: absolute;
  background: rgba(10,20,30,0.92);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem; font-weight: 600;
  border: 1px solid rgba(38,157,157,0.4);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  white-space: nowrap;
  z-index: 10;
}

/* ============================================================
   FUNDING OPTIONS SECTION — Native Vanilla CSS
   ============================================================ */
.funding-header {
  text-align: center;
  margin-top: 4rem; margin-bottom: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.funding-header .section-title { color: #ffffff; }

.text-gradient {
  background: linear-gradient(90deg, var(--color-primary), #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero tag pill (reusable) */
.hero-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  background: rgba(38,157,157,0.15);
  color: var(--color-primary);
  border: 1px solid rgba(38,157,157,0.3);
  margin-bottom: 0.75rem;
}

/* Filter Tabs */
.funding-filter-tags {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0.75rem; margin-top: 1.5rem;
}
.filter-btn {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.45rem 1.2rem;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; font-family: var(--font-body);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* Funding Cards */
.funding-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.funding-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.fc-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: rgba(38,157,157,0.15);
  color: var(--color-primary);
  border: 1px solid rgba(38,157,157,0.25);
  margin-bottom: 1rem; width: fit-content;
}
.fc-tag--highlight {
  background: rgba(234,179,8,0.15);
  color: #f59e0b;
  border-color: rgba(234,179,8,0.25);
}
.fc-title { font-size: 1.15rem; font-weight: 800; color: #ffffff; margin-bottom: 0.5rem; }
.fc-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; flex-grow: 1; margin-bottom: 1.25rem; }

.fc-btn {
  display: block; text-align: center;
  padding: 0.6rem 1rem; font-size: 0.82rem;
  border-radius: 8px;
  border: 2px solid rgba(38,157,157,0.4);
  color: var(--color-primary);
  transition: background 0.25s ease, color 0.25s ease;
}
.fc-btn:hover { background: var(--color-primary); color: #ffffff; border-color: var(--color-primary); transform: none; }

/* Responsive */
@media (max-width: 900px) {
  .impact-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .funding-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .impact-metrics-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .metric-card { padding: 1.25rem 1rem; }
  .metric-value { font-size: 1.6rem; }
  .funding-cards-grid { grid-template-columns: 1fr; }
  .impact-header .section-title,
  .funding-header .section-title { font-size: 2rem; }
}


/* Eligibility App Styles */

.eligibility-container {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 3rem; */
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-top: 2rem;
}
.eligibility-form-wrapper {
    padding: 3rem;
    background: #fafafa;
    border-right: 1px solid #e2e8f0;
}
.eligibility-results-wrapper {
    padding: 3rem;
}
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-left-color: var(--color-primary);
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.hidden { display: none !important; }
.scheme-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp 0.5s ease backwards;
}
.scheme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(38, 157, 157, 0.1);
    border-color: var(--color-secondary);
}
.scheme-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.scheme-details h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--color-text-main);
}
.agency-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: #e2e8f0;
    color: #475569;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.scheme-info span {
    font-size: 0.9rem;
    color: var(--color-text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .eligibility-container {
        grid-template-columns: 1fr;
    }
    .eligibility-form-wrapper, .eligibility-results-wrapper {
        padding: 1.5rem;
    }
    .eligibility-form-wrapper {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
}


/* ============================================================
   OUR IMPACT SECTION — Native Vanilla CSS
   ============================================================ */
/* .impact-section {
  background: linear-gradient(160deg, #0d1b2a 0%, #0f2537 60%, #0a1520 100%);
} */

.impact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.impact-header .section-title { color: #000000; font-size: 2.8rem; }

.impact-subtext {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Metric Cards */
.impact-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.metric-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(38,157,157,0.2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: left;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(38,157,157,0.2);
  border-color: var(--color-primary);
}

/* Metric card top row: icon + sparkline */
.metric-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.metric-sparkline {
  width: 80px;
  height: 32px;
  flex-shrink: 0;
}

.metric-icon {
  width: 44px; height: 44px;
  background: rgba(38,157,157,0.15);
  color: var(--color-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.metric-value {
  font-size: 2.2rem; font-weight: 900;
  color: #ffffff; margin-bottom: 0.4rem;
  font-family: var(--font-heading);
}
.metric-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 1px;
}

/* India SVG Map */
.impact-map-wrapper { margin-bottom: 3rem; }
.impact-map-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.impact-map-container svg { width: 100%; height: auto; display: block; }
.impact-map-container svg path {
  fill: #1e4d4d;
  stroke: rgba(38,157,157,0.3);
  stroke-width: 0.5px;
  cursor: pointer;
  transition: fill 0.25s ease, filter 0.25s ease;
}
.impact-map-container svg path:hover {
  fill: var(--color-primary);
  filter: drop-shadow(0 0 8px rgba(38,157,157,0.6));
}
.impact-map-container svg path.map-state--active { fill: #1D7D7D; }

.map-tooltip {
  position: absolute;
  background: rgba(10,20,30,0.92);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem; font-weight: 600;
  border: 1px solid rgba(38,157,157,0.4);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  white-space: nowrap;
  z-index: 10;
}

/* ============================================================
   FUNDING OPTIONS SECTION — Native Vanilla CSS
   ============================================================ */
.funding-header {
  text-align: center;
  margin-top: 4rem; margin-bottom: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.funding-header .section-title { color: #000000; }

.text-gradient {
  background: linear-gradient(90deg, var(--color-primary), #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero tag pill (reusable) */
.hero-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  background: rgba(38,157,157,0.15);
  color: var(--color-primary);
  border: 1px solid rgba(38,157,157,0.3);
  margin-bottom: 0.75rem;
}

/* Filter Tabs */
.funding-filter-tags {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0.75rem; margin-top: 1.5rem;
}
.filter-btn {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.45rem 1.2rem;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; font-family: var(--font-body);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* Funding Cards */
.funding-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.funding-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
}
.funding-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(38,157,157,0.8);
}

.fc-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: rgba(38,157,157,0.15);
  color: var(--color-primary);
  border: 1px solid rgba(38,157,157,0.25);
  margin-bottom: 1rem; width: fit-content;
}
.fc-tag--highlight {
  background: rgba(234,179,8,0.15);
  color: #f59e0b;
  border-color: rgba(234,179,8,0.25);
}
.fc-title { font-size: 1.15rem; font-weight: 800; color: #ffffff; margin-bottom: 0.5rem; }
.fc-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; flex-grow: 1; margin-bottom: 1.25rem; }

.fc-btn {
  display: block; text-align: center;
  padding: 0.6rem 1rem; font-size: 0.82rem;
  border-radius: 8px;
  border: 2px solid rgba(38,157,157,0.4);
  color: var(--color-primary);
  transition: background 0.25s ease, color 0.25s ease;
}
.fc-btn:hover { background: var(--color-primary); color: #ffffff; border-color: var(--color-primary); transform: none; }

/* Responsive */
@media (max-width: 900px) {
  .impact-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .funding-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .impact-metrics-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .metric-card { padding: 1.25rem 1rem; }
  .metric-value { font-size: 1.6rem; }
  .funding-cards-grid { grid-template-columns: 1fr; }
  .impact-header .section-title,
  .funding-header .section-title { font-size: 2rem; }
}



/* hero elligiblity section */

/* .eligibility-app{
  max-width: 550px;
} */




/* about us section css */
.orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
}

.orb1 {
  background: #269D9D;
  top: 10%;
  left: 5%;
}

.orb2 {
  background: #333333;
  bottom: 10%;
  right: 5%;
}


/* cursor animations */
/* Hide default cursor */
/* body {
  cursor: none;
} */

/* Main small dot */
/* .cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #333333;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
} */

/* Outer smooth follower */
/* .cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid #269D9D;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  box-shadow: 0 0 20px rgba(38, 157, 157, 0.4);
}


.cursor-follower {
  mix-blend-mode: difference;
} */




/* random orb animation */
/* .ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 10000;
} */
/* .ambient-orb {
  filter: blur(60px);
  opacity: 0.15;
} */

/* Variants */
/* .orb-a {
  width: 120px;
  height: 120px;
  background: #269D9D;
  top: 20%;
  left: 10%;
}

.orb-b {
  width: 80px;
  height: 80px;
  background: #333333;
  bottom: 15%;
  right: 10%;
} */


/* .orb-a {
  width: 120px;
  height: 120px;
  background: #269D9D;
  top: 20%;
  left: 10%;
  animation: float 10s ease-in-out infinite alternate;
}

@keyframes float {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(20px, 15px);
  }
} */


.glow-wrapper {
  position: relative;
  display: inline-block;
}

.glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
  
  background: radial-gradient(
    circle,
    rgba(38, 157, 157, 0.35) 0%,
    rgba(38, 157, 157, 0.15) 30%,
    rgba(38, 157, 157, 0.05) 55%,
    transparent 70%
  );

  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.orb1 {
  width: 250px;
}

.orb2 {
  width: 180px;
  background: radial-gradient(
    circle,
    rgba(38,157,157,0.2),
    transparent 70%
  );
  transform: translate(-30%, -30%);
}


.glow-top-left {
  top: 0;
  left: 0;
  transform: translate(-30%, -30%);
}

.glow-top-right {
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
}

.glow-bottom-left {
  bottom: 0;
  left: 0;
  transform: translate(-30%, 30%);
}

.glow-bottom-right {
  bottom: 0;
  right: 0;
  transform: translate(30%, 30%);
}



/* India SVG Map */
.impact-map-wrapper { margin-bottom: 3rem; }
.impact-map-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.impact-map-container svg { width: 100%; height: auto; display: block; }
.impact-map-container svg path {
  fill: #1e4d4d;
  stroke: rgba(38,157,157,0.3);
  stroke-width: 0.5px;
  cursor: pointer;
  transition: fill 0.25s ease, filter 0.25s ease;
}
.impact-map-container svg path:hover {
  fill: var(--color-primary);
  filter: drop-shadow(0 0 8px rgba(38,157,157,0.6));
}
.impact-map-container svg path.map-state--active { fill: #1D7D7D; }




/* --- Our National Impact & Funding Section --- */
.impact-section {
  position: relative;
  background-color: var(--bg-secondary);
}

.impact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), #1e7070);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.metric-card {
  background: var(--bg-card);
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--color-primary), #48b6b6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(38, 157, 157, 0.3);
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-card .metric-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(38, 157, 157, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.4s ease;
}

.metric-card:hover .metric-icon {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(38, 157, 157, 0.2);
}

.metric-card .metric-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  line-height: 1;
}

.metric-card .metric-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

/* Funding Options Additions */
.funding-header {
  text-align: center;
  border-top: 1px solid var(--color-border);
  /* width: 50%; */
}

.filter-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.8rem;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  border-color: var(--color-primary);
  /* color: var(--color-primary); */
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(38, 157, 157, 0.25);
}

.filter-btn.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 6px 15px rgba(38, 157, 157, 0.25);
}

.funding-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.funding-card {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* .funding-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(38, 157, 157, 0.4);
} */

.fc-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--bg-secondary);
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  align-self: flex-start;
  border: 1px solid rgba(38, 157, 157, 0.1);
}

.fc-tag.highlight {
  background: rgba(38, 157, 157, 0.1);
  color: var(--color-primary-hover);
  border: 1px solid rgba(38, 157, 157, 0.3);
}

.fc-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-main);
  font-weight: 900;
  font-family: var(--font-heading);
}

.fc-desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .impact-metrics-grid, .funding-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .impact-metrics-grid, .funding-cards-grid {
    grid-template-columns: 1fr;
  }
}


.mega-column h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-column ul li {
  margin-bottom: 0.5rem;
}

.mega-column ul li a {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.15rem 0;
  display: inline-flex;
  transition: var(--transition-fast);
  text-decoration: none;
  position: relative;
  text-transform: none; /* override nav uppercase */
  line-height: 1.3;
}

/* --- Utility Classes --- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-5 { padding-top: 3rem; }
.border-t { border-top: 1px solid var(--color-border); }
.w-100 { width: 100%; }







.chart-map{
  display: flex;
  align-items: center;
  /* justify-content: space-evenly; */
  justify-content: space-between;
  gap: 2em;
  /* width: 50%; */
}

.chart-box{
  /* width: 500px; */
  width: 100%;
  background: rgba(255,255,255,0.03); 
  border: 1px solid rgba(255,255,255,0.08); 
  border-radius: 16px; 
  padding: 1.5rem; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin: 0 auto;
}

.chart-header {
  color: var(--color-primary); 
  font-size: 1.15rem; 
  font-weight: 800; 
  border-bottom: 2px solid rgba(38,157,157,0.1); 
  padding-bottom: 0.8rem; 
  margin-bottom: 1.2rem; 
  display: flex; 
  align-items: center; 
  gap: 0.5rem;
}

.map-footer-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.map-footer-stats span {
  font-size: 0.85rem; 
  /* color: rgba(255,255,255,0.5); */
  font-weight: 600;
}
.map-footer-stats strong {
  font-size: 1.3rem; 
  font-weight: 800;
  color: var(--color-primary);
}

.chart-items{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}








.mega-menu-wrapper {
    position: relative;
}

.dropdown-icon {
    margin-left: 5px;
}

.mega-menu {
    position: absolute;
    left: 0;
    width: 800px;
    background: #f8f9fb;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    align-items: center;
    display: flex;
    z-index: 1200;
}

/* Highlight Box */
.service.highlight {
    display: flex;
    align-items: center;
    /* gap: 15px;  */
    padding: 20px;
    /* background: linear-gradient(to right, #ffffff, #dcf3f3); */
    border-radius: 15px;
    border: 1px solid #269D9D;
    cursor: pointer;
    justify-content: space-between;
}

.highlight-text h3 {
    margin: 0;
    color: #269D9D;
}

.highlight-text p {
    margin: 3px 0 0;
    color: #555;
}

.arrow {
    font-size: 18px;
    transition: 0.3s;
}

/* Funding dropdown */
.funding-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    margin-top: 10px;
}

.funding-options.open {
    max-height: 300px;
}

.funding-box {
    background-color: var(--bg-secondary2);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Grid services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.service {
    display: flex;
    gap: 10px;
    align-items: center;
    background: transparent;
    padding: 10px;
    border-radius: 10px;
}

.service h4 {
    margin: 0;
}

.service p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #666;
}

/* Icons */
.icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
 
}

.red { background: #fdecea; color: #e53935; }
.blue { background: #e3f2fd; color: #1e88e5; }
.green { background: #e8f5e9; color: #43a047; }
.orange { background: #fff3e0; color: #fb8c00; }
.purple { background: #ede7f6; color: #5e35b1; }
.pink { background: #fce4ec; color: #d81b60; }
.violet { background: #f3e5f5; color: #8e24aa; }


.tc-black{
  color: #000000;
}





/* funding extra css */

/* ================================
   FUNDING CARDS GRID
================================ */
.funding-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  /* width: 50%; */
}

/* ================================
   FUNDING CARD (MAIN)
================================ */
.funding-card {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;

  /* DARK GLASS GRADIENT */
  /* background: linear-gradient(
    145deg,
    #1A1A1A 0%,
    #242424 40%,
    #333333 100%
  ); */
  background-color: #1e7070;
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 
    0 15px 40px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.05);

  transition: all 0.35s ease;
}

/* ================================
   GLOW EFFECT (MULTI ORB)
================================ */
.funding-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(38,157,157,0.5);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  transition: 0.4s;
}

.funding-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.12);
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

/* ================================
   HOVER EFFECT
================================ */
.funding-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 
    0 25px 70px rgba(0,0,0,0.8),
    0 0 40px rgba(38,157,157,0.15);
}

.funding-card:hover::before {
  opacity: 0.4;
  transform: scale(1.1);
}

/* ================================
   HEADER
================================ */
.fc-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.fc-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(38,157,157,0.15);
  color: #269D9D;
  font-size: 18px;

  box-shadow: inset 0 0 10px rgba(38,157,157,0.2);
}

/* ================================
   TITLE
================================ */
.fc-title-group h4 {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.fc-title-group .subtitle {
  font-size: 13px;
  color: #9CA3AF;
  margin-top: 2px;
}

/* ================================
   DESCRIPTION
================================ */
.fc-description {
  font-size: 14px;
  color: #D1D5DB;
  margin: 10px 0 14px;
  line-height: 1.5;
}

/* ================================
   TAGS
================================ */
.fc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.fc-tag {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;

  background: rgba(255,255,255,0.06);
  color: #cbd5e1;

  border: 1px solid rgba(255,255,255,0.08);
}

/* ================================
   FOOTER
================================ */
.fc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ================================
   METRICS
================================ */
.fc-metrics {
  display: flex;
  align-items: center;
  gap: 14px;
}

.metric {
  display: flex;
  flex-direction: column;
}

.m-label {
  font-size: 11px;
  color: #9CA3AF;
}

.m-value {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
}

.metric-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.08);
}

/* ================================
   ACTION BUTTON
================================ */
.fc-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(38,157,157,0.15);
  color: #269D9D;

  transition: all 0.3s ease;
}

.fc-action-btn:hover {
  background: #269D9D;
  color: #fff;
  transform: translateX(4px);
}

/* ================================
   REVEAL ANIMATION (OPTIONAL)
================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


.tc-white{
  color: white;
}


.popup-left .hero-title{
  font-size: xx-large;
}


.our-strategy{
  background-color: #F2FAFA;
}







/* chart extra css */

.progress {
    height: 8px;
    background: rgba(38,157,157,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary), #4fd1c5);
    border-radius: 10px;
    transition: width 1.5s ease;
}

/* Circle Chart */
.circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: conic-gradient(var(--color-primary) 0%, rgba(38,157,157,0.1) 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem auto;
    position: relative;
}

.circle::before {
    content: "";
    width: 54px;
    height: 54px;
    background: var(--bg-card);
    border-radius: 50%;
    position: absolute;
}

.circle-text {
    position: relative;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--color-primary);
}







/* about extra css */

.vision-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff, #F2FAFA);
  text-align: center;
}

.vision-container {
  max-width: 800px;
  margin: auto;
}

.vision-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
}

.vision-title span {
  background: linear-gradient(90deg, #269D9D, #4fd1c5);
  -webkit-background-clip: text;
  color: transparent;
}

.vision-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.vision-content p:last-child {
  font-weight: 600;
  color: #269D9D;
}

/* Responsive */
@media (max-width: 768px) {
  .vision-title {
    font-size: 26px;
  }

  .vision-content p {
    font-size: 14px;
  }
}


.half-btn{
  width: 50%;
}


.bg-css{
  max-width: 550px;
  background: rgb(61 61 61 / 20%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}


/* view counter css */

#visitCount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  background: #2a5858;
  color: #ffffff;

  padding: 5px 10px;
  border-radius: 12px;
  margin-bottom: 10px;

  font-size: 24px;
  font-weight: 600;
  letter-spacing: 12px; /* spacing between digits */

  min-width: 60px;
  text-align: center;

  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Optional: style the label */
.view-count {
  font-size: 16px;
  color: #000000;
  /* display: flex; */
  align-items: center;
  gap: 10px;
}

footer p {
  color: rgba(255, 255, 255, 0.7);;
}

footer li {
  text-align: start;
}

#eligibility-title{
  color: #ffffff;
}

.footer-p{
  color: white;
}



/* Responsive */

@media (max-width: 1200px){
  .nav-links{
    padding-right:3%;
    z-index: 1100;
  }
}

@media (max-width: 1100px){
  .about-page-p{
    text-align: justify;
  }
  .nav-links{
  padding-right:3%;
  z-index: 1100;
  }
}

@media (max-width: 1070){
  body{
    width: 100%;
  }
  .hero{
    width: 100%;
  }
  .chart-box{
    max-width: 500px;
    min-width: 450px;
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.08); 
    border-radius: 16px; 
    padding: 1.5rem; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin: 0 auto;
  }
}

/* @media (max-width: 1060){
  body{
    width: 100%;
  }
  .hero{
    width: 100%;
  }

} */

.side-charts{
  min-width: 50%;
}

.d-flex{
  display: flex;
}

/* =========================
   RESPONSIVE DESIGN FIX
========================= */

/* Tablet */
@media (max-width: 1024px) {

  .container {
    padding: 0 1.5rem;
  }

  .hero .container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    padding: 2rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .box-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section .grid-split,
  .why-choose-us {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
   .funding-options {
    grid-template-columns: repeat(3,1fr);
    height: auto;
    width: auto;
    overflow: scroll;
}


.services-grid {
    grid-template-columns: repeat(2, 1fr);
}

.mega-menu {
  width: auto;
}
}


/* Mobile */
@media (max-width: 769px) {

  header {
    padding: 1rem 0;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    gap: 1rem;
    display: none;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .box-grid {
    grid-template-columns: 1fr;
  }

  .checklist {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-image {
    height: 100%;
    width: 68%;
  }

 .funding-options {
    grid-template-columns: repeat(3,1fr);
    height: auto;
    width: auto;
    overflow: scroll;
}


.services-grid {
    grid-template-columns: repeat(2, 1fr);
}

.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;       
    overflow-y: auto;
    overflow-x: visible !important;
    z-index: 1100;   
} 
.mega-menu {
  width: auto;
  z-index: 1200;

}
.mega-menu {
  position: fixed !important;
  top: 100px;
  /* left: 10px; */
  z-index: 999999 !important;
}  
}

@media (max-width: 516px){
  .funding-options {
    grid-template-columns: repeat(2,1fr);
    height: auto;
    width: auto;
    overflow: scroll;
    z-index: 1000;
}

.services-grid {
    grid-template-columns: repeat(2 , 1fr);
}

.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;       
    overflow-y: auto;
    overflow-x: visible !important;
    z-index: 1100;   
} 
.mega-menu {
  width: auto;
  z-index: 1200; 
}

}


/* Small Mobile */
@media (max-width: 480px) {

  .hero-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }

  .counter-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    height: 100%;
    width: 100%;
  }
   .funding-options {
    grid-template-columns: repeat(2,1fr);
    height: auto;
    width: auto;
    overflow: scroll;
    z-index: 1000;
}

.services-grid {
    grid-template-columns: repeat(2 , 1fr);
}

.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;       
    overflow-y: auto;
    overflow-x: visible !important;
    z-index: 1100;   
} 
.mega-menu {
  width: auto;
  z-index: 1200;

}
@media (max-width: 480px) {
  .popup-content {
    width: 95%;
    max-height: 90vh;
    padding: 1rem;
  }
}

}

@media (max-width: 426px) {
  .chart-map{
    display: flex;
    flex-direction: column;
  }

  .box-grid{
    display: flex;
    flex-direction: column;
  }
  /* .premium-contact-card{
    width: 63%;
  } */
  .glass{
    display: flex;
    flex-direction: column;
  }

  .about-image {
    height: 100%;
    width: 100%;
  }

  .cta-numbers{
    flex-direction: column;
  }

  .mini-map{
    width: 63%;
  }
  .funding-options {
    grid-template-columns: repeat(2,1fr);
    height: auto;
    width: auto;
    overflow: scroll;
}


.services-grid {
    grid-template-columns: repeat(1, 1fr);
}

.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;       
    overflow-y: auto;
    overflow-x: visible !important;
    z-index: 1100;   
} 
.mega-menu {
  width: auto;
  z-index: 1200;

}

}

@media (max-width: 376px){

  .mini-map{
    width: 55%;
  }

  /* .premium-contact-card{
    width: 55%;
  } */

  .funding-options {
    grid-template-columns: repeat(1,1fr);
    /* height: 500px; */
    width: 250px;
    overflow: scroll;
}


.services-grid {
    grid-template-columns: repeat(1, 1fr);
}

.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;       
    overflow-y: auto;
    overflow-x: visible !important;
    z-index: 1100;    
} 
.mega-menu {
    width: auto;
    z-index: 1200;
    }
  
}


@media (max-width: 321px){

  .funding-card {
    width: 85%;
  }

  /* .form-container{
    padding: 20px;
  } */

  .form-control{
    width: 75%;
  }
 

  .checklist-item{
    width: 80%;
  }

  .career-text{
    font-size: 3rem;
  }

  .mini-map{
    width: 45%;
  }
    

.funding-options {
    grid-template-columns: repeat(1,1fr);
    height: 500px;
    width: auto;
    overflow: scroll;
}


.services-grid {
    grid-template-columns: repeat(1, 1fr);
}

.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;       
    overflow-y: auto;
    overflow-x: visible !important;    
    z-index: 1100;
} 
.mega-menu {
  width: auto;
  z-index: 1200;
}
.popup-right-side{
  display: grid;
  justify-content: center;
  align-items: center;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
}
}


@media (max-width: 769px){
  .mobile-toggle,
  .close-btn,
  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99999;  
    display: block;
}

}

