/* ================================================================
   Pinnacle Startup India Advisory Pvt Ltd — Main Stylesheet
   ================================================================ */

/* ---------- Google Fonts ---------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/* ---------- CSS Variables ---------- */
:root {
  --primary: #00028c;
  --primary-dark: #000159;
  --primary-light: #4c4ed9;
  --accent: #ff8c00;
  --accent-dark: #cc7000;
  --accent-light: #ffb347;
  --secondary: #ffcc00;
  --dark: #060b13;
  --dark2: #0f172a;
  --text: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --light-bg: #f8fafc;
  --light-bg2: #f1f5f9;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(0, 2, 140, 0.1);
  --shadow-sm: 0 4px 12px rgba(0, 2, 140, 0.05);
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: "Poppins", "Inter", sans-serif;

  /* Enego Inspired Colors */
  --enego-blue: #000a1f;
  --enego-red: #dc2626;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(12px);
}

/* Global Row Width Fix */
.row {
  margin-right: 0;
  margin-left: 0;
}
.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

/* Glassmorphism & Enego Utilities */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border) !important;
  border-radius: 20px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: var(--transition);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--enego-red);
  transform: translateY(-8px);
}

.bg-enego-blue {
  background-color: var(--enego-blue) !important;
}

.text-enego-red {
  color: var(--enego-red) !important;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--enego-red);
  z-index: 2000;
  transition: width 0.1s ease-out;
}

.btn-enego {
  background: var(--enego-red);
  color: #fff !important;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-enego:hover {
  background: #b91c1c;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
  color: #fff !important;
}

.hindi-tagline {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  margin-top: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Floating Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Section Background Overlays */
.bg-grid {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
}

.glow-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(220, 38, 26, 0.15), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
}

/* ---------- Typography ---------- */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-title span {
  color: var(--accent);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: #fff;
}

.btn-accent-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
}
.btn-accent-custom:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
  color: #fff;
}

/* ---------- Utility Classes ---------- */
.text-primary {
  color: var(--primary) !important;
}
.text-accent {
  color: var(--accent) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}

.bg-primary-light {
  background-color: rgba(0, 2, 140, 0.1) !important;
}
.bg-accent-light {
  background-color: rgba(255, 140, 0, 0.1) !important;
}
.bg-secondary-light {
  background-color: rgba(255, 204, 0, 0.1) !important;
}

/* Overriding Bootstrap Danger for Branding */
.bg-danger-light {
  background-color: rgba(255, 140, 0, 0.1) !important;
}
.text-danger {
  color: var(--accent) !important;
}
.btn-danger {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
}
.btn-danger:hover {
  background-color: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
}
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  padding: 0.82rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ================================================================
   NAVBAR
   ================================================================ */
.main-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(21, 96, 189, 0.08);
  padding: 0.6rem 0;
  transition: var(--transition);
  z-index: 1000;
}
.main-navbar.scrolled {
  box-shadow: 0 4px 30px rgba(21, 96, 189, 0.15);
}
.navbar-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.navbar-nav .nav-link {
  color: #1e293b !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 1.2rem !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--enego-red);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  opacity: 1;
  bottom: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--enego-red) !important;
}

/* Dropdown */
.dropdown-toggle::after {
  display: none !important;
}

