@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Quicksand:wght@300..700&display=swap");
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #00df81;
  --primary-dark: #00c470;
  --primary-light: #33e599;
  --secondary-color: #1a1a1a;
  --text-color: #333;
  --text-light: #666;
  --text-white: #fff;
  --bg-color: #fff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a1a;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --transition: all 0.3s ease;
  --font-family: "Open Sans", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section {
  width: 100%;
  display: flex;

  flex-direction: column;
  align-items: center;
  justify-content: center;
}
 .cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    /* max-width: 500px; */
    width: 80%;
    background: var(--bg-light);
    color: var(--text-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: var(--font-family);
    z-index: 9999;
    transition: var(--transition);
  }

  .cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .cookie-buttons {
    display: flex;
    gap: 10px;
  }

  .cookie-banner button {
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
  }

  .accept-btn {
    background: var(--primary-color);
    color: var(--text-white);
  }
  .accept-btn:hover {
    background: var(--primary-dark);
  }

  .reject-btn {
    background: var(--secondary-color);
    color: var(--text-white);
  }
  .reject-btn:hover {
    background: #333;
  }

  .cookie-banner.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(100px);
    pointer-events: none;
  }
.container {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes badgeGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 223, 129, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 223, 129, 0.6);
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 20px rgba(0, 223, 129, 0.5);
  }
  100% {
    text-shadow: 0 0 30px rgba(0, 223, 129, 0.8),
      0 0 40px rgba(0, 223, 129, 0.3);
  }
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes scrollWheel {
  0%,
  100% {
    top: 6px;
    opacity: 1;
  }
  50% {
    top: 16px;
    opacity: 0.5;
  }
}

/* Animation Classes */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Animation Delays */
.stagger-1 {
  animation-delay: 0.2s;
}
.stagger-2 {
  animation-delay: 0.4s;
}
.stagger-3 {
  animation-delay: 0.6s;
}
.stagger-4 {
  animation-delay: 0.8s;
}
.stagger-5 {
  animation-delay: 1s;
}

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

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* Button Styles */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn i{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.btn-primary {
  background: var(--primary-color);
  color: var(--text-white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

.btn-loading .btn-text {
  display: none;
}

.btn-loading .btn-loading {
  display: inline;
}

.btn .btn-loading {
  display: none;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
  animation: slideInFromTop 0.5s ease-out;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

.nav-brand {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: var(--text-color);
}
.nav-brand .logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.nav-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-brand i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 28px;
}

.nav-brand span {
  display: none; /* Hidden by default on mobile */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  margin: 3px 0;
  transition: var(--transition);
}
#fiber-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
}
/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--text-white);
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  background-image: url("./assets/images/background.jpg"); /* Updated background image */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

/* Gradient Overlay for Hero */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.7),
    rgba(0, 223, 129, 0.3)
  );
  z-index: 1; /* Below Three.js canvas */
}

/* Three.js Canvas */
#three-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* Above background and overlay */
}

/* Hero Container */
.hero-container {
  /* max-width: 1400px; */
  align-items: start !important;
  width: 90%;
  /* margin: 0 auto; */
  position: relative;
  z-index: 3; /* Above Three.js canvas */
  padding: 2rem 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  height: 100%;
  text-align: center;
  max-width: 1000px;
}

/* Main Hero Content */
.hero-main {
  width: 100%;
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
  gap: 4rem;
  align-items: center;
  min-height: 60vh;
}

.hero-text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2rem;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 223, 129, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  width: fit-content;
  animation: badgeGlow 3s infinite ease-in-out;
}

.hero-badge i {
  color: var(--primary-color);
  font-size: 1rem;
}

/* Hero Title */
.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin: 0;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--primary-color), #33e599);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.glow-text {
  text-shadow: 0 0 20px rgba(0, 223, 129, 0.5);
  animation: textGlow 2s infinite ease-in-out alternate;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 500px;
  /* margin-left: auto;
  margin-right: auto; */
}

/* Hero Features */
.hero-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-hero {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

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

.btn-outline-hero {
  background: transparent;
  color: white;
  border: 2px solid var(--primary-color);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-hero:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 223, 129, 0.3);
}

/* Hero Visual Section (kept for layout, visual elements handled by Three.js) */
.hero-visual-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* No visual elements here, Three.js takes over */
}

/* Hero Stats */
.hero-stats {
  display: flex;
  flex-direction: column;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 223, 129, 0.3);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), #33e599);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  display: inline-block;
}

