/* ==========================================================================
   Dr. Hina Vijay Oza - Astrologer Website Design System
   Color Theme: Aqua Blue Gradient & Celestial Dark Theme
   Typography: Outfit (Headings & Footer) & Inter (Body Text)
   Ultra-Professional, Lightweight, Fast, Fully Responsive
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette */
  --bg-main: #06101E;
  --bg-secondary: #0A192F;
  --bg-card: rgba(13, 29, 52, 0.75);
  --bg-card-hover: rgba(18, 41, 74, 0.88);
  
  --aqua-primary: #00F6FF;
  --aqua-medium: #00B4DB;
  --aqua-deep: #0083B0;
  --aqua-dark: #004E64;
  
  --text-main: #F0F9FF;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  --border-glow: rgba(0, 246, 255, 0.25);
  --border-light: rgba(255, 255, 255, 0.08);
  
  --gradient-aqua: linear-gradient(135deg, #00F6FF 0%, #00B4DB 50%, #0083B0 100%);
  --gradient-aqua-text: linear-gradient(135deg, #E0F7FA 0%, #00F6FF 50%, #00B4DB 100%);
  --gradient-card: linear-gradient(180deg, rgba(16, 37, 66, 0.6) 0%, rgba(8, 20, 38, 0.8) 100%);
  --gradient-hero: radial-gradient(circle at 50% 20%, rgba(0, 180, 219, 0.18) 0%, rgba(6, 16, 30, 0.95) 75%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-aqua: 0 0 25px rgba(0, 246, 255, 0.25);
  --shadow-aqua-lg: 0 0 50px rgba(0, 246, 255, 0.4);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1280px;
  --top-bar-height: 40px;
  --main-navbar-height: 115px;
  --header-total-height: 155px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 246, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(0, 131, 176, 0.07) 0%, transparent 45%);
}

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

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

/* Typography Utility */
h1, h2, h3, h4, h5, h6,
.slide-title,
.section-header h2,
.about-narrative h2,
.about-profile-name,
.skill-card-title,
.service-title,
.accolade-card h3,
.cta-banner h2,
.footer-column h4,
.section-title-tag,
.site-footer,
.site-footer * {
  font-family: var(--font-heading) !important;
  letter-spacing: -0.3px;
}

.text-gradient {
  background: var(--gradient-aqua-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-family: inherit;
}

.text-muted {
  color: var(--text-muted);
}

.section-title-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(0, 246, 255, 0.08);
  border: 1px solid rgba(0, 246, 255, 0.25);
  color: var(--aqua-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  font-family: var(--font-heading) !important;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: 2.35rem;
  margin-bottom: 16px;
}

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

/* Layout Elements */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
}

/* Buttons & Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-aqua);
  color: #040D1A;
  box-shadow: var(--shadow-aqua);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-aqua-lg);
  filter: brightness(1.1);
}

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

.btn-outline:hover {
  background: rgba(0, 246, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 246, 255, 0.2);
}

/* ==========================================================================
   FLOATING WHATSAPP CHAT BUTTON
   ========================================================================== */
.floating-chat-wrapper {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-chat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFF !important;
  padding: 12px 22px 12px 16px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.floating-chat-btn i {
  font-size: 1.7rem;
}

.floating-chat-btn:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg, #1EBE57 0%, #0E7468 100%);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.65);
}

.floating-chat-pulse {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FFD700;
  border: 2px solid #040D1A;
  animation: pulseGold 1.8s infinite;
}

@keyframes pulseGold {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* ==========================================================================
   ULTRA-PROFESSIONAL HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
}

.top-bar {
  background: linear-gradient(90deg, rgba(3, 10, 20, 0.98) 0%, rgba(8, 24, 46, 0.98) 50%, rgba(3, 10, 20, 0.98) 100%);
  border-bottom: 1px solid rgba(0, 246, 255, 0.18);
  font-size: 0.82rem;
  color: var(--text-muted);
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
}

.top-bar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-info-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-badge {
  color: #FFD700;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.08);
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  font-size: 0.78rem;
  letter-spacing: 0.3px;
}

.top-center-tag {
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
}

.top-center-tag i {
  color: var(--aqua-primary);
}

.top-divider {
  color: rgba(0, 246, 255, 0.3);
  font-size: 0.9rem;
}

.top-info-right {
  display: flex;
  align-items: center;
}

.top-contact-link {
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: rgba(0, 246, 255, 0.08);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 246, 255, 0.25);
  transition: var(--transition-fast);
  font-size: 0.8rem;
}