/* Dropdown Hover Effect (Desktop Only) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 10px 50px rgba(21, 96, 189, 0.18);
  background: #fff;
  min-width: 220px;
  padding: 0.8rem 0;
  animation: dropIn 0.25s ease;
}
@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdown-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.55rem 1.5rem;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--light-bg);
  color: var(--primary);
  padding-left: 2rem;
}

.navbar-cta {
  background: var(--enego-red) !important;
  color: #fff !important;
  padding: 0.6rem 1.8rem !important;
  border-radius: 50px;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25);
}
.navbar-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
  color: #fff !important;
}
.navbar-cta::after {
  display: none !important;
}

/* Mobile toggler */
.navbar-toggler {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(21,96,189,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
  min-height: 90vh;
  background: var(--enego-blue);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 50px 0 50px;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  animation: floatShape 8s ease-in-out infinite;
}
.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.15) 0%,
    transparent 70%
  );
  top: -200px;
  right: -100px;
  animation-delay: 0s;
  filter: blur(80px);
}
.hero-shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(13, 63, 143, 0.4) 0%,
    transparent 70%
  );
  bottom: -150px;
  left: -100px;
  animation-delay: 3s;
  filter: blur(60px);
}
.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  top: 30%;
  left: 30%;
  animation-delay: 1.5s;
  filter: blur(40px);
}
@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 0.5rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge i {
  color: var(--accent);
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent), #7df9c5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-btn-primary {
  background: var(--accent);
  color: var(--dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 200, 150, 0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 45px rgba(0, 200, 150, 0.55);
  color: var(--dark);
}
.hero-btn-outline {
  background: transparent;
  color: #fff;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-num span {
  color: var(--accent);
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================================================
   HERO GRID VISUAL
   ================================================================ */
.hero-visual-wrap {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hero-grid-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-grid-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-grid-item i {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.hero-grid-item span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Item Colors */
.grid-item-1 i {
  color: #00f2fe;
} /* Cyan */
.grid-item-2 i {
  color: #f093fb;
} /* Pink */
.grid-item-3 i {
  color: #84fab0;
} /* light green */
.grid-item-4 i {
  color: #ff9a9e;
} /* Coral */
.grid-item-5 i {
  color: #a1c4fd;
} /* light blue */
.grid-item-6 i {
  color: #f6d365;
} /* yellow */
.grid-item-7 i {
  color: #4facfe;
} /* blue */
.grid-item-8 i {
  color: #b91c1c;
} /* Red */
.grid-item-9 i {
  color: #fa709a;
} /* reddish pink */

.hero-floating-badge {
  position: absolute;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  width: max-content;
  animation: floatHeroBadge 5s ease-in-out infinite;
}

.badge-delivered {
  top: 15%;
  left: -20%;
}

.badge-rating {
  bottom: 15%;
  right: -20%;
  animation-delay: 2.5s;
}

@keyframes floatHeroBadge {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.02);
  }
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.badge-delivered .badge-icon {
  background: #dcfce7;
  color: #16a34a;
}

.badge-rating .badge-icon {
  background: #dbeafe;
  color: #2563eb;
}

.badge-text .label {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  line-height: 1.2;
}

.badge-text .value {
  display: block;
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 800;
}

/* ================================================================
   SECTIONS COMMON
   ================================================================ */
.section {
  padding: 100px 0;
}
.section-light {
  background: var(--light-bg);
}
.section-dark {
  background: var(--dark);
}
.text-center-section {
  text-align: center;
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(21, 96, 189, 0.18);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: var(--light-bg);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.service-icon.blue {
  color: var(--primary);
}
.service-icon.green {
  color: var(--accent-dark);
}
.service-icon.orange {
  color: #f97316;
}
.service-icon.purple {
  color: #8b5cf6;
}
.service-icon.red {
  color: #ef4444;
}
.service-icon.teal {
  color: #0891b2;
}
.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.7rem;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.service-link:hover {
  gap: 0.8rem;
  color: var(--accent-dark);
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-img-wrap {
  position: relative;
}
.about-main-img {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(21, 96, 189, 0.4);
  min-width: 130px;
}
.about-exp-num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}
.about-exp-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}
.about-feature-list {
  margin-top: 2rem;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.about-feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}
.about-feature-title {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}
.about-feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ================================================================
   STATS / COUNTER SECTION
   ================================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-num .plus {
  color: var(--accent);
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

/* ================================================================
   INDUSTRIES / EXPERTISE
   ================================================================ */
.industry-card-link {
  text-decoration: none !important;
  display: block;
  height: 100%;
}
.industry-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
}
.industry-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(21, 96, 189, 0.25);
}
.industry-card:hover .industry-icon,
.industry-card:hover .industry-title,
.industry-card:hover .industry-desc {
  color: #fff;
}
.industry-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.industry-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}
.industry-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  margin-bottom: 1.5rem;
}
.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}
.why-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--light-bg), var(--light-bg2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary) !important;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}
.why-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.why-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-wrap {
  overflow: hidden;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  box-shadow: 0 20px 60px rgba(21, 96, 189, 0.15);
  transform: translateY(-5px);
}
.testimonial-quote {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-bg2);
}
.author-avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.author-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}
.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.star-rating {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(21, 96, 189, 0.1);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  gap: 1rem;
}
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  transition: var(--transition);
  min-width: 32px;
}
.faq-item.open .faq-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 1.8rem 1.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  display: block;
}

