/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background: linear-gradient(to right, #D32F2F, #D32F2F);
    color: white;
    padding: 15px;
    text-align: center;
    position: relative;
    font-size: larger;
}

/* Logo and Header Text */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
}

.logo {
    width: 120px;
    height: auto;
}

.header-text {
    text-align: center;
    flex: 1;
}

header h1 {
    margin: 0;
    font-size: 2.2em;
}

header p {
    margin: 5px 0;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .logo {
        width: 80px;
    }

    header h1 {
        font-size: 1.6em;
    }

    header p {
        font-size: 1em;
    }
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: center;
    background: #D32F2F;
    padding: 10px 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

nav a:hover {
    background: #ebd871;
    color: #333;
}

/* Banner Section */
.banner {
    text-align: center;
    background: linear-gradient(to right, #D32F2F, #D32F2F);
    color: white;
    padding: 60px 20px;
}

.banner h2 {
    font-size: 3.2em;
    margin: 0;
}

.banner p {
    font-size: 1.5em;
}

/* Main Content */
section {
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    background: #D32F2F;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #ebd871;
    color: #333;
}

/* Secondary Accent Sections */
.secondary-section {
    background-color: #FFD700;
    padding: 20px;
    text-align: center;
    color: #333;
}

/* Fees Details Section */
#fees-details {
    background: #FDEAEA;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

#fees-details h2 {
    color: #D32F2F;
}

/* Fees Table */
.fees-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.fees-table th,
.fees-table td {
    padding: 10px;
    border: 1px solid #ddd;
}

.fees-table th {
    background-color: #FAD2D2;
    color: #333;
}

.fees-table tr:hover {
    background-color: #FFECEC;
}

/* Feature Sections */
.feature {
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    background: rgb(255, 243, 204);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.feature h3 {
    color: #D32F2F;
}

/* Gallery Section */
.gallery-container img {
    margin: 10px;
    width: calc(33% - 20px);
    max-width: 300px;
    height: 200px;
    border-radius: 10px;
    border: 3px solid #D32F2F;
}

/* Footer */
footer {
    background: #D32F2F;
    color: white;
    text-align: center;
    padding: 15px 10px;
}

footer a {
    color: #f3e388;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

#principal-message {
    background-color: #f3e388;
}

#admissions {
    background-color: #FAD2D2;
}

#contact {
    background-color: #FAD2D2;
}

#faq {
    background-color: #FAD2D2;
}

#About {
    background: #FAD2D2;
}

#enroll {
    background-color: #FAD2D2;
}

#public-disclosure {
    background-color: #f3e388;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

#public-disclosure h2 {
    font-size: 2.5em;
    color: #D32F2F;
    margin-bottom: 15px;
}

.disclosure-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.disclosure-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.disclosure-item h4 {
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #D32F2F;
}

.disclosure-item a {
    text-decoration: none;
    color: #fff;
    background-color: #D32F2F;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.disclosure-item a:hover {
    background-color: #ebd871;
    color: #333;
}

/* Location Section */
#location {
    background-color: #FDEAEA;
    /* Light pinkish red */
    padding: 30px 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 1000px;
}

#location h2 {
    font-size: 2em;
    color: #D32F2F;
    /* Red */
    margin-bottom: 10px;
}

#location p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #333;
}

#location iframe {
    width: 100%;
    max-width: 100%;
    height: 300px;
    border: 2px solid #D32F2F;
    /* Red border around map */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-banner {
    background-image: url('image/buliding.jpeg');
    /* अपने banner image का path डालें */
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-content .cta-button {
    background-color: #FFD700;
    color: #333;
    padding: 12px 25px;
    font-size: 1.2em;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.hero-content .cta-button:hover {
    background-color: #fff176;
}

#highlights {
    background-color: #fff3cc;
    /* Light yellow */
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 30px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#highlights h2 {
    font-size: 2.5em;
    color: #D32F2F;
    margin-bottom: 30px;
}

.highlight-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.highlight-box {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
}

.highlight-box h3 {
    color: #D32F2F;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.highlight-box p {
    font-size: 1em;
    color: #555;
}



footer {
    background-color: #D32F2F;
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-size: 1em;
    margin-top: 40px;
}

.footer-content h3 {
    margin: 0;
    font-size: 1.8em;
}

.footer-content p {
    margin: 8px 0;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    color: #f3e388;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-contact {
    font-size: 0.95em;
    margin-top: 10px;
}

.footer-copy {
    font-size: 0.85em;
    margin-top: 5px;
    color: #f3e388;
}

#curriculum {
    background-color: #FDEAEA;
    padding: 30px 20px;
    border-radius: 10px;
    margin: 30px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    text-align: center;
}