.stat-plus {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  z-index: 4;
  animation: scrollBounce 2s infinite ease-in-out;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Packages Section */
.packages-section {
  background: var(--bg-light);
}
.packages-container {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tabs-container {
  width: 100%;
  /* margin: 0 auto; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 8px;
  box-shadow: var(--shadow);
}

.tab-btn {
  flex: 1;
  padding: 1rem 2rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--border-radius);
  transition: var(--transition);
  color: var(--text-light);
}

.tab-btn.active {
  background: var(--primary-color);
  color: white;
}

.tab-content {
  display: none;
  width: 100%;
}

.tab-content.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.packages-grid {
  display: flex;
  width: 90%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.package-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.package-header {
  text-align: center;
  margin-bottom: 2rem;
}

.package-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.package-speed {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.package-price {
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-color);
}

.period {
  font-size: 1rem;
  color: var(--text-light);
}

.package-features {
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.feature i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  width: 100%;
}

.service-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  animation: pulse 2s infinite;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.service-features i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* Coverage Section */
.coverage-section {
  background: var(--bg-light);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.coverage-content h3,
.testimonials-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.coverage-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Interactive Map Styles */
.coverage-map-container {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* Aspect ratio 4:3 (600/800) */
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 2rem;
}

.coverage-map-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.map-area {
  position: absolute;
  background-color: rgba(0, 223, 129, 0.2); /* Light green overlay */
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.map-area:hover {
  background-color: rgba(0, 223, 129, 0.4); /* Darker green on hover */
  border-color: var(--primary-color);
}

.map-area.active {
  background-color: rgba(0, 223, 129, 0.6); /* Even darker when active */
  border-color: var(--primary-dark);
}

.map-info-box {
  position: absolute;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  z-index: 10;
  display: none; /* Hidden by default */
  flex-direction: column;
  gap: 0.5rem;
  min-width: 200px;
  max-width: 300px;
  transform: translate(-50%, -100%); /* Position above cursor */
  pointer-events: none; /* Allow clicks to pass through to map areas */
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.map-info-box.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.map-info-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.map-info-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.map-info-box .btn {
  align-self: flex-end;
}

.coverage-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.area-item {
  display: flex;
  align-items: center;
}

.area-dot {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  margin-bottom: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.testimonial-card.active {
  display: block;
}

.stars {
  display: flex;
  margin-bottom: 1rem;
}

.stars i {
  color: #ffd700;
  margin-right: 0.25rem;
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 1rem;
}

.author-info h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-color);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-year {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 2rem;
  position: relative;
  z-index: 2;
}

.timeline-item p {
  color: var(--text-color);
  font-size: 1.1rem;
}

.about-visual {
  position: relative;
}

.about-image {
  aspect-ratio: 1;
  background-image: url("./assets/images/eldoret.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  /* background: linear-gradient(135deg, var(--primary-light), var(--primary-color)); */
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.89),
    rgba(0, 223, 130, 0.192)
  );
  z-index: 1; /* Below Three.js canvas */
}
.image_content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  z-index: 2;
}
.about-image i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.about-image p {
  font-size: 1.2rem;
  font-weight: 600;
}
.credits {
  position: absolute;
  z-index: 3;
  bottom: 8px;
  left: 8px;
  font-style: italic;
  font-weight: 200 !important;
  font-size: 0.7rem !important;
}
.reliability-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon i {
  color: white;
  font-size: 1.5rem;
}

.badge-info h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.badge-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  background: var(--bg-dark);
  color: var(--text-white);
}

.contact-section .section-header h2 {
  color: var(--text-white);
}

.contact-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.contact-form-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-section .contact-form label {
  color: var(--primary-dark) !important;
}
.contact-section .contact-form input {
  color: var(--bg-light) !important;
}
.contact-section .contact-form textarea {
  color: var(--bg-color) !important;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 223, 129, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.error-message {
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message.show {
  display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #ff6b6b;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-white);
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.snackbar {
  position: fixed;
  top: 4.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  min-width: 25%;
z-index: 10000;
  transform: translateY(120%) scale(0.95);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  filter: blur(4px);
  display: none;
  /* backdrop-filter: blur(10px); */
}

@media (min-width: 768px) {
  .snackbar {
    left: auto;
    right: 1.5rem;
    max-width: 24rem;
  }
  .tabs-container{
    width: 70%;
  }
  .packages-grid{
    flex-direction: row;
  }
}

.snackbar.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  filter: blur(0px);
  display: block;
}

.snackbar.hide {
  transform: translateY(120%) scale(0.9);
  opacity: 0;
  filter: blur(2px);
  transition: all 0.3s cubic-bezier(0.55, 0, 0.2, 1);
  display: none;
}

.snackbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-radius: 1rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.snackbar-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.3),
    0 10px 10px -5px rgba(16, 185, 129, 0.2);
}

.snackbar-error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 20px 25px -5px rgba(239, 68, 68, 0.3),
    0 10px 10px -5px rgba(239, 68, 68, 0.2);
}

.snackbar-info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.3),
    0 10px 10px -5px rgba(59, 130, 246, 0.2);
}

