/* style.css - Complete Working CSS with Animations */
:root {
  --primary: #2e9605;
  --primary-dark: #d97706;
  --primary-light: #fbbf24;
  --secondary: #0f2b3d;
  --secondary-light: #1e5a7d;
  --dark: #0f172a;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-white);
  color: var(--dark);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.logo-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s ease;
  font-size: 0.9rem;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* Hero Slider */
.hero {
  margin-top: 73px;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: calc(100vh - 73px);
  min-height: 550px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5));*/
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 2rem;
  animation: fadeUp 0.8s ease;
  
}

.slide-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.slide-content h1 .highlight {
  color: #edf50b;
}

.slide-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}




.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 0 2rem;
    animation: fadeUp 0.8s ease;
    margin: 0 auto;
}

.slide-content p {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.9);
    margin: 0 auto 2rem;
    line-height: 1.6;
    text-align: center;
}

.slide-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 2.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.05);
}

.slider-nav.prev { left: 2rem; }
.slider-nav.next { right: 2rem; }

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 28px;
  background: var(--primary);
  border-radius: 5px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(245, 158, 11, 0.1);
  padding: 0.35rem 1.25rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--secondary);
}

.section-title .highlight {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 550px;
  margin: 0 auto;
}

/* Packages */
.packages, .featured-packages {
  padding: 5rem 0;
}

.packages {
  background: var(--bg-light);
}