#curriculum h2 {
    color: #D32F2F;
    font-size: 2.2em;
    margin-bottom: 10px;
}

#curriculum p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.curriculum-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.curriculum-box ul li {
    background: #fff8e1;
    margin: 10px 0;
    padding: 10px 15px;
    border-left: 5px solid #D32F2F;
    border-radius: 5px;
    font-size: 1em;
}




/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        width: 80px;
    }

    .logo-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    header h1 {
        font-size: 1.6em;
    }

    header p {
        font-size: 1em;
    }

    nav {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        margin: 5px 0;
        font-size: 1em;
    }

    section {
        margin: 10px;
        padding: 15px;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .highlight-container,
    .features,
    .about-images,
    .gallery-container,
    .disclosure-list {
        flex-direction: column;
        align-items: center;
    }

    .highlight-box,
    .feature,
    .disclosure-item {
        width: 90% !important;
        margin: 10px 0;
    }

    .gallery-container img {
        width: 90% !important;
        height: auto !important;
    }

    .curriculum-box ul {
        text-align: left;
        padding-left: 20px;
    }

    .footer-content h3 {
        font-size: 1.4em;
    }

    .footer-content p,
    .footer-contact,
    .footer-copy {
        font-size: 0.9em;
    }

    iframe {
        width: 100% !important;
        height: auto;
    }
}




@media (max-width: 768px) {
    .logo-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        padding: 0 10px;
    }

    .logo {
        width: 60px;
    }

    .header-text {
        text-align: center;
        flex: 1;
    }

    .header-text h1 {
        font-size: 1.4em;
    }

    .header-text p {
        font-size: 1em;
    }
}

.menu-toggle {
    display: none;
    font-size: 2em;
    color: white;
    cursor: pointer;
    padding: 10px;
    background: #D32F2F;
    text-align: right;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        background-color: #D32F2F;
        width: 100%;
        text-align: center;
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 10px 0;
        padding: 10px 0;
        font-size: 1.1em;
    }
}




@media (max-width: 768px) {
    .logo-right {
        display: none;
    }

    .logo-left {
        display: block;
        width: 80px;
    }

    .logo-container {
        justify-content: flex-start;
        gap: 15px;
    }

    .header-text {
        text-align: center;
    }

    .header-text h1 {
        font-size: 1.5em;
    }

    .header-text p {
        font-size: 1em;
    }
}

#gallery {
    background-color: #fff3cc;
    /* soft yellow background */
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 30px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#gallery h2 {
    font-size: 2.5em;
    color: #D32F2F;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px #ffeaa7;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    justify-items: center;
}

.gallery-container img {
    width: 100%;
    max-width: 300px;
    height: 150px;
    border-radius: 10px;
    border: 4px solid #D32F2F;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


html,
body {
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    box-sizing: border-box;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    /* gap between images */
    margin-top: 20px;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Hover effect (optional) */
.image-gallery img:hover {
    transform: scale(1.03);
}

/* Media query for tablets and larger screens */
@media (min-width: 768px) {
    .image-gallery img {
        width: 45%;
        /* two images side-by-side */
    }
}

/* Media query for desktops */
@media (min-width: 1024px) {
    .image-gallery img {
        width: 40%;
    }
}



#admissions {
    padding: 20px;
    text-align: center;
}

#admissions h2 {
    color: #ff4d4d;
    font-size: 24px;
    margin-bottom: 10px;
}

#admissions p,
#admissions ul li {
    font-size: 16px;
    color: #333;
}

ul {
    list-style-type: none;
    padding: 0;
}

.cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.cta .cta-button {
    background-color: #ff4d4d;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta .cta-button:hover {
    background-color: #cc0000;
}

