/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background: #fff;
  transition: background 0.3s, color 0.3s;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
header {
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  color: #fff;
  transition: 0.4s;
}
header.scrolled {
  background: #0a0a23;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
}
.logo span {
  color: #00aaff;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav-links a:hover {
  color: #00aaff;
}
.header-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  background: #00aaff;
  color: #fff;
  padding: 8px 18px;
  border-radius: 5px;
  transition: 0.3s;
}
.btn:hover {
  background: #008ecc;
}
#theme-toggle {
  background: #00aaff;
  border: none;
  color: #fff;
  border-radius: 5px;
  padding: 6px 10px;
  cursor: pointer;
}
#menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ===== HERO ===== */
/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

/* Background Canvas */
#hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1920&q=80")
    center/cover no-repeat;
  z-index: 0;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom right, rgba(0, 10, 40, 0.85), rgba(0, 50, 120, 0.85));
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeIn 2s ease;
}
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00aaff, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d9ecff;
  margin-bottom: 30px;
}
.hero-btn {
  background: linear-gradient(90deg, #00aaff, #00ffcc);
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.3);
}
.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.5);
}

/* Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-btn {
    padding: 12px 28px;
  }
}
/* ===== SECTIONS ===== */
/* ===== ABOUT SECTION ===== */
#about {
  background: linear-gradient(135deg, #0a0a23, #004e92);
  color: #fff;
  padding: 90px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

/* Image Styling */
.about-image {
  flex: 1;
  min-width: 300px;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 170, 255, 0.3);
}

/* Content Section */
/* ===== ABOUT SECTION ===== */
/* ===== ABOUT SECTION ===== */
#about {
  background: linear-gradient(135deg, #0a0a23, #004e92);
  color: #fff;
  padding: 90px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

/* Image Styling */
.about-image {
  flex: 1;
  min-width: 300px;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 170, 255, 0.3);
}

/* Content Section */
.about-content {
  flex: 1;
  min-width: 300px;
}
.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.about-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #00aaff;
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.about-text {
  color: #d0e7ff;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Mission & Vision Cards */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mv-card {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 170, 255, 0.3);
}
.mv-card h3 {
  font-size: 1.3rem;
  color: #00aaff;
  margin-bottom: 10px;
}
.mv-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e6f4ff;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .mission-vision {
    flex-direction: column;
  }
}
/* ===== SERVICES ===== */
/* ===== SERVICES SECTION ===== */
#services {
  position: relative;
  background: url("https://images.unsplash.com/photo-1531297484001-80022131f5a1?auto=format&fit=crop&w=1920&q=80")
    center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
}

.services-overlay {
  background: rgba(0, 10, 50, 0.8);
  padding: 80px 0;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: #00aaff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
.section-subtitle {
  max-width: 650px;
  margin: 15px auto 60px;
  color: #cce7ff;
  font-size: 1rem;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Card Style */
.service-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.3), transparent 70%);
  transform: scale(0);
  transition: transform 0.4s ease;
  z-index: 0;
}
.service-card:hover::before {
  transform: scale(1);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
}
.service-icon {
  font-size: 2.8rem;
  color: #00aaff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.service-card p {
  color: #cce7ff;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .service-card {
    padding: 30px 20px;
  }
}

/* ===== EBOOK BUNDLE SECTION ===== */
.ebook-section {
  background: linear-gradient(to right, #f8fbff, #eef6ff);
  padding: 100px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ebook-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
}

.ebook-image img {
  width: 450px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 100, 255, 0.15);
  transition: transform 0.5s ease;
}
.ebook-image img:hover {
  transform: scale(1.05);
}

.ebook-content {
  flex: 1;
  min-width: 300px;
}

.ebook-content h2 {
  font-size: 2.4rem;
  color: #003366;
  margin-bottom: 20px;
  font-weight: 700;
}

.ebook-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

.ebook-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.ebook-features li {
  font-size: 1rem;
  color: #004080;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
.ebook-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00aaff;
}

.ebook-price {
  margin-bottom: 20px;
}
.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.1rem;
  margin-right: 10px;
}
.new-price {
  color: #0077ff;
  font-size: 1.6rem;
  font-weight: 700;
}

.ebook-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00aaff, #00ffcc);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.3);
  transition: all 0.3s ease;
}
.ebook-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .ebook-container {
    flex-direction: column;
    text-align: center;
  }
  .ebook-image img {
    width: 100%;
    max-width: 380px;
  }
}

/* ===== REVIEWS CAROUSEL ===== */
#reviews {
  background: linear-gradient(135deg, #0a0a23, #004e92);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #00aaff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.review-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.review-card {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.6s ease;
}
.review-card.active {
  display: block;
  animation: fadeIn 0.8s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.review-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid #00aaff;
}
.review-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.review-header p {
  font-size: 0.9rem;
  color: #aad4ff;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e3e3e3;
  margin-bottom: 15px;
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  letter-spacing: 3px;
}

/* Dots */
.slider-dots {
  margin-top: 25px;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.dot.active {
  background-color: #00aaff;
}

/* Responsive */
@media (max-width: 768px) {
  .review-card {
    padding: 20px;
  }
}
/* ===== FAQ ===== */
/* ===== FAQ SECTION ===== */
.faq-section {
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  padding: 100px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.faq-container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 10px;
}

.faq-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 80, 200, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: left;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #002b80;
}