/* ================================================================
   BLOG SECTION
   ================================================================ */
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  /* height: 100%; */
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(21, 96, 189, 0.15);
}
.blog-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.blog-card:hover .blog-img-wrap img {
  transform: scale(1.08);
}
.blog-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-body {
  padding: 1.8rem;
}
.blog-meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.blog-meta i {
  color: var(--primary);
  margin-right: 0.35rem;
}
.blog-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
  line-height: 1.4;
  transition: var(--transition);
}
.blog-card:hover .blog-title {
  color: var(--primary);
}
.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.blog-read-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.blog-read-more:hover {
  gap: 0.8rem;
  color: var(--accent-dark);
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-info-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 20px;
  padding: 3rem;
  color: #fff;
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-info-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.75;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-info-value {
  font-size: 0.95rem;
  font-weight: 500;
}
.contact-info-value a {
  color: #fff;
}
.contact-info-value a:hover {
  opacity: 0.8;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  display: block;
}
.form-control-custom {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--light-bg);
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-control-custom:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(21, 96, 189, 0.1);
}

/* ================================================================
   CLIENTS / LOGOS
   ================================================================ */
.clients-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.client-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 2rem;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  letter-spacing: 1px;
}
.client-logo:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 5px 20px rgba(21, 96, 189, 0.15);
  transform: translateY(-3px);
}

/* ================================================================
   PAGE HERO / INNER PAGES
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1560bd 100%);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.8rem;
}
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb-custom a {
  color: var(--accent);
  font-weight: 600;
}
.breadcrumb-custom i {
  font-size: 0.7rem;
}

/* ================================================================
   TEAM SECTION
   ================================================================ */
.team-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(21, 96, 189, 0.18);
}
.team-img-wrap {
  height: 250px;
  background: var(--light-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--primary);
  position: relative;
  overflow: hidden;
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(21, 96, 189, 0.85),
    rgba(0, 200, 150, 0.85)
  );
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: var(--transition);
}
.team-card:hover .team-overlay {
  opacity: 1;
}
.team-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: var(--transition);
}
.team-social-btn:hover {
  background: #fff;
  color: var(--primary);
}
.team-body {
  padding: 1.8rem;
}
.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.team-role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

/* ================================================================
   CAREER PAGE
   ================================================================ */
.career-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  margin-bottom: 1.5rem;
}
.career-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(21, 96, 189, 0.12);
  transform: translateY(-3px);
}
.job-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--light-bg);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}
.job-tag i {
  color: var(--primary);
}
.job-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.job-apply {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.job-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(21, 96, 189, 0.35);
  color: #fff;
}

/* ================================================================
   FOOTER
   ================================================================ */
