/* style.css */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: white;
  font-size: 18px;
  line-height: 1.6;
}

/* 🌠 Fiber Light Background Animation */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,183,255,0.25) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: moveLights 10s linear infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes moveLights {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 60px;
  }
}

header {
  background: #111;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 1.1rem;
}

.glow {
  font-size: 2em;
  color: #00f6ff;
  text-shadow: 0 0 10px #00f6ff, 0 0 20px #00f6ff, 0 0 30px #00f6ff;
}

.hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to right, #001f3f, #0074D9);
}

.hero-title {
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-subtitle {
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

/* Plans Section */
.plans-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to right, #004e92, #000428);
}

.plans-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.plan-card {
  background: #111;
  border: 2px solid #00f6ff;
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  color: white;
  box-shadow: 0 0 20px #00f6ff88;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #00f6ffcc;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
  background: radial-gradient(circle, #001f3f, #000);
  border-radius: 20px;
  box-shadow: 0 0 30px #00f6ff44;
}

.about-section h2 {
  color: #00f6ff;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
}

.contact-section h2 {
  color: #00f6ff;
  margin-bottom: 20px;
}

.contact-section form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-section input,
.contact-section textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #111;
  color: white;
  font-size: 16px;
  box-shadow: 0 0 10px #00f6ff44;
}

.contact-section button {
  padding: 12px;
  background: #00f6ff;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-section button:hover {
  background: #00aaff;
}

.contact-info {
  margin-top: 30px;
  font-size: 16px;
  opacity: 0.8;
}

/* Thank You Page */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: black;
  color: white;
  text-align: center;
  padding: 40px;
}

.thankyou-section h2 {
  color: #00f6ff;
  margin-bottom: 20px;
  font-size: 2em;
}

.back-home {
  margin-top: 20px;
  padding: 10px 20px;
  background: #00f6ff;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

/* 🌟 Offer Section */
.offer-section {
  padding: 60px 20px;
  background: #001f3f;
  color: white;
  text-align: center;
}

.offer-section h2 {
  color: #00f6ff;
  margin-bottom: 30px;
  font-size: 1.8em;
}

/* 🧊 Offer Box Styling */
.offer-box {
  max-width: 600px;
  margin: 20px auto;
  background: #111;
  border-left: 6px solid #00f6ff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px #00f6ff44;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.offer-box:nth-of-type(1) {
  animation-delay: 0.3s;
}

.offer-box:nth-of-type(2) {
  animation-delay: 0.6s;
}

.offer-box h3 {
  margin-bottom: 10px;
  color: #00f6ff;
}

.offer-box p {
  font-size: 16px;
  line-height: 1.5;
}

/* ✨ Animation Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Navbar Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  animation: slideDown 0.8s ease-out forwards;
}

/* Hero Text Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Font Sizes for Headings */
h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.6rem;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: #25d366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 0 10px #25d366aa;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 48px;
  height: 48px;
}
/* Responsive Layout */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 10px;
  }

  .plans-container {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 90%;
  }

  .offer-box {
    width: 90%;
  }

  .about-section,
  .contact-section form {
    padding: 20px;
    width: 100%;
  }

  .contact-section input,
  .contact-section textarea {
    width: 100%;
  }

  .hero {
    padding: 60px 20px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  nav a {
    display: block;
    margin: 8px 0;
    font-size: 1rem;
  }
}
