

:root {
    --navy: #0A1F3A;       /* Deep navy blue */
    --chocolate: #5D4037;  /* Rich chocolate */
    --gold: #D4AF37;       /* Metallic gold */
    --cream: #F5F5F0;      /* Warm cream */
    --accent: #8D6E63;     /* Light chocolate accent */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
}






.top-bar {
  background-color: #3e3b58;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; /* No wrapping */
  font-family: sans-serif;
  font-size: 14px;
  gap: 16px;
}

.icon-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.icon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 16px;
}

.icon-item i {
  background-color: #D6C7AE;
  color: #3e3b58;
  padding: 10px;
  border-radius: 4px;
  font-size: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Smaller Screens */
@media (max-width: 768px) {
  .contact-text {
    display: none; /* Hide number and email text */
  }
  .top-bar {
    justify-content: center;
    flex-wrap: wrap;
  }
  .icon-group {
    gap: 16px;
  }
}






.artistic-banner {
    position: relative;
    background: linear-gradient(145deg, #ffffff 50%, #f3f7fc);
    padding: 4rem 2rem 6rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    gap: 2.5rem;
  }
  
  /* School Logo */
  .left-logo .logo-img {
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
  }
  
  /* Student Circular Image */
  .right-photo .student-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px solid #D4AF37;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
  }
  
  /* Center Text */
  .center-text {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
  }
  
  .center-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a4b88;
    margin-bottom: 0.75rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.05);
  }
  
  .center-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
  }
  
  /* Artistic Background Layer */
  .decor-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at top left, rgba(26, 75, 136, 0.3), transparent 70%),
                radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.3), transparent 70%),
                linear-gradient(to bottom right, transparent, rgba(255, 255, 255, 0.3));
    mask-image: radial-gradient(circle at 50% 50%, white 60%, transparent 100%);
  }
  
  /* Artistic Lines using Pseudo Elements */
  .artistic-banner::before,
  .artistic-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }
  
  .artistic-banner::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 75, 136, 0.2), transparent);
    bottom: -200px;
    left: -150px;
    transform: rotate(20deg);
  }
  
  .artistic-banner::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    top: -150px;
    right: -100px;
    transform: rotate(-15deg);
  }


  /* Core styles from earlier remain... */

