

: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);
  }


    


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.nav-container {
    background-color: #3e3b58;
    color: #D6C7AE;
    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-item {
    position: relative;
  }
  .nav-menu a {
    text-transform: uppercase;
  }
  .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;
    }
  }





















        .bodi {
            
            font-family: 'Georgia', serif;
            background-color: #f9f9f7;
            color: #333;
            line-height: 1.6;
            
        }

        h1 {
            text-align: center;
            margin: 40px 0 30px;
            color: #2c3e50;
            font-size: 2.8rem;
            font-weight: 300;
            letter-spacing: 1px;
            padding: 0 20px;
        }
        
        .slideshow-container {
            max-width: 1200px;
            position: relative;
            margin: 0 auto 50px;
            overflow: hidden;
        }
        
        .slideshow-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
            height: 500px;
        }
        
        .mySlides {
            min-width: 100%;
            position: relative;
        }
        
        .mySlides img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* Navigation buttons */
        .slideshow-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            pointer-events: none;
        }
        
        .nav-btn {
            pointer-events: all;
            cursor: pointer;
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.7);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 20px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .nav-btn:hover {
            background: rgba(255,255,255,0.9);
            transform: scale(1.05);
        }
        
        .nav-btn svg {
            width: 20px;
            height: 20px;
            fill: #2c3e50;
        }
        
        /* Indicators */
        .slideshow-indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d3d3d3;
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: #2c3e50;
            transform: scale(1.2);
        }
        
        /* Overlay effect */
        .slideshow-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 30%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        }
        
        /* Responsive adjustments */
        @media screen and (max-width: 1024px) {
            .slideshow-track {
                height: 450px;
            }
        }
        
        @media screen and (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
                margin: 30px 0 20px;
            }
            
            .slideshow-track {
                height: 350px;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
                margin: 0 10px;
            }
        }
        
        @media screen and (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            
            .slideshow-track {
                height: 250px;
            }
            
            .indicator {
                width: 10px;
                height: 10px;
                margin: 0 5px;
            }
        }












    /* School Divisions Styles */
    .school-divisions {
        padding: 4rem 2rem;
        background: var(--cream);
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-family: 'Playfair Display', serif;
        color: var(--navy);
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        color: var(--chocolate);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .divisions-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .division-card {
        position: relative;
        height: 400px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .division-card:hover {
        transform: translateY(-10px);
    }

    .nursery-division {
        background: url('images/n.JPG') center/cover no-repeat;
    }

    .primary-division {
        background: url('images/p.JPG') center/cover no-repeat;
    }

    .division-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(10,31,58,0.1) 0%, rgba(10,31,58,0.8) 100%);
    }

    .division-content {
        position: relative;
        z-index: 2;
        color: white;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 2rem;
    }

    .division-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--gold);
    }

    .division-content p {
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .division-features {
        margin-bottom: 2rem;
        list-style: none;
    }

    .division-features li {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .division-features i {
        color: var(--gold);
        width: 20px;
        text-align: center;
    }

    .division-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: var(--gold);
        color: var(--navy);
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
        width: fit-content;
        transition: all 0.3s ease;
    }

    .division-btn:hover {
        background: white;
        transform: translateX(5px);
    }

    







    /* Director's Message Section */
    .directors-message {
        background: var(--cream);
        padding: 5rem 2rem;
        position: relative;
    }
    
    .message-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
        align-items: center;
    }
    
    .director-photo {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .photo-frame {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        overflow: hidden;
        border: 5px solid white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        position: relative;
    }
    
    .photo-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .photo-frame:hover img {
        transform: scale(1.05);
    }
    
    .director-title {
        text-align: center;
        margin-top: 2rem;
    }
    
    .director-title h3 {
        font-family: 'Playfair Display', serif;
        color: var(--navy);
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .director-title p {
        color: var(--chocolate);
        font-weight: 600;
        margin-bottom: 1.5rem;
    }
    
    .signature img {
        height: 50px;
        filter: brightness(0) saturate(100%) invert(18%) sepia(36%) saturate(938%) hue-rotate(183deg) brightness(91%) contrast(91%);
    }
    
    .message-content {
        position: relative;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-family: 'Playfair Display', serif;
        color: var(--navy);
        font-size: 2.3rem;
        margin-bottom: 1rem;
    }
    
    .gold-bar {
        width: 80px;
        height: 4px;
        background: var(--gold);
        margin-bottom: 2rem;
    }
    
    blockquote {
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--navy);
        margin-bottom: 2rem;
        position: relative;
    }
    
    blockquote p {
        margin-bottom: 1.5rem;
    }
    
    blockquote p:first-child::before {
        content: open-quote;
        font-size: 4rem;
        color: rgba(212, 175, 55, 0.2);
        position: absolute;
        top: -20px;
        left: -30px;
        line-height: 1;
    }
    
    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 30px;
        background: var(--gold);
        color: var(--navy);
        text-decoration: none;
        font-weight: 600;
        border-radius: 30px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    
    .cta-button:hover {
        background: var(--navy);
        color: var(--gold);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(10, 31, 58, 0.3);
    }
    
    @media (max-width: 992px) {
        .message-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .director-photo {
            margin-bottom: 2rem;
        }
        
        .photo-frame {
            width: 250px;
            height: 250px;
        }
    }
    
    @media (max-width: 576px) {
        .directors-message {
            padding: 3rem 1.5rem;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
    }












    /* Partners Section with Fixed Background */
    .partners-section {
        position: relative;
        padding: 5rem 2rem;
        overflow: hidden;
        color: white;
    }

    .partners-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('images/pr.JPG') center/cover no-repeat;
        z-index: -2;
    }

    .partners-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 31, 58, 0.85); /* Navy blue overlay */
        z-index: -1;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
        z-index: 1;
    }

    .section-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        color: var(--gold);
    }

    .section-subtitle {
        color: rgba(255,255,255,0.9);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .partner-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(8px);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        border: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.3s ease;
    }

    .partner-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .partner-logo {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--gold);
        border: 2px solid var(--gold);
    }

    .partner-card h3 {
        color: white;
        margin-bottom: 0.5rem;
    }

    .partner-card p {
        color: rgba(255,255,255,0.8);
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .partners-section {
            padding: 4rem 1.5rem;
        }
        
        .partners-grid {
            grid-template-columns: 1fr;
        }
        
        .partners-bg {
            position: absolute;
            height: 100%;
        }
    }

















    /* ======= 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;
        }
    }






