/* 
   Udaanah Innovation - Unified Global Stylesheet
   Features: 7 Accent Themes, Dark/Light toggles, Premium Glassmorphism, Mega-Footer,
   and layout rules for all subpages and home page sections.
*/

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

:root {
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Default Theme: Corporate Blue */
  --primary-color: #2563eb;
  --primary-rgb: 37, 99, 235;
  --primary-hover: #1d4ed8;
  
  --secondary-color: #0f172a;
  --secondary-rgb: 15, 23, 42;
  
  /* Light Mode Base Surface Colors */
  --bg-body: #f8fafc;
  --bg-body-rgb: 248, 250, 252;
  --text-main: #1e293b;
  --text-muted: #64748b;
  
  /* Glassmorphism Surface Defaults */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-bg-hover: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-border-hover: rgba(var(--primary-rgb), 0.25);
  --glass-shadow: rgba(15, 23, 42, 0.05);
  --glass-blur: 14px;
  
  --card-shadow: 0 8px 32px 0 var(--glass-shadow);
  --card-shadow-hover: 0 16px 40px 0 rgba(var(--primary-rgb), 0.12);

  --gradient-hero: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.8) 100%);
  --blob-opacity: 0.18;
  --transition-speed: 0.3s;
}

/* 2. Theme Presets */

/* Theme 1: Corporate Blue */
[data-theme="corporate-blue"] {
  --primary-color: #2563eb;
  --primary-rgb: 37, 99, 235;
  --primary-hover: #1d4ed8;
}

/* Theme 2: Emerald Green */
[data-theme="emerald-green"] {
  --primary-color: #059669;
  --primary-rgb: 5, 150, 105;
  --primary-hover: #047857;
}

/* Theme 3: Royal Purple */
[data-theme="royal-purple"] {
  --primary-color: #7c3aed;
  --primary-rgb: 124, 58, 237;
  --primary-hover: #6d28d9;
}

/* Theme 4: Premium Gold */
[data-theme="premium-gold"] {
  --primary-color: #d97706;
  --primary-rgb: 217, 119, 6;
  --primary-hover: #b45309;
}

/* Theme 5: Dark Professional */
[data-theme="dark-professional"] {
  --primary-color: #6366f1;
  --primary-rgb: 99, 102, 241;
  --primary-hover: #4f46e5;
}

/* Theme 6: Orange Startup */
[data-theme="orange-startup"] {
  --primary-color: #f97316;
  --primary-rgb: 249, 115, 22;
  --primary-hover: #ea580c;
}

/* Theme 7: Modern Teal */
[data-theme="modern-teal"] {
  --primary-color: #14b8a6;
  --primary-rgb: 20, 184, 166;
  --primary-hover: #0d9488;
}

/* 3. Dark Mode Overrides */
[data-bs-theme="dark"] {
  --bg-body: #030712;
  --bg-body-rgb: 3, 7, 18;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;

  --secondary-color: #f8fafc;
  --secondary-rgb: 248, 250, 252;

  --glass-bg: rgba(17, 24, 39, 0.55);
  --glass-bg-hover: rgba(17, 24, 39, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(var(--primary-rgb), 0.35);
  --glass-shadow: rgba(0, 0, 0, 0.35);
  
  --gradient-hero: linear-gradient(135deg, rgba(3, 7, 18, 0.95) 0%, rgba(17, 24, 39, 0.85) 100%);
  --blob-opacity: 0.3;
}

/* 4. Base Styles */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px; /* Navbar compensation */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  overflow-x: hidden;
  transition: background-color var(--transition-speed), color var(--transition-speed);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}
a:hover {
  color: var(--primary-hover);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
  background: rgba(var(--primary-rgb), 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--primary-rgb), 0.6);
}

/* 5. Canvas & Background Blobs */
#anti-gravity-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.blob-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.gradient-blob {
  position: absolute;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: var(--blob-opacity);
  transition: background-color 1s ease;
  pointer-events: none;
}