.main-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
}
.footer-top {
  padding: 80px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 1.2rem;
}
.footer-brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3rem;
}
.footer-brand-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}
.footer-nav-list li {
  margin-bottom: 0.7rem;
}
.footer-nav-list a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.footer-nav-list a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}
.footer-nav-list i {
  font-size: 0.65rem;
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.footer-contact-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
}
.footer-contact-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-contact-value {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer-contact-value a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-contact-value a:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-social-btn.linkedin:hover {
  background: #0077b5;
}
.footer-social-btn.twitter:hover {
  background: #1da1f2;
}
.footer-social-btn.facebook:hover {
  background: #1877f2;
}
.footer-social-btn.instagram:hover {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.footer-bottom {
  padding: 1.8rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.footer-bottom a:hover {
  color: var(--accent);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ================================================================
   TECH STACK MARQUEE
   ================================================================ */
.tech-marquee-wrap {
  overflow: hidden;
}
.tech-marquee {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}
.tech-marquee-wrap:hover .tech-marquee {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Partner Logo Item Refinement */
.partner-logo-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 100px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.partner-logo-item:hover {
  border-color: rgba(220, 38, 38, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.partner-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.partner-logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.partner-logo-item span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  line-height: 1.2;
}
.tech-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.tech-pill i {
  font-size: 1.1rem;
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(21, 96, 189, 0.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  border: none;
  z-index: 999;
}
.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(21, 96, 189, 0.55);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  .section {
    padding: 70px 0;
  }
  .navbar-logo {
    height: 60px;
  }
  .hero-section {
    padding: 100px 0 60px !important;
    text-align: center;
    overflow: hidden;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }
  .hero-float-card {
    display: none;
  }
  .about-exp-badge {
    bottom: 10px;
    right: 10px;
  }
  .contact-card,
  .contact-info-card {
    padding: 2rem;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 55px 0;
  }
  .navbar-logo {
    height: 50px;
  }
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  .hero-stats {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
  }
  .hero-stat {
    flex: 0 0 45%;
    margin-bottom: 1rem;
  }
  .hero-stat:last-child {
    flex: 0 0 100%;
  }
  .hero-stat-num {
    font-size: 1.6rem;
  }
  .hero-stat-label {
    font-size: 0.65rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 0.8rem;
  }
  .hero-btn-primary,
  .hero-btn-outline {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
  .stats-section .row > * {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem 0;
  }
  .footer-top {
    padding: 50px 0 30px;
  }
  .footer-bottom-links {
    justify-content: center;
  }

  /* Schemes Cards on Mobile */
  .scheme-card {
    padding: 1.5rem;
  }
  .scheme-icon-box {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .scheme-card h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem !important;
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }
  .hero-btns .btn-enego,
  .hero-btns .hero-btn-outline {
    width: 100%;
    justify-content: center;
    margin-left: 0 !important;
  }
  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
  }
  .tab-nav-custom {
    flex-wrap: wrap;
    border-radius: 15px;
    justify-content: center;
    width: 100%;
  }
  .tab-link-custom {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    margin: 2px;
  }
}

/* ================================================================
   NEW PREMIUM COMPONENTS
   ================================================================ */

/* Government Schemes Section */
.scheme-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f1f5f9;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.scheme-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.1);
  border-color: var(--enego-red);
}

.scheme-card .btn-link {
  color: var(--enego-red);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.scheme-icon-box {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  font-size: 1.5rem;
  color: #fff;
}

/* Funding Options Section (Dark) */
.funding-options-section {
  background: #0f172a;
  color: #fff;
  padding: 100px 0;
}
.tab-nav-custom {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: 50px;
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tab-link-custom {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}
.tab-link-custom.active,
.tab-link-custom:hover {
  background: var(--enego-red);
  color: #fff;
}
.funding-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.funding-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--enego-red);
  transform: translateY(-5px);
}
.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--enego-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
}
.funding-card .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.funding-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.stat-small-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.2rem;
}
.stat-small-value {
  font-weight: 700;
  font-size: 1rem;
}

/* Forms & UI Updates */
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.1);
  background: #fff !important;
}

/* Utilities for new sections */
.fs-xs {
  font-size: 0.75rem;
}
.w-60 {
  width: 60px;
}
.h-60 {
  height: 60px;
}
.bg-danger {
  background-color: var(--accent) !important;
}
.bg-danger-light {
  background-color: rgba(255, 140, 0, 0.1) !important;
}
.text-danger {
  color: var(--accent) !important;
}

/* Timeline refinement */
.timeline-dot i {
  font-size: 1.2rem;
}
.timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Form styling refinement */
#eligibility-form input::placeholder,
#eligibility-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.brand-gradient-bg {
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--primary-dark) 50%,
    var(--dark2) 100%
  );
}
.brand-gradient-text {
  background: linear-gradient(135deg, #ff4d4d 0%, #dc2626 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-img-wrapper {
  position: relative;
  padding: 1rem;
}
.about-img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  border: 4px solid var(--accent);
  border-radius: 24px;
  z-index: 0;
  opacity: 0.3;
}
.about-img-wrapper img {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
  z-index: 2;
}