.top-contact-link i {
  color: var(--aqua-primary);
  transition: var(--transition-fast);
}

.top-contact-link:hover {
  background: var(--gradient-aqua);
  color: #040D1A !important;
  box-shadow: 0 0 14px rgba(0, 246, 255, 0.4);
  border-color: var(--aqua-primary);
}

.top-contact-link:hover i {
  color: #040D1A !important;
}

/* Main Navbar Wrapper */
.main-navbar-wrapper {
  background: rgba(6, 16, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  height: var(--main-navbar-height);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
}

.site-header.scrolled .main-navbar-wrapper {
  background: rgba(4, 12, 24, 0.96);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
  border-bottom-color: var(--border-glow);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Official Logo Image Styling */
.logo-brand {
  display: flex;
  align-items: center;
}

.site-logo-img {
  height: 98px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 246, 255, 0.65));
  transition: var(--transition-normal);
}

.site-header.scrolled .site-logo-img {
  height: 80px;
}

.logo-brand:hover .site-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 25px rgba(0, 246, 255, 0.95));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: #CBD5E1;
  position: relative;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--aqua-primary);
  background: rgba(0, 246, 255, 0.06);
}

.nav-link.active {
  color: var(--aqua-primary);
  font-weight: 600;
  background: rgba(0, 246, 255, 0.1);
  border: 1px solid rgba(0, 246, 255, 0.2);
}

.desktop-cta {
  display: flex;
  align-items: center;
}

.nav-cta-btn {
  padding: 10px 22px;
  font-size: 0.88rem;
  box-shadow: 0 0 20px rgba(0, 246, 255, 0.25);
}

.mobile-cta {
  display: none;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   HERO SLIDER SECTION (CLEAN BELOW-CONTENT NAVIGATION DOTS & ARROWS)
   ========================================================================== */
.hero-slider-wrapper {
  position: relative;
  padding-top: calc(var(--header-total-height) + 20px);
  padding-bottom: 70px;
  background: var(--gradient-hero);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  min-height: 480px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(0.98);
  display: flex;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}

.slide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(0, 246, 255, 0.1);
  border: 1px solid rgba(0, 246, 255, 0.3);
  color: var(--aqua-primary);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-heading) !important;
}

.slide-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  font-family: var(--font-heading) !important;
}

.slide-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 580px;
}

.slide-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.highlight-pill {
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.highlight-pill i {
  color: var(--aqua-primary);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.banner-image-container {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  height: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-md), var(--shadow-aqua);
  background: rgba(4, 12, 24, 0.95);
  position: relative;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-image-container:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md), var(--shadow-aqua-lg);
}

.hero-banner-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  display: block;
}

/* Slider Controls (POSITIONED CLEANLY BELOW CONTENT) */
.slider-navigation {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 36px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 246, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-normal);
}

.dot.active {
  width: 38px;
  border-radius: 12px;
  background: var(--gradient-aqua);
  box-shadow: var(--shadow-aqua);
}

/* Universal Button & Arrow Alignment Rules */
.testimonial-arrows,
.updates-arrows,
.slider-arrows {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 14px !important;
}

.testimonial-controls,
.updates-controls {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 28px;
  width: 100%;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(13, 29, 52, 0.85);
  border: 1px solid var(--border-glow);
  color: var(--aqua-primary);
  font-size: 1.1rem;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  transition: var(--transition-normal);
}