.snackbar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.snackbar-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  animation: iconPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

.snackbar-message {
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.4;
  font-size: 0.875rem;
}

.close-button {
  margin-left: 1rem;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 50%;
  padding: 0.25rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg) scale(1.1);
  color: white;
}

.close-icon {
  width: 1.25rem;
  height: 1.25rem;
}
@keyframes iconPop {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.snackbar.show .snackbar-content {
  animation: subtlePulse 2s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%,
  100% {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3),
      0 10px 10px -5px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.4),
      0 15px 15px -5px rgba(0, 0, 0, 0.3);
  }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .demo-title {
    font-size: 2rem;
  }

  .button-container {
    flex-direction: column;
    align-items: center;
  }

  .demo-button {
    width: 100%;
    max-width: 200px;
  }
}
.contact-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 1rem;
  width: 30px;
}

.contact-item h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-white);
}

.contact-item p {
  color: rgba(255, 255, 255, 0.8);
}

.quick-links h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.links-grid a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Footer */
.footer {
  background: var(--secondary-color);
  padding: 2rem 0;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-white);
  gap: 5px;
}

.footer-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-brand i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 1.8rem;
}
.footer-brand .logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 1000;
  animation: bounce 2s infinite;
}

.scroll-to-top:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.scroll-to-top.show {
  display: flex;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  animation: fadeInUp 0.3s ease-out;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeInUp 0.3s ease-out;
}

.modal-large {
  max-width: 800px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-color);
}

.modal-body {
  padding: 2rem;
  color: var(--secondary-color) !important;
}
.modal-body .form-group,
input,
label,
select,
textarea {
  color: var(--secondary-color) !important;
  text-align: left;
}
.modal-body .form-group input,
textarea,
select {
  border: 1px solid var(--primary-dark) !important;
}
.package-details {
  text-align: center;
  margin-bottom: 2rem;
}

.package-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.package-price-modal {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.package-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Service Modal Content */
.service-details {
  text-align: center;
}

.service-details h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-details p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-features-modal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.service-features-modal div {
  display: flex;
  align-items: center;
}

.service-features-modal i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Support Modal */
.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.support-option {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.support-option:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.support-option i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.support-option h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.support-option p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.support-option small {
  color: var(--text-light);
  font-size: 0.8rem;
}

.support-form {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.support-form h4 {
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* FAQ Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-light);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(0, 223, 129, 0.1);
}

.faq-question h4 {
  font-weight: 600;
  color: var(--text-color);
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
}

/* New Page Styles (Privacy Policy, Terms & Conditions) */
.static-page-content {
  padding: 80px 20px; /* Adjust for fixed navbar */
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-color);
  min-height: calc(100vh - 100px); /* Adjust for footer */
}

.static-page-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.static-page-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.static-page-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.static-page-content p,
.static-page-content ul,
.static-page-content ol {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.static-page-content ul,
.static-page-content ol {
  margin-left: 20px;
  list-style-position: outside;
}

.static-page-content li {
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .nav-brand span {
    display: inline;
  }
  .hero-stats {
    flex-direction: row;
  }
  .tabs-nav {
    width: 70%;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    width: 95vw;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* .packages-grid {
    grid-template-columns: 1fr;
  } */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .modal-content {
    width: 95%;
    margin: 1rem;
  }
  .support-options {
    grid-template-columns: 1fr;
  }
  .links-grid {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 15px;
  }
  .timeline-year {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    margin-right: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  section {
    padding: 3rem 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .package-card {
    padding: 1.5rem;
  }
  .service-card {
    padding: 2rem;
  }
  .modal-body {
    padding: 1.5rem;
  }
  .modal-header {
    padding: 1rem 1.5rem;
  }
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
  
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--bg-color);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Success/Error Messages */
.message {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  display: none;
}

.message.show {
  display: block;
  animation: fadeInUp 0.3s ease-out;
}

.message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #00b366;
    --text-color: #000;
    --text-light: #333;
    --border-color: #666;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