@media (max-width: 1024px) {
    .center-text h1 {
      font-size: 2.2rem;
    }
  
    .center-text p {
      font-size: 1.05rem;
      padding: 0 1rem;
    }
  
    .left-logo .logo-img,
    .right-photo .student-circle {
      height: 120px;
      width: 120px;
    }
  }
  
  @media (max-width: 768px) {
    .banner-content {
      flex-direction: column;
      align-items: center;
      gap: 1.8rem;
      text-align: center;
    }
  
    .left-logo,
    .right-photo {
      order: 1;
    }
  
    .center-text {
      order: 2;
      padding: 0 1rem;
    }
  
    .center-text h1 {
      font-size: 1.8rem;
    }
  
    .center-text p {
      font-size: 1rem;
    }
  
    .left-logo .logo-img,
    .right-photo .student-circle {
      height: 100px;
      width: 100px;
    }
  }
  
  @media (max-width: 480px) {
    .center-text h1 {
      font-size: 1.5rem;
      line-height: 1.4;
    }
  
    .center-text p {
      font-size: 0.95rem;
      line-height: 1.6;
    }
  
    .artistic-banner {
      padding: 2.5rem 1rem 4rem;
      border-radius: 0 0 60px 60px;
    }
  
    .left-logo .logo-img,
    .right-photo .student-circle {
      height: 85px;
      width: 85px;
    }
  }
  
    


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.nav-container {
    background-color: #3e3b58;
    color: white;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }


  .nav-menu a {
    text-transform: uppercase;
  }

  .nav-item {
    position: relative;
  }

  .nav-item > a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: background 0.3s ease;
  }

  .nav-item > a:hover {
    background-color: #457b9d;
    border-radius: 4px;
  }

  .nav-item.has-dropdown > a .dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
  }

  .nav-item.has-dropdown.active > a .dropdown-icon {
    transform: rotate(180deg);
  }

  .has-dropdown .dropdown {
    display: none;
    position: absolute;
    background-color: #1d3557;
    top: 100%;
    left: 0;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    padding: 0.5rem 0;
    z-index: 999;
    flex-direction: column;
  }

  .has-dropdown:hover .dropdown {
    display: flex;
  }

  .dropdown a {
    padding: 0.75rem 1.2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .dropdown a:hover {
    background-color: #457b9d;
  }

  .mega-dropdown {
    display: none;
    position: absolute;
    background-color: #1d3557;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .has-dropdown:hover .mega-dropdown {
    display: flex;
  }

  .mega-column {
    flex: 1 1 200px;
    margin: 1rem;
  }

  .mega-column h4 {
    color: #a8dadc;
    margin-bottom: 1rem;
  }

  .mega-column a {
    display: block;
    padding: 0.5rem 0;
    color: white;
    text-decoration: none;
  }

  .mega-column a:hover {
    color: #f1faee;
    text-decoration: underline;
  }

  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 1rem;
    cursor: pointer;
  }

  @media (max-width: 991px) {
    .mobile-menu-btn {
      display: block;
    }

    .nav-menu {
      flex-direction: column;
      display: none;
      background-color: #1d3557;
    }

    .nav-menu.show {
      display: flex;
    }

    .has-dropdown .dropdown,
    .has-dropdown:hover .dropdown,
    .has-dropdown .mega-dropdown,
    .has-dropdown:hover .mega-dropdown {
      position: static;
      display: none;
    }

    .has-dropdown.active .dropdown,
    .has-dropdown.active .mega-dropdown {
      display: flex;
      flex-direction: column;
    }

    .dropdown, .mega-dropdown {
      padding-left: 1.5rem;
    }
  }





  .curriculum-events-section {
    background: var(--cream);
    padding: 5rem 1rem;
    font-family: 'Segoe UI', sans-serif;
    color: var(--navy);
  }
  
  .events-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .events-heading h2 {
    font-size: 3rem;
    color: var(--chocolate);
    margin-bottom: 0.5rem;
  }
  
  .events-heading p {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 2rem;
  }
  
  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  .event-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10, 31, 58, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(10, 31, 58, 0.15);
  }
  
  .event-card img {
    width: 80px;
    margin-bottom: 1rem;
  }
  
  .event-card h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  
  .event-card p {
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.6;
  }
  
  .events-footer {
    margin-top: 3rem;
    background-color: var(--gold);
    padding: 1.5rem;
    border-radius: 15px;
    color: white;
    font-weight: bold;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  




    /* ======= Footer Styles ======= */
    .footer {
      background-color: #3e3b58;
      color: #e9ecef;
      padding: 4rem 2rem 0;
      font-family: 'Poppins', sans-serif;
  }

  .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      padding-bottom: 3rem;
  }

  .footer-column {
      padding: 0 1rem;
  }

  .footer-logo img {
      height: 50px;
      margin-bottom: 1.5rem;
  }

  .footer-description {
      color: #adb5bd;
      line-height: 1.6;
      margin-bottom: 1.5rem;
  }

  .social-links {
      display: flex;
      gap: 1rem;
  }

  .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: white;
      transition: all 0.3s ease;
  }

  .social-links a:hover {
      background: #4dabf7;
      transform: translateY(-3px);
  }

  .footer-title {
      color: white;
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.5rem;
  }

  .footer-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 2px;
      background: #4dabf7;
  }

  .footer-links {
      list-style: none;
  }

  .footer-links li {
      margin-bottom: 0.8rem;
  }

  .footer-links a {
      color: #adb5bd;
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
  }

  .footer-links a:hover {
      color: #4dabf7;
      padding-left: 5px;
  }

  .footer-links i {
      margin-right: 8px;
      font-size: 0.8rem;
      color: #4dabf7;
  }

  .footer-contact {
      list-style: none;
  }

  .footer-contact li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1rem;
      line-height: 1.5;
  }

  .footer-contact i {
      color: #4dabf7;
      margin-right: 1rem;
      margin-top: 3px;
  }

  .copyright-bar {
      background-color: #142850;
      padding: 1.2rem 0;
  }

  .copyright-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      padding: 0 2rem;
  }

  .copyright-bar p {
      color: #adb5bd;
      font-size: 0.9rem;
  }

  .footer-legal {
      display: flex;
      gap: 1.5rem;
  }

  .footer-legal a {
      color: #adb5bd;
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.3s ease;
  }

  .footer-legal a:hover {
      color: #4dabf7;
  }

  @media (max-width: 768px) {
      .footer-container {
          grid-template-columns: 1fr;
          gap: 2.5rem;
      }
      
      .copyright-container {
          flex-direction: column;
          text-align: center;
      }
      
      .footer-legal {
          margin-top: 0.5rem;
      }
  }






