* {
  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;
  }
}



/* =====================================
   CENTER HERO – DIPLOMA IN NURSERY EDUCATION
===================================== */

.dne-hero-center {
  position: relative;
  min-height: 100vh;
  background-image: url("https://images.unsplash.com/photo-1588072432836-e10032774350");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 0 20px;
  color: #ffffff;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.45)
  );
  z-index: 1;
}

/* Content */
.hero-content-center {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-content-center h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content-center p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #f2f2f2;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons a {
  padding: 14px 34px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #ff9800;
  color: #000;
}

.btn-primary:hover {
  background: #ffb74d;
  transform: translateY(-3px);
}

.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #000;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 992px) {
  .hero-content-center h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-content-center h1 {
    font-size: 2.2rem;
  }

  .hero-content-center p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .dne-hero-center {
    min-height: 90vh;
  }

  .hero-content-center h1 {
    font-size: 1.8rem;
  }

  .hero-buttons a {
    width: 100%;
  }
}

/* =====================================
   ABOUT – DIPLOMA IN NURSERY EDUCATION
===================================== */

.dne-about {
  background: #f9fbff;
  padding: 90px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1e2a5a;
}

.about-header .underline {
  width: 80px;
  height: 4px;
  background: #ff9800;
  display: block;
  margin: 15px auto 0;
  border-radius: 4px;
}

/* Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Text */
.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.about-points {
  list-style: none;
  padding: 0;
}

.about-points li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
  font-weight: 500;
}

.about-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff9800;
  font-weight: bold;
}

/* Feature Cards */
.about-features {
  display: grid;
  gap: 25px;
}

.feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #1e2a5a;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .dne-about {
    padding: 70px 15px;
  }

  .about-header h2 {
    font-size: 1.9rem;
  }
}


/* =====================================
   BENEFITS – DIPLOMA IN NURSERY EDUCATION
===================================== */

.dne-benefits {
  background: linear-gradient(180deg, #ffffff, #f3f6ff);
  padding: 90px 20px;
}

.benefits-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1e2a5a;
  margin-bottom: 15px;
}

.benefits-header p {
  max-width: 700px;
  margin: auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

/* Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Benefit Card */
.benefit-box {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.benefit-box:hover {
  transform: translateY(-8px);
}

/* Number */
.benefit-number {
  position: absolute;
  top: -20px;
  right: 25px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 152, 0, 0.2);
}

/* Text */
.benefit-box h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #1e2a5a;
}

.benefit-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-header h2 {
    font-size: 1.9rem;
  }

  .benefit-box {
    padding: 30px 25px;
  }
}
/* =============================
  WHAT OUR STUDENTS SAY
============================= */
.students-say {
  background: #fef9f4;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.students-say .section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

.testimonial-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 30px;
  padding-bottom: 20px;
}

.testimonial {
  min-width: 300px;
  max-width: 350px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-10px);
}

.feedback {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.student-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.student-role {
  font-size: 0.9rem;
  color: #888;
}

.testimonial-controls {
  margin-top: 20px;
}

.testimonial-controls button {
  background: #ff6b6b;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px;
  transition: background 0.3s ease;
}

.testimonial-controls button:hover {
  background: #ff4b4b;
}

@media (max-width: 768px) {
  .testimonial-wrapper {
    gap: 20px;
  }
}

/* =====================================
   FAQ – DIPLOMA IN NURSERY EDUCATION
===================================== */

.dne-faq {
  background: #ffffff;
  padding: 90px 20px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e2a5a;
  margin-bottom: 12px;
}

.faq-header p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #e5e8f0;
}

/* Question Button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 10px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e2a5a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  color: #ff9800;
}

/* Icon */
.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 10px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 576px) {
  .faq-header h2 {
    font-size: 1.9rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}














/* 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;
  }
}
