/* ==========================================================================
   ADDA CONSULTING LIMITED - EXPANSIVE WIDE-SCREEN & LIQUID GLASS SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,800;1,900&display=swap');

:root {
  --primary-green: #16cc05;
  --primary-green-glow: #00e676;
  --primary-green-dark: #0ba002;
  --primary-green-light: #e8fcd9;
  --accent-cyan: #00e5ff;
  --accent-emerald: #00c853;
  
  --bg-obsidian: #070b12;
  --bg-dark-panel: #0d1526;
  --bg-dark-card: #111a2f;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-white: #ffffff;
  --text-white-muted: #cbd5e1;

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-full: 9999px;
  
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Typography Baseline */
body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding: 5px !important;
  box-sizing: border-box;
}

/* Global Top Margin / Padding across all pages */
main[role="main"] {
  margin-top: 30px;
  padding-top: 15px;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.whatsapp-float-btn:hover {
  transform: scale(1.12);
  background: #1eb956;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

/* Expansive Wide Screen Container System (1480px MAX-WIDTH) */
.container-wide {
  width: 92%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.text-gradient-green {
  background: linear-gradient(135deg, #16cc05 0%, #00e676 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #00e5ff 0%, #16cc05 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* WebGL Background Canvas Container */
#bg-canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

/* Authentic ADDA Brand Logo Watermark Backdrop */
.hero-logo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  width: 80%;
  max-width: 1200px;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: brightness(0) opacity(0.035);
}

.about-hero-logo-watermark {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 35px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  pointer-events: none;
  user-select: none;
}

.cta-logo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.05);
  width: 80%;
  max-width: 1100px;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: brightness(0) opacity(0.08);
}

/* Mobile Nav Drawer Overlay (Figma Exact NAV PAGE MOBILE) */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition-smooth);
  overflow-y: auto;
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-item {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.mobile-nav-item.active, .mobile-nav-item:hover {
  color: var(--primary-green) !important;
}

/* Core Values Clean Grid */
.core-value-item {
  text-align: center;
  padding: 16px 12px;
  transition: transform 0.35s var(--transition-smooth);
}

.core-value-item:hover {
  transform: translateY(-5px);
}

.core-value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease;
}

.core-value-item:hover .core-value-icon {
  transform: scale(1.12) rotate(6deg);
}

.core-value-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.core-value-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Large Services Visual Feature Cards (Figma Exact SERVICE PAGE) */
.service-feature-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.4s var(--transition-smooth);
}

.service-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(22, 204, 5, 0.22);
  border-color: rgba(22, 204, 5, 0.4);
}

.service-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--transition-smooth);
}

.service-feature-card:hover .service-feature-img {
  transform: scale(1.05);
}

.service-feature-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 24px 24px 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
}

.service-feature-card:hover .service-feature-overlay {
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(22, 204, 5, 0.18);
}

/* Liquid Glass Cards & Panels */
.glass-panel-light {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(22, 204, 5, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  transition: all 0.4s var(--transition-smooth);
}

.glass-panel-light:hover {
  border-color: rgba(22, 204, 5, 0.45);
  box-shadow: 0 25px 60px rgba(22, 204, 5, 0.16), inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-5px);
}

.glass-panel-dark {
  background: rgba(13, 21, 38, 0.8);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-xl);
  transition: all 0.4s var(--transition-smooth);
}

.glass-panel-dark:hover {
  border-color: rgba(22, 204, 5, 0.5);
  box-shadow: 0 30px 70px rgba(22, 204, 5, 0.25);
  transform: translateY(-5px);
}

/* Dynamic Glowing Buttons */
.btn-adda-primary {
  background: linear-gradient(135deg, #16cc05 0%, #0fa103 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 10px 30px rgba(22, 204, 5, 0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.35s var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  line-height: 1.2;
}

.btn-adda-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-adda-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 45px rgba(22, 204, 5, 0.55);
  color: #ffffff !important;
}

.btn-adda-primary:hover::before {
  left: 100%;
}

.btn-adda-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  color: var(--text-main) !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(15, 23, 42, 0.18);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.35s var(--transition-smooth);
  line-height: 1.2;
}

.btn-adda-glass:hover {
  border-color: var(--primary-green);
  color: var(--primary-green) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(22, 204, 5, 0.25);
  background: #ffffff;
}

/* White CTA Buttons with Hover Effects */
.btn-adda-cta-white {
  background: #ffffff;
  color: var(--primary-green-dark) !important;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.35s var(--transition-smooth);
  line-height: 1.2;
}

.btn-adda-cta-white:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  background: #ffffff;
  color: var(--primary-green) !important;
}

.btn-adda-cta-outline {
  background: transparent;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.35s var(--transition-smooth);
  line-height: 1.2;
}

.btn-adda-cta-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Header Navbar */
.adda-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--transition-smooth);
}

.adda-header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(22, 204, 5, 0.18);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.navbar-brand-img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand-img:hover {
  transform: scale(1.05);
}

.adda-nav-link {
  color: #1e293b !important;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 16px;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
}

.adda-nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: var(--primary-green);
  transition: all 0.3s var(--transition-smooth);
  transform: translateX(-50%);
  border-radius: 2px;
}

.adda-nav-link:hover, .adda-nav-link.active {
  color: var(--primary-green) !important;
}

.adda-nav-link:hover::after, .adda-nav-link.active::after {
  width: 28px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 145px;
  padding-bottom: 70px;
  overflow: hidden;
  z-index: 2;
}

.hero-heading {
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 680px;
}

.hero-description {
  font-size: 1.05rem;
  color: #64748b;
  margin-bottom: 30px;
  max-width: 640px;
}