.slider-arrow:hover {
  background: var(--gradient-aqua);
  color: #040D1A;
  box-shadow: var(--shadow-aqua);
  transform: scale(1.08);
}

/* ==========================================================================
   ABOUT US SECTION & PROFILE PORTRAIT
   ========================================================================== */
.about-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 246, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-profile-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-md), var(--shadow-aqua);
  overflow: hidden;
}

.about-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-aqua);
}

.profile-avatar-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 24px auto;
}

.profile-avatar-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--aqua-primary);
  box-shadow: var(--shadow-aqua-lg);
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: var(--transition-normal);
}

.profile-avatar-circle:hover .profile-avatar-img {
  transform: scale(1.06);
}

.profile-experience-badge {
  position: absolute;
  bottom: -6px;
  right: -10px;
  background: #040D1A;
  border: 1px solid var(--aqua-primary);
  color: var(--aqua-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.about-profile-name {
  font-size: 1.75rem;
  margin-bottom: 6px;
  color: #FFF;
  font-family: var(--font-heading) !important;
}

.about-profile-tag {
  color: var(--aqua-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.about-roles-box {
  background: rgba(6, 16, 30, 0.8);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
}

.role-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.role-item:last-child {
  margin-bottom: 0;
}

.role-item i {
  color: var(--aqua-primary);
  font-size: 1.1rem;
  margin-top: 2px;
}

.about-narrative h2 {
  font-size: 2.45rem;
  margin-bottom: 20px;
  line-height: 1.18;
  font-family: var(--font-heading) !important;
}

.about-paragraph {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-roles-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px 0;
}

.role-pill-badge {
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(0, 246, 255, 0.08);
  border: 1px solid rgba(0, 246, 255, 0.25);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.role-pill-badge i {
  color: var(--aqua-primary);
}

/* 100% FULL UNCROPPED SERVICE & COURSE CARD IMAGE STYLING */
.skill-card-img-box, .service-card-img-box {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  height: auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border-glow);
  position: relative;
  background: #040D1A;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-card-img, .service-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  background-color: #040D1A;
  display: block;
  transition: var(--transition-normal);
}

.skill-card-item:hover .skill-card-img, .glass-card:hover .service-card-img {
  transform: scale(1.04);
}

.skill-card-item:hover .skill-card-img-box, .glass-card:hover .service-card-img-box {
  border-color: var(--aqua-primary);
  box-shadow: 0 0 25px rgba(0, 246, 255, 0.35);
}

.skill-card-header-flex {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.skill-card-item {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-normal);
  position: relative;
}

.skill-card-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(0, 246, 255, 0.15);
}

.skill-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(0, 246, 255, 0.1);
  border: 1px solid rgba(0, 246, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--aqua-primary);
  transition: var(--transition-normal);
}

.skill-card-item:hover .skill-card-icon {
  background: var(--gradient-aqua);
  color: #040D1A;
  box-shadow: var(--shadow-aqua);
}

.skill-card-title {
  font-size: 1.2rem;
  font-family: var(--font-heading) !important;
}

.skill-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Accolades Section */
.accolades-section {
  background: var(--bg-main);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.accolades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.accolade-card {
  text-align: center;
  padding: 30px 20px;
}

.accolade-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: rgba(0, 246, 255, 0.1);
  border: 1px solid rgba(0, 246, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--aqua-primary);
}

.accolade-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-family: var(--font-heading) !important;
}

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

/* Feature Cards & Glass Grid */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-aqua);
  opacity: 0;
  transition: var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md), 0 0 30px rgba(0, 246, 255, 0.15);
}

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

/* Services Section Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0, 246, 255, 0.1);
  border: 1px solid rgba(0, 246, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--aqua-primary);
  transition: var(--transition-normal);
}

.glass-card:hover .service-icon {
  background: var(--gradient-aqua);
  color: #040D1A;
  box-shadow: var(--shadow-aqua);
}

.service-title {
  font-size: 1.25rem;
  font-family: var(--font-heading) !important;
}

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

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--aqua-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-link:hover {
  gap: 10px;
}

/* ==========================================================================
   LATEST UPDATES SLIDER (UNCROPPED 100% FULL POSTER GRAPHICS)
   ========================================================================== */