.blob-1 {
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.75) 0%, rgba(0,0,0,0) 70%);
  top: -10%;
  left: -10%;
  animation: floatBlob1 25s infinite alternate ease-in-out;
}

.blob-2 {
  background: radial-gradient(circle, rgba(236, 72, 153, 0.5) 0%, rgba(0,0,0,0) 70%);
  bottom: -10%;
  right: -10%;
  animation: floatBlob2 28s infinite alternate ease-in-out;
}

.blob-3 {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.5) 0%, rgba(0,0,0,0) 70%);
  top: 45%;
  left: 35%;
  animation: floatBlob3 32s infinite alternate ease-in-out;
}

/* Blob Keyframe Animations */
@keyframes floatBlob1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, 10%) scale(1.1); }
  100% { transform: translate(-5%, -5%) scale(0.9); }
}
@keyframes floatBlob2 {
  0% { transform: translate(0, 0) scale(0.95); }
  50% { transform: translate(-10%, -8%) scale(1.15); }
  100% { transform: translate(5%, 5%) scale(1); }
}
@keyframes floatBlob3 {
  0% { transform: translate(0, 0) scale(1.1); }
  50% { transform: translate(12%, -15%) scale(0.85); }
  100% { transform: translate(-12%, 10%) scale(1); }
}

/* 6. Loader Styling */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-body);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(var(--primary-rgb), 0.1);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 7. Theme Switcher Panel (Floating Gear) */
.theme-panel-toggle {
  position: fixed;
  right: 20px;
  top: 120px;
  z-index: 1030;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.theme-panel-toggle i {
  font-size: 1.25rem;
  animation: rotateGear 8s infinite linear;
}
@keyframes rotateGear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.theme-panel {
  position: fixed;
  right: -280px;
  top: 180px;
  width: 250px;
  z-index: 1030;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  padding: 20px;
  border-radius: 16px 0 0 16px;
  box-shadow: -5px 5px 25px rgba(0,0,0,0.15);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.theme-panel.active {
  right: 0;
}

.theme-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 15px;
}
.theme-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.theme-dot.active {
  transform: scale(1.15);
  border-color: var(--text-main);
}
.theme-dot[data-preset="corporate-blue"] { background: #2563eb; }
.theme-dot[data-preset="emerald-green"] { background: #059669; }
.theme-dot[data-preset="royal-purple"] { background: #7c3aed; }
.theme-dot[data-preset="premium-gold"] { background: #d97706; }
.theme-dot[data-preset="dark-professional"] { background: #1e1b4b; }
.theme-dot[data-preset="orange-startup"] { background: #f97316; }
.theme-dot[data-preset="modern-teal"] { background: #14b8a6; }

/* 8. Premium Glassmorphism Component Styling */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

/* Buttons */
.btn-premium {
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(var(--primary-rgb), 0.8) 100%);
  color: #fff !important;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.9) 0%, var(--primary-hover) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.45);
}
.btn-premium:hover::before {
  opacity: 1;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  backdrop-filter: blur(4px);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.btn-glass:hover {
  background: rgba(var(--primary-rgb), 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* 9. Sticky Navbar & Navigation */
.navbar {
  padding: 18px 0;
  transition: all 0.4s ease;
  z-index: 1000;
}
.navbar.sticky-nav {
  padding: 10px 0;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text-main) !important;
}
.brand-accent {
  color: var(--primary-color);
  transition: color var(--transition-speed);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main) !important;
  margin: 0 4px;
  padding: 8px 16px !important;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(var(--primary-rgb), 0.08);
}

.theme-toggle-btn {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}
.theme-toggle-btn:hover {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color);
}

/* Mobile Slide Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--bg-body);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-overlay.open {
  left: 0;
}
.mobile-nav-overlay .nav-link {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 15px 0;
}
.mobile-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

/* Hamburger custom menu trigger */
.navbar-toggler-custom {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px;
}
.hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 10. Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--text-main) 30%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 35px;
}

/* Hero floating card shapes */
.hero-shapes {
  position: relative;
  width: 100%;
  height: 450px;
}
.floating-card-shape {
  position: absolute;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
  padding: 15px 25px;
  background: var(--glass-bg);
  animation: floatShape 6s infinite ease-in-out;
  pointer-events: none;
}
.shape-1 {
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}
.shape-2 {
  bottom: 20%;
  right: 15%;
  animation-delay: 1.5s;
}
.shape-3 {
  top: 60%;
  left: 10%;
  animation-delay: 3s;
}
.shape-4 {
  top: 10%;
  right: 10%;
  animation-delay: 4.5s;
}

@keyframes floatShape {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.hero-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.hero-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  font-size: 0.8rem;
}

/* 11. About Us Section */
.section-tag {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--text-main);
}

.about-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.about-img-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-img-wrapper:hover img {
  transform: scale(1.04);
}

.nav-pills-custom {
  background: rgba(var(--primary-rgb), 0.04);
  padding: 6px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}
.nav-pills-custom .nav-link {
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px !important;
}
.nav-pills-custom .nav-link.active {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
}

/* Feature/Why Choose Us cards */
.about-feature-card {
  padding: 25px;
  text-align: center;
  height: 100%;
}
.about-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary-color);
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
  transition: all var(--transition-speed);
}
.about-feature-card:hover .about-feature-icon {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

/* 12. Services Section */
.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.glass-card:hover .service-icon-box {
  background: var(--primary-color);
  color: #fff;
}

.service-list {
  padding-left: 0;
  list-style: none;
}
.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* 13. Startup Packages Section */
.pricing-card {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.pricing-card.recommended {
  border: 2px solid var(--primary-color);
  transform: scale(1.03);
}
.pricing-card.recommended:hover {
  transform: scale(1.03) translateY(-8px);
}
.recommended-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.price-box {
  margin: 25px 0;
}
.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
}
.period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
}
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.95rem;
}
[data-bs-theme="dark"] .pricing-features li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pricing-features li i {
  color: var(--primary-color);
  margin-right: 10px;
}
.pricing-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.55;
}
.pricing-features li.disabled i {
  color: var(--text-muted);
}

