/* ==========================
   RESET & BASE STYLES
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  padding-top:0; /* equal to your header height */
  background: #050b18;
  color: #d9f6ff;
  overflow-x: hidden;
  margin-top: 100px;
  margin: 0px;
}

html {
  scroll-behavior: smooth;
}

/* ==========================
   HEADER & NAVBAR
========================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.brand {
  color: #00eaff;
  font-weight: 600;
  font-size: 1.8rem;
  
  
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #00eaff;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color:white;
  

}

/* ==========================
   BANNER / HERO SLIDER
========================== */
.banner {
  position: relative;
  margin-top: 0px;
  height: 70vh;
  overflow: hidden;
}

.banner-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: bannerSlide 15s infinite;
}

.banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeSlide 15s infinite;
}

.banner-slide:nth-child(1) { animation-delay: 0s; }
.banner-slide:nth-child(2) { animation-delay: 5s; }
.banner-slide:nth-child(3) { animation-delay: 10s; }

@keyframes fadeSlide {
  0%, 100% { opacity: 0; }
  10%, 30% { opacity: 1; }
}

/* ==========================
   BANNER TEXT
========================== */
.banner-text {
  position: absolute;
  bottom: 20%;
  left: 8%;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  
}

.banner-text h2 {
  color: #00eaff;
  font-size: 2rem;
  
}

.banner-text p {
  color: #e1f6f8;
  font-size: 1rem;
  margin-top: 10px;
}

/* ==========================
   MAIN CONTENT
========================== */

.content {
  padding: 3rem 10%;
  text-align: center;
}

.content h2 {
  color: #00eaff;
  margin-bottom: 1rem;
  
}