/* Mission, Vision & Values Section */
.foundation-section {
  background: #0f172a;
  color: #fff;
}
.tab-pills-custom {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: 50px;
  display: inline-flex;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tab-pill-link {
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
  background: transparent;
}
.tab-pill-link.active {
  background: var(--accent);
  color: #fff;
}
.tab-pill-link i {
  font-size: 0.8rem;
}

.foundation-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
}
.foundation-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}
.focus-list {
  margin-top: 2rem;
}
.focus-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.focus-item i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--accent);
}

.promise-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}
.promise-item i {
  color: #10b981;
}

.action-cta-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
}

/* Premium Stats Cards */
.stat-card-premium {
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
}
.stat-card-premium:hover {
  background: rgba(15, 23, 42, 0.5);
  transform: translateY(-5px);
  border-color: var(--accent);
}
.stat-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.stat-card-num {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}
.stat-card-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQ Section */
.faq-section {
  background: #fcfcfd;
}
.faq-card {
  background: #fff;
  border-radius: 15px;
  padding: 1.25rem 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.faq-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}
.faq-question {
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  font-size: 1rem;
}
.faq-icon {
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 0.9rem;
}
.faq-card:hover .faq-icon {
  color: var(--primary);
  transform: translateX(5px);
}

/* Animation Delay Utilities */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   PRELOADER
   ================================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.spinner-border {
  width: 3rem;
  height: 3rem;
  color: var(--accent) !important;
}

/* ================================================================
   LEADERSHIP CARDS (REFINED)
   ================================================================ */
.leadership-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.leadership-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.leadership-img-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.leadership-img-wrap img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.leadership-img-wrap img.accent-border {
  border-color: #f12711; /* Red border from image */
}

.leadership-card:hover .leadership-img-wrap img {
  transform: scale(1.05);
}

.leadership-role-badge {
  display: inline-block;
  background: #0f172a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leadership-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 0.5rem;
  margin-bottom: 0.3rem;
}

.leadership-tagline {
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.5px;
}

.leadership-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.leadership-socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  color: #0f172a;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid #e2e8f0;
}

.leadership-socials a:hover {
  background: #0f172a;
  color: #fff;
  transform: translateY(-3px);
}

/* Accent for Name spacing */
.fw-800 { font-weight: 800; }

/* Tech Marquee */
.tech-marquee-wrap {
  display: flex;
  overflow: hidden;
  user-select: none;
}
.tech-marquee {
  display: flex;
  flex-shrink: 0;
  gap: 2rem;
  padding: 0.5rem 0;
  min-width: 100%;
  animation: scrollMarquee 30s linear infinite;
}
.tech-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}
.tech-pill:hover {
  border-color: var(--enego-red);
  transform: scale(1.05);
}

@keyframes scrollMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Scroll Top Refinement */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--enego-red);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1) rotate(10deg);
  color: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #fff;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Fuel Your Business - CTA Refinement (Light Theme) */
.cta-glass-card {
  background: linear-gradient(135deg, rgb(191, 212, 255) 0%, #d6d6d6 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 35px;
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.cta-glass-card::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.03), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-glass-card .section-title {
  color: #0f172a;
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -2px;
}

.cta-btn-primary {
  background: var(--enego-red);
  color: #fff !important;
  font-weight: 800;
  padding: 1.1rem 2.8rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}

.cta-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
  background: #0f172a;
  color: #fff !important;
}

/* Hero Form Card Restored */
.hero-form-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 5;
}

@media (max-width: 991.98px) {
  .hero-form-card {
    padding: 2rem;
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575.98px) {
  .hero-form-card {
    padding: 1.5rem;
    border-radius: 20px;
  }
}

.hero-form-card .form-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.hero-form-card .form-select,
.hero-form-card .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-weight: 500;
}

.hero-form-card .form-select option {
  background: var(--enego-blue);
  color: #fff;
}

.hero-form-card .form-select:focus,
.hero-form-card .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--enego-red);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2);
}