/* 14. Testimonials Section */
.testimonial-carousel {
  padding: 20px 0;
}
.testimonial-card {
  padding: 40px;
  border-radius: 24px;
}
.client-avatar-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-right: 20px;
}
.client-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rating-stars {
  color: #f59e0b; /* Golden Yellow */
  margin-bottom: 15px;
}
.carousel-indicators-custom {
  position: relative;
  bottom: -40px;
  margin: 0;
}
.carousel-indicators-custom button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background-color: var(--text-muted) !important;
  opacity: 0.4;
  margin: 0 5px !important;
  border: none !important;
  transition: all 0.3s ease !important;
}
.carousel-indicators-custom button.active {
  width: 25px !important;
  border-radius: 5px;
  background-color: var(--primary-color) !important;
  opacity: 1;
}

/* 15. Blog Section */
.blog-card {
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
}
.blog-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img-box img {
  transform: scale(1.05);
}
.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: background-color var(--transition-speed);
}
.blog-card-body {
  padding: 25px;
}
.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
  line-height: 1.4;
}
.blog-title a:hover {
  color: var(--primary-color);
}
.blog-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more-link {
  font-weight: 600;
  font-size: 0.9rem;
}
.read-more-link i {
  transition: transform 0.2s ease;
}
.read-more-link:hover i {
  transform: translateX(4px);
}

/* 16. Contact Section */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact-info-item:hover .contact-info-icon {
  background: var(--primary-color);
  color: #fff;
}
.contact-info-content h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.contact-info-content p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
  height: 250px;
}

.form-control-custom {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-main) !important;
  border-radius: 10px;
  padding: 12px 15px;
  backdrop-filter: blur(4px);
}
.form-control-custom:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
  outline: 0;
}
[data-bs-theme="dark"] .form-control-custom {
  background: rgba(0, 0, 0, 0.2);
}