.updates-slider-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.updates-slider-track {
  position: relative;
  min-height: 520px;
}

.updates-slide-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.updates-slide-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.update-card-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md), var(--shadow-aqua);
}

.update-card-img-box {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  background: #040D1A;
  display: block;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  transition: var(--transition-normal);
}

.update-card-img-box:hover {
  border-color: var(--aqua-primary);
  box-shadow: 0 0 30px rgba(0, 246, 255, 0.35);
}

.update-card-img {
  width: 100%;
  height: auto;
  object-fit: contain !important;
  display: block;
}

.u-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 246, 255, 0.3);
  cursor: pointer;
  display: inline-block;
  transition: var(--transition-normal);
}

.u-dot.active {
  width: 36px;
  border-radius: 12px;
  background: var(--gradient-aqua);
  box-shadow: var(--shadow-aqua);
}

/* ==========================================================================
   3-CARDS VISIBLE TESTIMONIAL MULTI-ITEM CAROUSEL (1-BY-1 CONTINUOUS LOOP)
   ========================================================================== */
.testimonials-section {
  background: var(--bg-secondary);
}

.testimonial-carousel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0 20px 0;
}

.testimonial-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-card-item {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.stars {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  color: #E2E8F0;
  margin-bottom: 24px;
  font-size: 0.98rem;
  line-height: 1.65;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--gradient-aqua);
  color: #040D1A;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-family: var(--font-heading) !important;
  box-shadow: var(--shadow-aqua);
}

.client-details h4 {
  font-size: 1.05rem;
  font-family: var(--font-heading) !important;
  margin-bottom: 2px;
}

.client-details p {
  font-size: 0.82rem;
  color: var(--aqua-primary);
}

.t-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 246, 255, 0.3);
  cursor: pointer;
  display: inline-block;
  transition: var(--transition-normal);
}

.t-dot.active {
  width: 36px;
  border-radius: 12px;
  background: var(--gradient-aqua);
  box-shadow: var(--shadow-aqua);
}

/* CTA Banner Section */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 180, 219, 0.15) 0%, rgba(0, 246, 255, 0.05) 100%), var(--bg-main);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-aqua);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-family: var(--font-heading) !important;
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 30px auto;
  font-size: 1.05rem;
}

/* Footer Styling (OUTFIT TYPOGRAPHY & ENLARGED LOGO) */
.site-footer {
  background: #030A14;
  border-top: 1px solid var(--border-light);
  padding-top: 70px;
  padding-bottom: 30px;
  color: var(--text-muted);
  font-family: var(--font-heading) !important;
}

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

.footer-brand p {
  font-size: 0.95rem;
  margin-top: 16px;
  line-height: 1.65;
  font-family: var(--font-heading) !important;
}

.footer-column h4 {
  color: var(--text-main);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
  font-family: var(--font-heading) !important;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--aqua-primary);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-family: var(--font-heading) !important;
}

.footer-links a:hover {
  color: var(--aqua-primary);
  padding-left: 5px;
}

.contact-info-list {
  list-style: none;
  font-family: var(--font-heading) !important;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-family: var(--font-heading) !important;
}