.hero-media-wrapper {
  position: relative;
  border-radius: 36px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(22, 204, 5, 0.25), rgba(0, 229, 255, 0.15));
  backdrop-filter: blur(24px);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.14);
}

.hero-img-main {
  width: 100%;
  height: 490px;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

.floating-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 204, 5, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatAnim 4.5s ease-in-out infinite;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Strategic Partners Marquee */
.partners-section {
  padding: 40px 0;
  background: rgba(248, 250, 252, 0.75);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.partner-marquee-container {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
}

.partner-marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: marqueeFlow 28s linear infinite;
}

.partner-marquee-container:hover .partner-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeFlow {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-logo-item {
  height: 58px;
  object-fit: contain;
  filter: none;
  opacity: 0.95;
  padding: 10px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s var(--transition-smooth);
  flex-shrink: 0;
}

.partner-logo-item:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-5px) scale(1.08);
  background: #ffffff;
  border-color: rgba(22, 204, 5, 0.5);
  box-shadow: 0 16px 40px rgba(22, 204, 5, 0.28);
}

/* Innovation Dark Obsidian Section */
.innovation-section {
  position: relative;
  background: var(--bg-obsidian);
  color: var(--text-white);
  padding: 85px 0;
  z-index: 2;
  overflow: hidden;
}

.innovation-section p,
.innovation-section .text-white-50 {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 400;
  line-height: 1.7;
}

.innovation-section::before {
  content: '';
  position: absolute;
  top: -250px;
  right: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(22, 204, 5, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.stat-grid-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.35s var(--transition-smooth);
}

.stat-grid-card:hover {
  background: rgba(22, 204, 5, 0.1);
  border-color: rgba(22, 204, 5, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(22, 204, 5, 0.2);
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #e2e8f0;
  font-weight: 600;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 1.05rem;
}

.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(22, 204, 5, 0.22);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* Core Services Section */
.services-section {
  padding: 85px 0;
  position: relative;
  z-index: 2;
}

.service-card-wrapper {
  height: 100%;
}

.service-card-glass {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 26px;
  padding: 34px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-cyan));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card-glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(22, 204, 5, 0.16);
  border-color: rgba(22, 204, 5, 0.35);
}

.service-card-glass:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(22, 204, 5, 0.12);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.service-card-glass:hover .service-icon-box {
  background: var(--primary-green);
  color: #ffffff;
  transform: scale(1.08) rotate(6deg);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-readmore {
  color: var(--primary-green);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.service-readmore:hover {
  gap: 12px;
  color: var(--primary-green-dark);
}

/* Industries Section */
.industries-section {
  padding: 75px 0;
  background: rgba(248, 250, 252, 0.85);
  position: relative;
  z-index: 2;
}

.industry-pill {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.09);
  padding: 18px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-main);
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.35s var(--transition-smooth);
}

.industry-pill:hover {
  background: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(22, 204, 5, 0.3);
}

/* Why Choose ADDA Green Section */
.why-adda-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.why-adda-container {
  background: linear-gradient(135deg, #0ba002 0%, #16cc05 100%);
  border-radius: 36px;
  padding: 55px 50px;
  color: #ffffff;
  box-shadow: 0 30px 70px rgba(22, 204, 5, 0.28);
  position: relative;
  overflow: hidden;
}

.why-adda-container p,
.why-adda-container .text-white-50 {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.65;
  opacity: 0.98 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.why-adda-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.16) 0%, transparent 65%);
  pointer-events: none;
}

.why-num-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  border: 1.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
  color: #ffffff;
}

/* Testimonials Carousel */
.testimonials-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.testimonial-card-glass {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 45px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote-icon {
  font-size: 3.2rem;
  color: var(--primary-green);
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1.18rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 28px;
  font-style: normal;
  font-weight: 500;
}

/* FAQ Accordion */
.faq-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 18px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item.active {
  border-color: var(--primary-green);
  box-shadow: 0 12px 35px rgba(22, 204, 5, 0.12);
}

.faq-question {
  padding: 22px 28px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-toggle-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(22, 204, 5, 0.12);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--primary-green);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth), padding 0.4s ease;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px 28px;
}

/* CTA Banner Section */
.cta-banner-section {
  padding: 70px 0;
  position: relative;
  z-index: 2;
}

.cta-banner-card {
  background: linear-gradient(135deg, #0ba002 0%, #16cc05 100%);
  border-radius: 32px;
  padding: 65px 40px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(22, 204, 5, 0.32);
  position: relative;
  overflow: hidden;
}

.cta-banner-card p,
.cta-banner-card .text-white-50 {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 1.12rem;
  line-height: 1.65;
  opacity: 0.98 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Footer Section */
.adda-footer {
  background: var(--bg-obsidian);
  color: var(--text-white-muted);
  padding-top: 65px;
  padding-bottom: 35px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-white-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.98rem;
}

.footer-links a:hover {
  color: var(--primary-green);
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.35s var(--transition-smooth);
}

.whatsapp-widget:hover {
  transform: scale(1.12) rotate(12deg);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.65);
}

/* Responsive Breakpoints (< 992px & < 576px) */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .hero-heading {
    font-size: 2.3rem;
  }
  .why-adda-container {
    padding: 35px 24px;
    border-radius: 24px;
  }
  .cta-banner-card {
    padding: 45px 24px;
    border-radius: 24px;
  }
  .testimonial-card-glass {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .service-feature-card {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .btn-adda-primary,
  .btn-adda-glass,
  .btn-adda-cta-white,
  .btn-adda-cta-outline {
    width: 100%;
    margin-bottom: 8px;
  }
  .partner-logo-item {
    height: 44px;
    padding: 6px 14px;
  }
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 28px;
  }
  .service-feature-card {
    height: 350px;
  }
}