.stage-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .stage-buttons {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.stage-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.8rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.stage-btn.active,
.stage-btn:hover {
  background: var(--enego-red);
  border-color: var(--enego-red);
  transform: translateY(-2px);
}

.form-footer-notes {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* ================================================================
   VERTICAL PROCESS TIMELINE
   ================================================================ */
/* Operational Excellence - Timeline Refinement */
.process-timeline {
  position: relative;
  padding: 80px 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    #e2e8f0 10%,
    #e2e8f0 90%,
    transparent
  );
  transform: translateX(-50%);
}

.process-step-item {
  position: relative;
  width: 100%;
  margin-bottom: 100px;
}

.process-timeline-circle {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: #fff;
  border: 4px solid var(--enego-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--enego-red);
  z-index: 10;
  box-shadow: 0 0 0 12px #f8fafc;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step-item:hover .process-timeline-circle {
  background: var(--enego-red);
  color: #fff;
  transform: translateX(-50%) scale(1.15) rotate(360deg);
  box-shadow:
    0 0 30px rgba(220, 38, 38, 0.3),
    0 0 0 12px #f8fafc;
}

.process-content-card {
  width: 44%;
  background: #fff;
  padding: 3rem;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  position: relative;
}

.process-step-item:hover .process-content-card {
  transform: translateY(-12px);
  border-color: rgba(220, 38, 38, 0.15);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.process-step-left {
  float: left;
  text-align: right;
}
.process-step-right {
  float: right;
  text-align: left;
}

.step-badge {
  background: rgba(220, 38, 38, 0.08);
  color: var(--enego-red);
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.step-time-pill {
  position: absolute;
  top: 3rem;
  background: #f8fafc;
  color: #64748b;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid #f1f5f9;
}

.process-step-left .step-time-pill {
  left: 3rem;
}
.process-step-right .step-time-pill {
  right: 3rem;
}

.process-step-item::after {
  content: "";
  display: table;
  clear: both;
}

.step-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fef2f2;
  color: var(--enego-red);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-top: 1.5rem;
}

@media (max-width: 991px) {
  .process-timeline::before {
    left: 40px;
  }
  .process-timeline-circle {
    left: 40px;
  }
  .process-content-card {
    width: calc(100% - 100px);
    float: right !important;
    text-align: left !important;
  }
}

/* ================================================================
   STRATEGIC PARTNERS (INFINITY SCROLL)
   ================================================================ */
.partner-logo-item {
  width: 220px;
  height: 100px;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  margin: 0 1rem;
  transition: var(--transition);
}

.partner-logo-item:hover {
  transform: translateY(-5px);
  border-color: var(--enego-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.partner-logo-item img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(1);
  opacity: 0.6;
  transition: var(--transition);
}

.partner-logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ================================================================
   IMPACT DASHBOARD GLASSMORPHISM
   ================================================================ */
.impact-section {
  background: radial-gradient(circle at top right, #1e293b, #020617);
  padding: 120px 0;
  color: #fff;
  position: relative;
}

.impact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 0.6rem 1.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-transform: none;
  letter-spacing: 0.5px;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background: #ff4d4d;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px #ff4d4d;
}

.pulsing-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #ff4d4d;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.impact-stat-card {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 1px 1px rgba(255, 255, 255, 0.05);
}

.impact-stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.impact-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 2.2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
}

.impact-stat-card h2 {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 2.8rem;
  margin: 0;
  letter-spacing: -1px;
}

.impact-stat-card .plus-sign {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  margin-left: 2px;
  opacity: 0.9;
}

.impact-stat-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.impact-stat-card p span {
  font-size: 0.75rem;
  font-weight: 400;
  color: #64748b;
  display: block;
  margin-top: 0.2rem;
}

.impact-dashboard-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
}

.dashboard-card-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dashboard-card-title i {
  color: var(--enego-red);
  font-size: 1.1rem;
}

.india-map-visual {
  width: 100%;
  filter: brightness(0.9) drop-shadow(0 0 40px rgba(220, 38, 38, 0.15));
  max-height: 450px;
  object-fit: contain;
}

.map-mini-box {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.map-mini-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.map-mini-box .label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.map-mini-box .value {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 800;
}

.dashboard-progress-item {
  margin-bottom: 1.75rem;
}

.dashboard-progress-label {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.dashboard-progress-label span:last-child {
  color: var(--enego-red);
  font-weight: 800;
}

.dashboard-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  overflow: hidden;
}

.dashboard-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff4d4d, #dc2626);
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.4);
}

