/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ================= TOP HEADER ================= */
.top-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1100;

  background: rgba(0, 82, 204, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px 25px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  min-height: 40px;
}

/* Left */
.top-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.top-left a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Center */
.top-center {
  flex: 1;
  text-align: center;
}

.top-center p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0 10px;
}

/* Right */
.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-right a {
  color: #fff;
  font-size: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-right a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    gap: 6px;
    padding: 6px 12px;
    text-align: center;
  }

  .top-left,
  .top-right {
    justify-content: center;
  }

  .top-center p {
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .top-center p {
    font-size: 11.5px;
  }
}

/* HERO BACKGROUND */
.virtual-hero {
    width: 100%;
    height: 100vh;
    background: url("./Assets/HomePage/Hero-1.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* RECTANGLE OVERLAY (CONTENT ONLY) */
.content-overlay {
    background: rgba(0, 0, 0, 0.6); /* Light black */
    padding: 50px 60px;
    text-align: center;
    max-width: 850px;
    width: 100%;
    color: #ffffff;
    border-radius: 6px; /* Rectangle look */
}

/* CONTENT */
.content-overlay h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.content-overlay p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: #1e88e5;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background-color: #1565c0;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .content-overlay {
        padding: 35px 25px;
    }

    .content-overlay h1 {
        font-size: 2.2rem;
    }

    .content-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}


/* Virtual Online Classes Section */
.virtual-about {
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.virtual-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Content */
.virtual-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0d47a1;
}

.virtual-intro {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

.virtual-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Highlights */
.virtual-highlights {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.highlight {
  font-size: 14px;
  padding: 10px 14px;
  border-left: 4px solid #0d47a1;
  background: #f9fafc;
  border-radius: 6px;
}

/* Feature Cards */
.virtual-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0d47a1;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 992px) {
  .virtual-container {
    grid-template-columns: 1fr;
  }

  .virtual-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .virtual-highlights,
  .virtual-features {
    grid-template-columns: 1fr;
  }

  .virtual-content h2 {
    font-size: 26px;
  }
}



/* Why Choose Section */
.why-choose {
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.why-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.why-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #0d47a1;
}

.why-header p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Cards */
.why-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  text-align: center;
}

.why-icon {
  font-size: 34px;
  display: inline-block;
  margin-bottom: 15px;
}

.why-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0d47a1;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 26px;
  }
}



/* Student Voices Section */
.student-voices {
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.student-voices-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.student-voices-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.student-voices-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #0d47a1;
}

.student-voices-header p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* List Layout */
.student-voices-list {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

/* Individual Voice */
.voice-item {
  position: relative;
  padding-left: 30px;
}

.voice-line {
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #0d47a1, #64b5f6);
  border-radius: 2px;
}

.voice-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
}

.voice-name {
  font-size: 14px;
  font-weight: 500;
  color: #0d47a1;
}

/* Subtle Hover */
.voice-item:hover .voice-text {
  color: #0d47a1;
  transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .student-voices-header h2 {
    font-size: 30px;
  }

  .voice-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .student-voices-header h2 {
    font-size: 26px;
  }

  .voice-item {
    padding-left: 22px;
  }
}


/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #0d47a1;
}

.faq-header p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* FAQ Items */
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 22px;
  color: #0d47a1;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 600px) {
  .faq-header h2 {
    font-size: 26px;
  }

  .faq-question {
    font-size: 15px;
  }
}






/* FOOTER */

.footer {
  background: #0c0f1a;
  color: #dcdcdc;
  font-family: 'Poppins', sans-serif;
}

/* ===== STATE QUICK LINKS ===== */
.footer-states {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-states h4 {
  color: #1f4fd8;
  margin-bottom: 20px;
}

.state-links {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 30px;
}

.state-links a {
  color: #cccccc;
  font-size: 13px;
  text-decoration: none;
}

.state-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ===== MAIN GRID ===== */
.footer-grid {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* COMMON */
.footer-col h4 {
  color: #1f4fd8;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #ffffff;
}

/* BRAND */
.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-col h3 {
  color: #1f4fd8;
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #1f4fd8;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  color: #555;
}

.footer-bottom p {
  margin: 0 0 5px 0;
}

.footer-link {
  color: #1a5cff; /* crimson theme */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-link:hover {
  color: #1a5cff;
  text-decoration: underline;
}

.footer-links {
  font-size: 13px;
  color: #555;
}

.footer-links span {
  margin: 0 5px;
}




/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .state-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .state-links {
    grid-template-columns: 1fr;
  }
}