/* Testimonials Section */
#parent-testimonials {
    margin-top: 30px;
    background-color: #facece;
    padding: 20px;
    border-radius: 10px;
}

#parent-testimonials h2 {
    color: #d62828;
}

.testimonial,
.testimonial-box {
    margin-bottom: 20px;
}

.testimonial p,
.testimonial-box p {
    font-style: italic;
    color: #555;
}

/* Responsive Design */
@media (min-width: 768px) {
    #admissions h2 {
        font-size: 28px;
    }

    .cta .cta-button {
        font-size: 18px;
    }

    #parent-testimonials h3 {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    #admissions {
        padding: 40px;
    }

    #admissions h2 {
        font-size: 32px;
    }

    .cta .cta-button {
        font-size: 20px;
        padding: 12px 24px;
    }

    #parent-testimonials h3 {
        font-size: 24px;
    }
}


#admissions-wrapper {
    background-color: #fffdfd;
    border-radius: 12px;
    margin: 20px auto;
    max-width: 1200px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

#admissions ul {
    text-align: left;
    display: inline-block;
    margin-top: 15px;
}

#admissions ul li::before {
    content: "✔ ";
    color: #d62828;
}

#parent-testimonials .testimonial,
#parent-testimonials .testimonial-box {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border-left: 4px solid #d62828;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-align: left;
}

#parent-testimonials p strong {
    color: #d62828;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: blur;
    text-align: center;
    padding: 10px 0;
}

#mobile-nav a {
    color: white;
    padding: 10px;
    text-decoration: none;
}

#mobile-nav.active {
    display: flex;
}

#menu-toggle,
/* Remove all default focus/active outlines (blue lines) from toggle and nav links */
#menu-toggle:focus,
#menu-toggle:active,
#mobile-nav a,
#mobile-nav a:focus,
#mobile-nav a:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    -webkit-tap-highlight-color: transparent;
    /* for mobile blue tap effect */
}


/* Stylish Mobile Nav */
#mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 65%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    /* Glass effect */
    backdrop-filter: blur(10px);
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    transition: left 0.4s ease;
    z-index: 999;
    border-right: 2px solid #ffffff20;
    border-radius: 0 20px 20px 0;
}

/* When nav is active */
#mobile-nav.active {
    left: 0;
}

/* Nav Links Style */
#mobile-nav a {
    color: white;
    font-size: 1.3em;
    text-decoration: none;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    transition: background 0.3s ease;
}

#mobile-nav a:hover {
    background-color: #ebd871;
    color: #333;
}


@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1,
.hero-content p,
.hero-content .cta-button {
    opacity: 0;
    animation: fadeSlideIn 1s ease-out forwards;
}

/* Staggered effect (one by one delay) */
.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content p {
    animation-delay: 0.5s;
}

.hero-content .cta-button {
    animation-delay: 0.8s;
}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff4f4;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.form-box {
    background: #ffffff;
    border: 2px solid #b30000;
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(179, 0, 0, 0.1);
}

.form-box h1 {
    color: #b30000;
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.form-box h2 {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group.full {
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

input,
select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.checkbox {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 20px 0;
}

.checkbox input {
    margin-right: 10px;
}

button {
    width: 100%;
    background-color: #b30000;
    color: white;
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #990000;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}

#public-disclosure {
    background-color: #fff3cc;
    padding: 30px 20px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 1100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#public-disclosure h2 {
    color: #D32F2F;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.disclosure-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.disclosure-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #D32F2F;
    cursor: pointer;
    transition: 0.3s;
}

.disclosure-item:hover {
    background-color: #FFD700;
    color: #333;
}

.disclosure-item h4 {
    color: #D32F2F;
    font-size: 1.1em;
    margin: 0;
}

/* Popup Overlay */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#popup-overlay img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    user-select: none;
    pointer-events: none;
}



#job-application {
  background-color: #FDEAEA;
  padding: 40px 20px;
  margin: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

#job-application h2 {
  color: #D32F2F;
  font-size: 2.2em;
  margin-bottom: 15px;
}

#job-application p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 25px;
}

.job-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.job-links .cta-button {
  background-color: #D32F2F;
  color: white;
  padding: 12px 25px;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.job-links .cta-button:hover {
  background-color: #ebd871;
  color: #333;
}