.content p {
  color: #bfeaff;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

/* ==========================
   BUTTONS
========================== */
button {
  background: #00eaff;
  color: #001b2b;
  border: none;
  padding: 10px 25px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

button:hover {
  background: linear-gradient(90deg, #00eaff, #009dff);
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.8);
}

/* ==========================
   FOOTER
========================== */
footer {
  text-align: center;
  padding: 1rem;
  background: #0a1328;
  color: #7ddfff;
  margin-top: 3rem;
  box-shadow: 0 -2px 15px rgba(0, 191, 255, 0.3);
}

/* ==========================
   GENERIC PAGE STYLES
========================== */
.page {
  padding: 4rem 10%;
}

.page h2 {
  color: #00eaff;
  margin-bottom: 1rem;
  text-align: center;
  
}

.page p {
  color: #bfeaff;
  line-height: 1.6;
  text-align: justify;
}

/* ==========================
   CONTACT PAGE
========================== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #0b172e;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
  background: #0f203d;
  color: #aee8ff;
}

.contact-form button {
  width: 100%;
}

/* ==========================
   SERVICES GRID
========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
  padding: 0 20px 60px;
}

.service {
  background:#00eaff;
  padding: 24px;
  border-radius: 14px;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
  color: #001a2e;
  font-weight: 500;
  
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 191, 255, 0.8);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.6));
  transition: all 0.3s ease;
}

.service:hover .service-icon {
  transform: scale(1.08);
  filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.8));
}

.service h3 {
  color: #001b33;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service p {
  color: #002b44;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==========================
   HEADINGS (NEON BLUE)
========================== */
/* ==========================
   HEADINGS (PLAIN NEON BLUE)
========================== */
h1, h2 {
  color: #00eaff; /* solid neon blue */
  text-shadow: none; /* remove glow */
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

h1 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
.home-contact {
  background: #0a0a0f;
  color: #e0e0ff;
  text-align: center;
  padding: 60px 20px;
  border-top: 1px solid rgba(0,255,255,0.2);
}

.home-contact h2 {
  color: #00bfff;
  font-size: 2rem;
  margin-bottom: 20px;
  
}

.home-contact a {
  color: #00bfff;
  text-decoration: none;
}

.home-contact a:hover {
  text-decoration: underline;
}
/* ---------- Footer Styles ---------- */
.site-footer {
  background: linear-gradient(90deg, #001a33, #003366);
  color: #e0f7ff;
  padding: 60px 20px 20px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-container h2 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #eff8f8; /* neon blue */
  
}

.footer-container p,
.footer-container a {
  color: #b3e5ff;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer-container a:hover {
  color: #00ffff;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.5);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #99ccff;
}
/* Terms Section */
.terms-section {
  max-width: 900px;
  margin: 100px auto;
  padding: 20px;
  color: #00eaff;
  
}

.terms-section h1 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #00eaff;
}

.accordion {
  border-radius: 10px;
  overflow: hidden;
}

.accordion-item {
  margin-bottom: 5px;
  border-radius: 6px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: linear-gradient(90deg, #00004d, #001a80);
  color: #fff;
  text-align: left;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #001060;
}

.accordion-header::after {
  content: '▾';
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}

.accordion-header.active::after {
  transform: rotate(180deg);
}

.accordion-content {
  background: #f5f7ff;
  color: #222;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.accordion-content p {
  padding: 15px 0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
/* ==== Global Styles ==== */
body {
  
  background-color: #0a0a0a;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}


/* ==== Page Section ==== */
.page_content{
  max-width: 1000px;
  margin: 100px auto;
  padding: 2rem 3rem;
  background: #0f203d;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.15);

}


.page-content {
  max-width: 1000px;
  margin: 100px auto;
  padding: 2rem 3rem;
  background: #0f203d;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.15);
}

.page-content h1 {
  color: #00eaff;
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.page-content h2 {
  color: #00aaff;
  margin-top: 2rem;
  font-size: 1.3rem;
}

.page-content p,
.page-content ul {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.page-content a {
  color: #00aaff;
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 1.5rem;
}

/* ==== Footer ==== */
footer {
  background-color: #111;
  text-align: center;
  padding: 1.5rem;
  color: #aaa;
  font-size: 0.95rem;
  margin-top: 2rem;
  box-shadow: 0 -2px 10px rgba(0, 170, 255, 0.05);
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-content {
    padding: 1.5rem;
    margin: 70px 1rem;
  }

}
.optin-section {
      max-width: 800px;
      margin: 4rem auto;
      background: #0b172e;
      padding: 2.5rem;
      border-radius: 12px;
      border: 1px solid rgba(0, 191, 255, 0.3);
      box-shadow: 0 0 25px rgba(0, 191, 255, 0.25);
      color: #d4f1ff;
      text-align: center;
    }

    .optin-section h1 {
      color: #00bfff;
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .optin-section p {
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .optin-section h3 {
      color: #8ee7ff;
      margin-top: 2rem;
      margin-bottom: 0.5rem;
    }

    .opt-buttons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .opt-btn {
      padding: 0.9rem 2rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 600;
      transition: 0.3s ease;
    }

    .optin {
      background: linear-gradient(90deg, #00bfff, #007acc);
      color: #fff;
    }

    .optin:hover {
      background: linear-gradient(90deg, #33ccff, #0099e6);
      transform: translateY(-3px);
    }

    .optout {
      background: transparent;
      border: 2px solid #00bfff;
      color: #00bfff;
    }

    .optout:hover {
      background: #00bfff;
      color: #fff;
      transform: translateY(-3px);
    }

    .note {
      margin-top: 1.5rem;
      font-size: 0.9rem;
      color: #88ccee;
    }
  /* -----------------------------
   Hamburger button hidden on desktop
----------------------------- */
#hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #00eaff;
  cursor: pointer;
  z-index: 1100;
}

/* -----------------------------
   Mobile Styles (<=768px)
----------------------------- */
@media (max-width: 768px) {
  /* Show hamburger */
  #hamburger {
    display: block;
    position: absolute;
    top: 80px;    /* vertical position of hamburger */
    right: 20px;  /* distance from right */
  }

  /* Mobile menu */
  #nav-menu {
    display: none;             /* hidden initially */
    flex-direction: column;
    position: absolute;
    top: 70px;                 /* distance below navbar */
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    text-align: center;
    padding: 1rem 0;
    z-index: 1000;
  }

  /* Show menu when active */
  #nav-menu.active {
    display: flex;
  }

  /* Menu items spacing */
  #nav-menu li {
    margin: 15px 0;
  }
}

/* -----------------------------
   Desktop Styles (>=769px)
----------------------------- */
@media (min-width: 769px) {
  #nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    width: auto;
    background: none;
    padding: 0;
  }

  #nav-menu li {
    margin: 0 1rem;
  }

  #hamburger {
    display: none;
  }
}/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button */
.dropbtn {
  padding: 10px;
  text-decoration: none;
  cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #00eaff;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Links inside dropdown */
.dropdown-content a {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

/* Show dropdown on hover for desktop */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* Mobile view: show dropdown when active */
@media (max-width: 768px) {
  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    position: relative;
    width: 100%;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  /* Make dropbtn full width in mobile */
  .dropbtn {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
  }
}