.contact-info-list i {
  color: var(--aqua-primary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.copyright-text {
  font-size: 0.95rem;
  color: #FFF;
  font-weight: 600;
  text-align: center;
  width: 100%;
  margin: 0 0 12px 0;
  font-family: var(--font-heading) !important;
  letter-spacing: 0.3px;
}

.disclaimer-box {
  background: rgba(0, 246, 255, 0.04);
  border: 1px solid rgba(0, 246, 255, 0.16);
  border-radius: 50px;
  padding: 8px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-normal);
}

.disclaimer-box:hover {
  background: rgba(0, 246, 255, 0.08);
  border-color: rgba(0, 246, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 246, 255, 0.15);
}

.disclaimer-icon {
  color: var(--aqua-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.disclaimer-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  margin: 0;
  font-family: var(--font-heading) !important;
}

/* Responsive Styles & Edge-to-Edge Mobile Container */
/* ==========================================================================
   ULTRA-RESPONSIVE MOBILE STYLES (HEADER, TOP BAR, HERO SLIDER)
   ========================================================================== */
@media (max-width: 992px) {
  .top-bar {
    height: auto;
    min-height: var(--top-bar-height);
    padding: 6px 0;
  }

  .top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .top-info-left {
    display: flex;
    align-items: center;
  }

  .top-center-tag,
  .top-divider {
    display: none !important;
  }

  .top-badge {
    font-size: 0.75rem;
    padding: 2px 10px;
  }

  .top-contact-link {
    font-size: 0.78rem;
    padding: 3px 10px;
  }

  .hero-slider-wrapper {
    padding-top: calc(var(--header-total-height) + 16px);
    padding-bottom: 50px;
    min-height: auto;
  }

  .hero-slider-container {
    min-height: auto;
    height: auto;
  }

  .slide-grid, .about-grid, .update-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .slide-tag {
    margin: 0 auto 14px auto;
    justify-content: center;
    font-size: 0.82rem;
  }

  .slide-title {
    font-size: 2.1rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 14px;
  }

  .slide-description {
    font-size: 0.95rem;
    text-align: center;
    margin: 0 auto 18px auto;
  }

  .slide-highlights {
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
  }

  .highlight-pill {
    font-size: 0.8rem;
    padding: 4px 10px;
  }

  .hero-cta {
    justify-content: center;
  }

  .banner-image-container {
    order: -1;
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    max-height: 320px;
    background: #040D1A;
    margin-bottom: 14px;
  }

  .hero-banner-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: #040D1A;
  }

  .testimonial-card-item {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    display: block;
    margin-top: 10px;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-total-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-total-height));
    background: rgba(4, 12, 24, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    transition: var(--transition-normal);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 14px;
  }

  .site-logo-img {
    height: 64px;
    max-width: 270px;
  }

  .top-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
    gap: 4px;
  }

  .top-contact-link {
    font-size: 0.72rem;
    padding: 2px 8px;
    gap: 4px;
  }

  .banner-image-container {
    width: 100%;
    aspect-ratio: 16 / 10.5;
    max-height: 250px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
  }

  .hero-banner-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: #040D1A;
  }

  .slide-title {
    font-size: 1.65rem;
  }

  .floating-chat-wrapper {
    bottom: 16px;
    right: 16px;
  }
  .floating-chat-btn span {
    display: none;
  }
  .floating-chat-btn {
    padding: 14px;
    border-radius: 50%;
  }
  .floating-chat-btn i {
    font-size: 1.8rem;
  }

  .testimonial-card-item {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 36px 16px;
  }

  .cta-banner h2 {
    font-size: 1.7rem;
  }

  .slider-navigation {
    position: relative;
    bottom: 0;
    margin-top: 20px;
  }

  .about-narrative h2 {
    font-size: 1.7rem;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON WIDGET STYLING
   ========================================================================== */
.whatsapp-float {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  background: #25D366 !important;
  color: #FFFFFF !important;
  border-radius: 50px !important;
  padding: 12px 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  font-family: var(--font-heading) !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 20px rgba(37, 211, 102, 0.3) !important;
  z-index: 99999 !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05) !important;
  background: #20BA5A !important;
  box-shadow: 0 15px 32px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.5) !important;
  color: #FFFFFF !important;
}

.whatsapp-float i {
  font-size: 1.4rem !important;
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 20px !important;
    right: 20px !important;
    padding: 14px !important;
    border-radius: 50% !important;
  }
  .whatsapp-float i {
    font-size: 1.7rem !important;
  }

  .lightbox-nav-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.2rem !important;
  }
  #lightboxPrevBtn {
    left: 8px !important;
  }
  #lightboxNextBtn {
    right: 8px !important;
  }
}