/* 17. FAQ Section (Accordion) */
.accordion-custom .accordion-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur));
}
.accordion-custom .accordion-button {
  background: none;
  color: var(--text-main);
  font-weight: 600;
  padding: 20px;
  border: none;
  box-shadow: none !important;
}
.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: rgba(var(--primary-rgb), 0.05);
}
.accordion-custom .accordion-button::after {
  filter: brightness(var(--text-main));
}
.accordion-custom .accordion-collapse {
  border: none;
}
.accordion-custom .accordion-body {
  padding: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 18. Mega Footer Layout */
.mega-footer {
  background: var(--glass-bg);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  padding: 80px 0 30px 0;
  position: relative;
  z-index: 2;
}
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 20px;
  display: block;
}
.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}
.footer-title {
  font-size: 1.15rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: var(--text-main);
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}
.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all var(--transition-speed);
}
.footer-links li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all var(--transition-speed);
}
.social-icon-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  margin-top: 50px;
  padding-top: 25px;
}
[data-bs-theme="dark"] .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Newsletter form */
.newsletter-form .form-control {
  border-radius: 30px 0 0 30px !important;
}
.newsletter-form .btn {
  border-radius: 0 30px 30px 0 !important;
}

/* 19. Floating Widgets */
.back-to-top {
  position: fixed;
  bottom: 85px; /* Stay above mobile bar */
  right: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.back-to-top:hover {
  background: var(--primary-hover);
  transform: scale(1.05) translateY(-3px);
}

.whatsapp-float {
  position: fixed;
  bottom: 145px; /* Above back-to-top on mobile */
  right: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25d366; /* WhatsApp Green */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 99;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* 20. Fixed Bottom CTA Bar for Mobile Viewports */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  grid-template-columns: repeat(3, 1fr);
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}
.mobile-cta-item {
  text-align: center;
  padding: 12px 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-cta-item:last-child {
  border-right: none;
}
.mobile-cta-item i {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--primary-color);
}
.mobile-cta-item.whatsapp-cta i {
  color: #25d366;
}

/* 21. Subpage-Specific Layouts */
.subpage-hero {
  padding: 140px 0 70px 0;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subpage-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-main);
}
.subpage-subtitle {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.compare-table {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  border-radius: 16px;
  overflow: hidden;
}
.compare-table th {
  background: rgba(var(--primary-rgb), 0.05);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 18px;
}
.compare-table td {
  padding: 16px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.check-icon {
  color: #10b981;
}
.times-icon {
  color: #ef4444;
  opacity: 0.4;
}

.detail-box-heading {
  border-left: 4px solid var(--primary-color);
  padding-left: 15px;
  margin-bottom: 20px;
}

/* 22. Responsive Overrides & Media Queries */

/* Mobile view (< 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .subpage-title {
    font-size: 2.2rem;
  }
  .subpage-hero {
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero-section {
    padding-top: 100px;
    padding-bottom: 120px; /* Leave space for mobile bottom cta bar */
  }
  .pricing-card.recommended {
    transform: none;
  }
  .pricing-card.recommended:hover {
    transform: translateY(-8px);
  }
  /* Show fixed bottom CTA bar on mobile */
  .mobile-cta-bar {
    display: grid;
  }
  .back-to-top {
    bottom: 70px;
  }
  .whatsapp-float {
    bottom: 130px;
  }
}

/* Tablet View (576px to 991.98px) */
@media (min-width: 576px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
}

/* Desktop/Laptop Layouts (>= 992px) */
@media (min-width: 992px) {
  .hero-shapes {
    height: 100%;
  }
}

/* Ultra-wide support limit container scaling */
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}

/* 23. Welcome Video Modal Styling */
.welcome-video-content {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.welcome-video-close {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  line-height: 1;
  padding: 5px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--transition-speed), color var(--transition-speed);
}

.welcome-video-close:hover {
  opacity: 1;
  color: var(--primary-color);
}

.welcome-video-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-video-skip-btn {
  font-size: 0.85rem;
  padding: 8px 24px;
}