.sector-ring-container {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  padding-top: 1rem;
}

.sector-ring-item {
  text-align: center;
}

.ring-visual {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
}

.ring-visual::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 5px solid var(--enego-red);
  border-bottom-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

/* ================================================================
   DYNAMIC ADVISORY HUB TABS
   ================================================================ */
.funding-options-section {
  padding: 80px 0;
}

.tab-nav-custom {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.tab-link-custom {
  padding: 0.75rem 1.7rem;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-link-custom:hover {
  color: #fff;
}

.tab-link-custom.active {
  background: var(--enego-red);
  color: #fff;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

/* ================================================================
   PROCESS SECTION FOOTER CARDS
   ================================================================ */
.process-footer-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
}

.process-footer-card:hover {
  transform: translateY(-5px);
  border-color: var(--enego-red);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.1);
}

.process-footer-card i {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.process-footer-card p {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
}

.ring-visual::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 5px solid var(--enego-red);
  border-bottom-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

.ring-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.impact-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}

.impact-pill {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.impact-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Sector Rings */
.sector-ring-container {
  display: flex;
  justify-content: space-around;
  margin-top: 1.5rem;
}

.sector-ring-item {
  text-align: center;
}

.ring-visual {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 auto 1rem;
  position: relative;
  background: rgba(220, 38, 38, 0.05);
  border-top-color: var(--enego-red);
}

.ring-visual::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 4px solid var(--enego-red);
  border-bottom-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

.ring-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ================================================================
   RESPONSIVE OVERRIDES
   ================================================================ */

@media (max-width: 991px) {
  /* Operational Excellence - Mobile Alignment */
  .process-timeline::before {
    left: 40px;
    transform: none;
  }

  .process-timeline-circle {
    left: 40px;
    transform: translateX(-50%);
  }

  .process-step-item:hover .process-timeline-circle {
    transform: translateX(-50%) scale(1.15) rotate(360deg);
  }

  .process-content-card {
    width: calc(100% - 100px);
    margin-left: 100px !important;
    margin-right: 0 !important;
    float: none !important;
    text-align: left !important;
  }

  .process-step-left,
  .process-step-right {
    float: none !important;
    text-align: left !important;
  }

  .process-step-left .step-time-pill,
  .process-step-right .step-time-pill {
    right: 3rem;
    left: auto !important;
  }

  /* Fuel Your Business - Mobile Sizing */
  .cta-glass-card .section-title {
    font-size: 2.8rem;
  }
  .cta-glass-card {
    padding: 3.5rem 2rem;
  }

  /* Institutional Impact - Dashboard Layout */
  .impact-stat-card {
    margin-bottom: 2rem;
  }

  .india-map-visual {
    max-height: 350px;
  }
}

@media (max-width: 767px) {
  /* Network Excellence - Log Marquee */
  .partner-logo-item {
    min-width: 180px;
    height: 85px;
    padding: 1rem 1.5rem;
  }

  .tech-marquee {
    gap: 2rem;
  }

  /* Fuel Your Business - Text Balancing */
  .cta-glass-card .section-title {
    font-size: 2.2rem;
  }

  .cta-glass-card .hindi-tagline {
    font-size: 1.25rem !important;
  }

  .cta-glass-card p {
    font-size: 1rem !important;
    margin-bottom: 2.5rem !important;
  }

  /* Operational Excellence - Compact Steps */
  .process-content-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .process-timeline-circle {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .step-time-pill {
    top: 2rem;
    right: 1.5rem;
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  /* Ultra-mobile View */
  .cta-btn-primary {
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem;
  }

  .btn-outline-dark {
    width: 100%;
    padding: 1rem;
  }

  .process-timeline::before {
    left: 25px;
  }

  .process-timeline-circle {
    left: 25px;
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .process-content-card {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    padding: 1.5rem;
  }

  .impact-stat-card h2 {
    font-size: 2.5rem;
  }

  .sector-ring-container {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