.featured-packages {
  background: var(--bg-white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.package-card {
  background: white;
  border-radius: 20px;
  padding: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.package-card.popular {
  border: 2px solid var(--primary);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.package-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.package-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.package-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray);
}

.package-features {
  list-style: none;
  margin-bottom: 1.8rem;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  color: var(--gray);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li i {
  color: var(--primary);
  width: 18px;
  font-size: 0.85rem;
}

.package-btn {
  width: 100%;
  padding: 0.7rem;
  background: var(--bg-light);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: block;
  text-decoration: none;
}

.package-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

/* Speed Test */
.speedtest {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.speedtest-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.speedtest-card {
  background: white;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.speed-gauge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.gauge-download, .gauge-upload {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.gauge-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
}

.gauge-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.gauge-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 0.5rem;
}

.speed-indicator {
  height: 3px;
  background: var(--primary);
  margin-top: 10px;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.speed-progress {
  margin: 2rem 0;
}

.progress-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}



/* Add these styles to your existing CSS */

/* Trust Badges */
.trust-badges {
  padding: 3rem 0;
  background: var(--bg-white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.badge-item i {
  font-size: 2rem;
  color:#074780;
}

.badge-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--secondary);
}

.badge-item p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Features Home Grid */
.features-home {
  padding: 5rem 0;
  background: var(--bg-light);
}

.features-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.feature-card-home {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.feature-card-home:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon-home {
  width: 70px;
  height: 70px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.feature-icon-home i {
  font-size: 2rem;
  color: var(--primary);
}

.feature-card-home h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.feature-card-home p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.step-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: rgba(245, 158, 11, 0.2);
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.customer-avatar i {
  font-size: 3rem;
  color: var(--primary);
}

.customer-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--secondary);
}

.customer-info span {
  font-size: 0.75rem;
  color: var(--gray);
}

.rating {
  margin-top: 0.25rem;
}

.rating i {
  font-size: 0.7rem;
  color: var(--primary);
}

/* CTA Banner */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content .highlight {
  color: var(--primary);
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--secondary);
}

/* Partners */
.partners {
  padding: 5rem 0;
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
}

.partner-logo {
  text-align: center;
  padding: 1rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo i {
  font-size: 2.5rem;
  color: var(--gray);
  display: block;
  margin-bottom: 0.5rem;
}

.partner-logo span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* FAQ Page */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.faq-cat-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  background: white;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--gray);
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
  background: var(--primary);
  color: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(245, 158, 11, 0.05);
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.2rem;
  max-height: 200px;
}

.faq-answer p {
  color: var(--gray);
  line-height: 1.6;
}

.still-have-questions {
  padding: 5rem 0;
  background: white;
}

.questions-card {
  background: linear-gradient(135deg, var(--bg-light), white);
  border-radius: 28px;
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.questions-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.questions-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.questions-card p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.questions-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Blog Page */
.blog-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  padding: 2rem;
  text-align: center;
}

.blog-image i {
  font-size: 3rem;
  color: var(--primary);
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.7rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.blog-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.blog-content p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.read-more {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 0.8rem;
}

.newsletter-section {
  padding: 5rem 0;
  background: white;
}

.newsletter-card {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 28px;
  padding: 3rem;
  text-align: center;
  color: white;
}

.newsletter-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.newsletter-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.newsletter-card p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.newsletter-form-large {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form-large input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 50px;
  font-family: inherit;
}

/* Footer Contact Info */
.contact-info-footer {
  margin-top: 1rem;
}

.contact-info-footer p {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-footer i {
  width: 20px;
  color: var(--primary);
}

/* Responsive Updates */
@media (max-width: 1024px) {
  .badges-grid,
  .features-grid-home,
  .steps-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .badges-grid,
  .features-grid-home,
  .steps-grid,
  .testimonials-grid,
  .blog-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
  }
  
  .questions-buttons {
    flex-direction: column;
  }
  
  .newsletter-form-large {
    flex-direction: column;
  }
  
  .faq-categories {
    flex-direction: column;
    align-items: stretch;
  }
  
  .faq-cat-btn {
    text-align: center;
  }
}




/* Google Map Section */
.google-map-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.map-container {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-header {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
}

.map-header i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.map-header h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.map-header p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.google-map {
  width: 100%;
  height: 450px;
  background: #e2e8f0;
}

.map-info-window {
  padding: 0.5rem;
}

.map-info-window h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.map-info-window h4 i {
  color: var(--primary);
  margin-right: 0.3rem;
}

.map-info-window p {
  font-size: 0.8rem;
  margin: 0.3rem 0;
  color: var(--gray);
}

.map-info-window .info-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.3rem 0.8rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.7rem;
  transition: all 0.3s ease;
}

.map-info-window .info-btn:hover {
  background: var(--primary-dark);
}

.map-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.map-fallback i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.map-fallback p {
  margin-bottom: 1rem;
  color: var(--secondary);
}

/* Coverage List Section */
.coverage-list-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.coverage-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.coverage-division {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.coverage-division:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.division-header {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.division-header i {
  font-size: 1.5rem;
  color: var(--primary);
}

.division-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  flex: 1;
}

.badge-available, .badge-coming {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

.badge-available {
  background: #10b981;
  color: white;
}

.badge-coming {
  background: #f59e0b;
  color: white;
}

.cities-list {
  padding: 1rem 1.5rem 1.5rem;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.city-item:last-child {
  border-bottom: none;
}

.city-item i {
  font-size: 0.9rem;
  color: var(--primary);
  width: 20px;
}

.city-item span:first-of-type {
  flex: 1;
  font-size: 0.9rem;
  color: var(--dark);
}

.status {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
}

.status.available {
  background: #d1fae5;
  color: #10b981;
}

.status.coming {
  background: #fed7aa;
  color: #f59e0b;
}

/* Coverage Stats */
.coverage-stats {
  padding: 5rem 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Request Coverage CTA */
.coverage-cta {
  padding: 5rem 0;
  background: var(--bg-light);
}

.request-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.request-note i {
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .coverage-wrapper {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .division-header {
    flex-direction: column;
    text-align: center;
  }
  
  .city-item {
    flex-wrap: wrap;
  }
  
  .google-map {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .google-map {
    height: 300px;
  }
  
  .map-header h3 {
    font-size: 1rem;
  }
}















.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  transition: width 0.3s ease;
}

.speed-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

.speed-status i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.speedtest-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.speed-info {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
}

.speed-info i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.speed-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.speed-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.speed-feature:hover {
  transform: translateX(5px);
}

.speed-feature i {
  font-size: 1.8rem;
  color: var(--primary);
}

.speed-feature h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--secondary);
}

.speed-feature p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Why Choose */
.why-choose {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
}

.why-choose .section-title,
.why-choose .section-title .highlight {
  color: white;
}

.why-choose .section-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--primary-light);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-list {
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list li i {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 0.1rem;
}

.why-list li strong {
  display: block;
  font-size: 0.95rem;
  color: white;
  margin-bottom: 0.2rem;
}

.why-list li span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.stats-highlight {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
}

.stat-circle {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.circle-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.circle-label {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  padding: 5rem 0;
  text-align: center;
  margin-top: 73px;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.page-header h1 .highlight {
  color: var(--primary);
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Coverage Page */
.coverage-map-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.coverage-map-container {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.map-visual {
  position: relative;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  border-radius: 20px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-visual > i {
  font-size: 8rem;
  color: rgba(15, 43, 61, 0.1);
}

.map-points {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-point {
  position: absolute;
  cursor: pointer;
}

.point-dot {
  display: block;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.3);
  animation: ping 1.5s infinite;
}

@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.point-label {
  position: absolute;
  left: 18px;
  top: -8px;
  background: var(--secondary);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-point:hover .point-label {
  opacity: 1;
}

.cities-covered {
  padding: 5rem 0;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.city-card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.city-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.city-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--secondary);
}

.city-card p {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
}

.city-status {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.city-status.available {
  background: #10b981;
  color: white;
}

.city-status.coming {
  background: #f59e0b;
  color: white;
}

.coverage-cta {
  padding: 5rem 0;
  background: var(--bg-light);
}

.coverage-cta-card {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 28px;
  padding: 3rem;
  text-align: center;
  color: white;
}

.coverage-cta-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.coverage-cta-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.coverage-cta-card p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.availability-check {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.availability-check input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.9rem;
}

.availability-check button {
  white-space: nowrap;
}

/* About Page */
.about-story {
  padding: 5rem 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-content p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.story-image {
  background: linear-gradient(135deg, #fef3c7, #f2ebff);
  border-radius: 28px;
  padding: 12rem;
  text-align: center;
}

.story-image i {
  font-size: 6rem;
  color: var(--primary);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.mission-vision {
  padding: 5rem 0;
  background: #d6e0ea;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mission-card, .vision-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-5px);
}

.mission-card i, .vision-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.mission-card h3, .vision-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.values {
  padding: 5rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.value-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

.team {
  padding: 5rem 0;
  background:#d6e0ea;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.team-avatar i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.team-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--secondary);
}

.team-card span {
  font-size: 0.85rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Contact Page */
.contact-page {
  padding: 5rem 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-page-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: var(--bg-light);
  padding: 1.8rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.info-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.info-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

.contact-page-form {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 28px;
}

.contact-page-form h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.map-section {
  padding: 0 0 5rem 0;
}

.map-placeholder {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  border-radius: 28px;
  padding: 4rem;
  text-align: center;
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Footer */
.footer {
  background: var(--secondary);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  position: relative;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 2rem;
  font-family: inherit;
  font-size: 0.8rem;
}

.newsletter-form button {
  background: var(--primary);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
  opacity: 0.6;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  background: #10b981;
  color: white;
  font-weight: 500;
  font-size: 0.85rem;
  z-index: 9999;
  animation: slideIn 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.toast.error { background: #ef4444; }
.toast.info { background: var(--primary); }

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .packages-grid, .values-grid, .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-story-grid, .why-choose-grid, .mv-grid, .contact-page-grid, .speedtest-container {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-highlight {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-page-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 73px);
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    transition: left 0.3s ease;
    z-index: 999;
    gap: 1.5rem;
  }
  
  .nav-menu.active { left: 0; }
  .menu-toggle { display: block; }
  
  .hero-slider {
    height: 70vh;
    min-height: 500px;
  }
  
  .slide-content h1 {
    font-size: 2rem;
  }
  
  .slide-content p {
    font-size: 0.9rem;
  }
  
  .slide-buttons {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .contact-info, .contact-form, .contact-page-form {
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .newsletter-form {
    max-width: 280px;
    margin: 0 auto 1.5rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .availability-check {
    flex-direction: column;
  }
  
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .packages-grid, .values-grid, .cities-grid, .team-grid, .contact-page-info {
    grid-template-columns: 1fr;
  }
  
  .package-card {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  
  .gauge-value {
    font-size: 2rem;
  }
  
  .speed-gauge {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .slide-content h1 {
    font-size: 1.5rem;
  }
}
.career-section{
    padding:80px 0;
}

.career-header{
    text-align:center;
    margin-bottom:50px;
}

.career-header h1{
    font-size:42px;
    margin-bottom:15px;
}

.job-card{
    border:1px solid #ddd;
    padding:20px;
    border-radius:10px;
    margin-bottom:15px;
}

.job-card h3{
    margin-bottom:10px;
}

.job-card a{
    display:inline-block;
    margin-top:10px;
    padding:10px 20px;
    background:#ff1744;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
}

.career-footer{
    text-align:center;
    margin-top:40px;
}