.faq-icon {
  font-size: 1.5rem;
  color: #0077ff;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #555;
  background: #f8fbff;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
  border-top: 1px solid #e6ecf5;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px 25px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Hover effect */
.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 120, 255, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }
  .faq-question h3 {
    font-size: 1rem;
  }
}

/* ===== CONTACT ===== */
/* ===== CONTACT SECTION ===== */
#contact {
  background: linear-gradient(135deg, #0a0a23, #004e92);
  color: #fff;
  padding: 90px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}

.contact-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #aad4ff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Form Inputs */
.form-group {
  position: relative;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 12px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}
.form-group textarea {
  resize: none;
}

/* Floating Labels */
.form-group label {
  position: absolute;
  top: 14px;
  left: 12px;
  color: #ccc;
  font-size: 0.95rem;
  pointer-events: none;
  transition: 0.3s ease;
}
.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -12px;
  left: 8px;
  font-size: 0.8rem;
  color: #00aaff;
  background: #0a0a23;
  padding: 0 5px;
  border-radius: 5px;
}

/* Glow Effect on Focus */
.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 10px #00aaff;
  border: 1px solid #00aaff;
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(135deg, #00aaff, #0072ff);
  border: none;
  padding: 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.4);
}

/* Responsive */
@media (max-width: 600px) {
  .contact-container {
    padding: 35px 25px;
  }
}


/* ===== FOOTER ===== */
/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #0a0a23, #004e92);
  color: #fff;
  padding: 80px 8% 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 300px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-about p {
  color: #cce7ff;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #00aaff;
  position: relative;
}
.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #00aaff;
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin: 8px 0;
}
.footer-col ul li a {
  color: #cce7ff;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: #00ffcc;
}

.footer-col p {
  color: #cce7ff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 8px 0;
}

/* Social Icons */
.footer-socials {
  margin-top: 15px;
}
.footer-socials a {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-socials a:hover {
  color: #00ffcc;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
}
.footer-bottom p {
  font-size: 0.9rem;
  color: #aad4ff;
}

/* ===== Privacy Section ===== */
    .privacy-section {
      background: linear-gradient(180deg, #ffffff, #f8fbff);
      padding: 80px 20px;
    }

    .privacy-container {
      max-width: 1100px;
      margin: 0 auto;
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      padding: 50px;
    }

    .privacy-container h1 {
      text-align: center;
      font-size: 2.4rem;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .privacy-container p.subtext {
      text-align: center;
      color: var(--muted);
      margin-bottom: 40px;
    }

    .privacy-container h2 {
      color: var(--secondary);
      margin-top: 30px;
      font-size: 1.3rem;
      border-left: 4px solid var(--primary);
      padding-left: 10px;
    }

    .privacy-container p,
    .privacy-container ul {
      color: var(--text);
      line-height: 1.8;
      font-size: 1rem;
    }

    .privacy-container ul {
      margin-left: 25px;
    }

    .privacy-container li {
      margin-bottom: 8px;
    }

    .privacy-container strong {
      color: var(--secondary);
    }

    .privacy-container .star {
      color: var(--primary);
      font-weight: bold;
      margin-right: 5px;
    }

     /* ===== Terms Section ===== */
    .terms-section {
      background: linear-gradient(180deg, #ffffff, #f8fbff);
      padding: 80px 20px;
    }

    .terms-container {
      max-width: 1100px;
      margin: 0 auto;
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      padding: 50px;
    }

    .terms-container h1 {
      text-align: center;
      font-size: 2.4rem;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .terms-container p.subtext {
      text-align: center;
      color: var(--muted);
      margin-bottom: 40px;
    }

    .terms-container h2 {
      color: var(--secondary);
      margin-top: 30px;
      font-size: 1.3rem;
      border-left: 4px solid var(--primary);
      padding-left: 10px;
    }

    .terms-container p,
    .terms-container ul {
      color: var(--text);
      line-height: 1.8;
      font-size: 1rem;
    }

    .terms-container ul {
      margin-left: 25px;
    }

    .terms-container li {
      margin-bottom: 8px;
    }

    .terms-container strong {
      color: var(--secondary);
    }

    .terms-container .star {
      color: var(--primary);
      font-weight: bold;
      margin-right: 5px;
    }
  .policy-section {
  padding: 100px 8%;
  background: #f9fbff;
  color: #333;
  line-height: 1.8;
  font-family: "Poppins", sans-serif;
}
.policy-section h1 {
  font-size: 2.5rem;
  color: #002b80;
  margin-bottom: 20px;
  text-align: center;
}
.policy-section h2 {
  color: #0044cc;
  margin-top: 40px;
  margin-bottom: 10px;
}
.policy-section ul {
  margin-left: 20px;
  list-style: none;
}
.policy-section ul li {
  padding-left: 10px;
  margin-bottom: 8px;
}
.policy-section a {
  color: #0066ff;
  text-decoration: none;
}
.policy-section a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .footer-logo {
    margin: 0 auto 15px;
  }
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* ===== ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    background: #0a0a23;
    width: 100%;
    flex-direction: column;
    display: none;
    text-align: center;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 15px 0;
  }
  #menu-toggle {
    display: block;
  }
}

/* ===== FIXED DARK HEADER FOR INNER PAGES ===== */
.innerpage-header {
  background: #0a0a23 !important;
  color: #fff !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.innerpage-header.scrolled {
  background: #0a0a23 !important;
}

