@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');


/* ========================================= */
/* GLOBAL SETTINGS */
/* ========================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
    font-family:"Poppins",sans-serif;
    background-color:#f5f5f5;
}

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

/* ========================================= */
/* NAVBAR */
/* ========================================= */

/* Fixed Navbar */

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(12px);

    padding: 14px 30px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
    padding-right: 10px;
}

/* Logo */

.logo-size{
    height: 60px;
    width: 60px;
    object-fit: cover;
}

/* Brand Heading */

.Nobel-heading{
    font-size: 34px;
    font-weight: bold;
    color: #E33814;
    margin-left: 10px;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;

    text-shadow: 0 2px 8px rgba(37,99,235,0.25);
}

/* Nav Menu */

.nav-menu{
    list-style-type: none;
    display: flex;
    align-items: center;

    margin-left: auto;

    margin-right: 20px; /* move menu slightly right */

    margin-bottom: 0;
   
}

/* Nav Items */

.nav-menu li{
    margin-left: 10px;
}

/* Nav Links */

.nav-menu li a{
    text-decoration: none;
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;

    padding: 10px 18px;
    border-radius: 12px;

    transition: all 0.3s ease;
}

/* 3D Hover Effect */

.nav-menu li a:hover{
    background: linear-gradient(135deg, #2563EB, #1d4ed8);
    color: white;

    transform: translateY(-4px) scale(1.05);

    box-shadow:
        0 10px 20px rgba(37,99,235,0.35),
        0 4px 8px rgba(0,0,0,0.12);
}

/* Mobile Responsive */

@media screen and (max-width:768px){

    .navbar{
        padding: 12px 20px;
    }

    .Nobel-heading{
        font-size: 28px;
    }

    .nav-menu{
        flex-direction: column;
        align-items: flex-start;
        margin-top: 15px;
    }

    .nav-menu li{
        margin: 12px 0;
    }

    .nav-menu li a{
        display: block;
        width: 100%;
    }

}

/* Small Mobile */

@media screen and (max-width:480px){

    .logo-size{
        height: 50px;
        width: 50px;
    }

    .Nobel-heading{
        font-size: 24px;
    }

    .nav-menu li a{
        font-size: 16px;
        padding: 8px 14px;
    }

}
/* ========================================= */
/* MAIN PAGE CONTENT SECTION */
/* ========================================= */

.bg-container{
    background-color: #D9DADD;
    min-height: 100vh;
    padding-top: 60px;
    font-family: 'Poppins', sans-serif;
}

.main-heading{
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
}

.nobel-school{
    font-size: 40px;
    font-weight: 700;
    color: #E33814;
    margin-left: 10px;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.paragraph{
    font-size: 28px;
    color: #475569;
    margin-top: 30px;
    line-height: 1.6;
    font-weight: 500;
}

.paragraph-small{
    font-size: 20px;
    color: #475569;
    margin-top: 25px;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

.admission-badge{
    background: linear-gradient(135deg,#AFD42B,#AFD42B);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;

    border: 3px solid #AFD42B;

    transition: 0.3s;
}

.admission-badge:hover{
    transform: translateY(-4px);
}

.button-container{
    margin-top: 45px;
    display: flex;
    gap: 25px;
}



.learn-button{
    background-color: transparent;
    border: 3px solid #AFD42B;
    color: #AFD42B;

    height: 70px;
    width: 220px;

    border-radius: 14px;
    font-size: 24px;
    font-weight: 600;

    transition: 0.3s;
}

.enroll-button:hover,
.learn-button:hover{
    transform: translateY(-5px);
}

.hero-image{
    width: 100%;
    max-width: 550px;
    border-radius: 25px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Modal */

.admission-modal{
    border-radius: 22px;
    padding: 20px;
}

.modal-heading{
    font-size: 40px;
    font-weight: bold;
    color: #2563eb;
}

.input-label{
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.form-control{
    height: 55px;
    border-radius: 12px;
    font-size: 16px;
}

.whatsapp-button{
    width: 100%;
    height: 60px;

    background-color: #16a34a;
    color: white;

    border: none;
    border-radius: 12px;

    font-size: 22px;
    font-weight: 600;
}

/* Tablet */

@media screen and (max-width:768px){

    .main-heading{
        font-size: 52px;
    }

    .paragraph{
        font-size: 22px;
    }

    .paragraph-small{
        font-size: 18px;
    }

    .hero-image{
        margin-top: 40px;
    }

}

/* Mobile */

@media screen and (max-width:480px){

    .bg-container{
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .main-heading{
        font-size: 40px;
    }

    .paragraph{
        font-size: 18px;
    }

    .paragraph-small{
        font-size: 15px;
    }

    .button-container{
        flex-direction: column;
    }

    .enroll-button,
    .learn-button{
        width: 100%;
        height: 55px;
        font-size: 18px;
    }

    .hero-image{
        margin-top: 35px;
    }

    .modal-heading{
        font-size: 28px;
    }

}

/* ========================================= */
/* CAROUSEL SECTION */
/* ========================================= */

.carousel{
    flex:1;

    width:100%;
    max-width:500px;

    overflow:hidden;

    border-radius:25px;

    margin:auto;

    box-shadow:
        0 12px 28px rgba(0,0,0,0.12);

    transition:0.3s;
    
}

.carousel:hover{
    transform:translateY(-6px);

    box-shadow:
        0 18px 38px rgba(37,99,235,0.15);
}

/* Images */

.carousel img{
    width:100%;

    height:400px;

    object-fit:cover;

    border-radius:25px;
}




/* LARGE DESKTOP */


@media screen and (min-width:1200px){

    .carousel{
        max-width:560px;
    }

    .carousel img{
        height:560px;
    }

}


/* TABLET RESPONSIVE */


@media screen and (max-width:768px){

    .carousel{
        max-width:100%;

        border-radius:20px;
    }

    .carousel img{
        height:380px;

        border-radius:20px;
    }

    .carousel{
        margin-top:30px;
    }

}


/* MOBILE RESPONSIVE */


@media screen and (max-width:480px){

    .carousel{
        overflow:hidden;

        border-radius:16px;
    }

    .carousel img{
        width:100%;

        height:280px;

        object-fit:contain;

        background:#ffffff;

        padding:5px;

        border-radius:16px;
    }

}




/**************************/


/* ========================================= */
/* ABOUT SECTION */
/* ========================================= */

#sectionAboutPage{
    background-color: #f5f7fa;
    padding: 70px 0;
}

.about-container{
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.aboutus{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #D4CB52;
}

.about-text-full{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.carousel-image{
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

/* Mobile Responsive */
@media screen and (max-width:768px){

    .aboutus{
        font-size: 36px;
        text-align: center;
    }

    .about-text-full{
        font-size: 16px;
        text-align: center;
    }

    .carousel-image{
        height: 300px;
    }

    .about-container{
        padding: 25px;
    }

}

@media screen and (max-width:480px){

    #sectionAboutPage{
        padding: 40px 10px;
    }

    .about-container{
        padding: 18px;
        border-radius: 12px;
    }

    .aboutus{
        font-size: 28px;
        text-align: center;
        margin-bottom: 18px;
    }

    .about-text-full{
        font-size: 14px;
        line-height: 1.7;
        text-align: center;
    }

    .carousel-image{
        width: 100%;
        height: 280px;
        object-fit: contain;
        background: #ffffff;
        padding: 5px;
        border-radius: 16px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        width: 20px;
        height: 20px;
    }

}


/* ========================================= */
/* PROGRAMS SECTION */
/* ========================================= */
.programs-section{
    background-color: #f5f7fa;
    padding: 90px 0;
    font-family: 'Poppins', sans-serif;
}

.program-heading{
    font-size: 44px;
    font-weight: 700;
    color: #D4CB52;
}

.program-subheading{
    font-size: 20px;
    color: #64748b;
    margin-top: 15px;
}

.category-heading{
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 70px;
}

.program-card{
    background-color: white;
    padding: 30px;
    border-radius: 18px;

    box-shadow: 0 8px 18px rgba(0,0,0,0.08);

    height: 100%;

    transition: 0.3s;
}

.program-card:hover{
    transform: translateY(-8px);

    box-shadow: 0 14px 28px rgba(37,99,235,0.15);
}

.card-heading{
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 18px;
}

.card-text{
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
}

.primary-card{
    background-color: white;
    padding: 40px;
    border-radius: 18px;

    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.primary-text{
    font-size: 16px;
    color: #334155;
}

.subject-list{
    list-style-type: none;
    padding-left: 0;
}

.subject-list li{
    font-size: 20px;
    color: #475569;

    margin-bottom: 22px;

    line-height: 1.6;
}

/* Tablet */

@media screen and (max-width:768px){

    .program-heading{
        font-size: 42px;
    }

    .category-heading{
        font-size: 32px;
    }

    .card-heading{
        font-size: 24px;
    }

    .card-text{
        font-size: 16px;
    }

}

/* Mobile */

@media screen and (max-width:480px){

    .programs-section{
        padding: 50px 15px;
    }

    .program-heading{
        font-size: 32px;
    }

    .program-subheading{
        font-size: 16px;
    }

    .category-heading{
        font-size: 24px;
        margin-top: 45px;
    }

    .program-card{
        padding: 22px;
    }

    .card-heading{
        font-size: 22px;
    }

    .card-text{
        font-size: 15px;
    }

    .primary-card{
        padding: 25px;
    }

    .primary-text{
        font-size: 16px;
    }

    .subject-list li{
        font-size: 15px;
        margin-bottom: 15px;
    }

}

/* ========================================= */
/* MAIN SECTION */
/* ========================================= */

#sectionSpecialPrograms{
    font-family:'Poppins', sans-serif;

    overflow:hidden;
}


/* WHITE HEADING AREA */


.special-heading-section{
    background-color:white;

    padding-top:80px;
    padding-bottom:60px;

    text-align:center;
}

.special-main-heading{
    font-size:52px;
    font-weight:700;

    color:#D4CB52;

    margin-bottom:12px;
}

.special-sub-heading{
    font-size:22px;

    color:#64748b;

    line-height:1.7;
}


/* BACKGROUND AREA */


.special-blue-container{
    background-color:#D9DADD;

    padding-top:70px;
    padding-bottom:90px;

    position:relative;
}


/* CARD */


.special-card{
    background-color:white;

    border-radius:22px;

    padding:40px;

    color:#0f172a;

    height:100%;

    box-shadow:
        0 10px 28px rgba(0,0,0,0.08);

    transition:0.3s;
}

.special-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.14);
}


/* ICON */


.icon{
    font-size:42px;

    margin-bottom:24px;
}


/* CARD HEADING */


.special-card-heading{
    font-size:32px;
    font-weight:700;

    margin-bottom:22px;

    line-height:1.4;
}

.blue-heading{
    color:#60a5fa;
}

.orange-heading{
    color:#fb923c;
}


/* PARAGRAPH */


.special-card-text{
    font-size:18px;

    color:#475569;

    margin-bottom:24px;

    line-height:1.8;
}


/* LIST */


.special-list{
    padding-left:22px;

    margin-bottom:0;
}

.special-list li{
    font-size:17px;

    margin-bottom:16px;

    color:#334155;

    line-height:1.7;
}


/* BOTTOM TEXT */


.bottom-text{
    font-size:17px;
    font-weight:600;

    margin-top:28px;

    color:#0f172a;
}


/* LARGE DESKTOP */


@media screen and (min-width:1200px){

    .special-card{
        padding:45px;
    }

    .special-card-heading{
        font-size:34px;
    }

}


/* TABLET RESPONSIVE */


@media screen and (max-width:768px){

    .special-heading-section{
        padding-top:65px;
        padding-bottom:50px;
    }

    .special-main-heading{
        font-size:42px;
    }

    .special-sub-heading{
        font-size:18px;
    }

    .special-blue-container{
        padding-top:55px;
        padding-bottom:70px;
    }

    .special-card{
        padding:30px;
    }

    .icon{
        font-size:36px;
    }

    .special-card-heading{
        font-size:26px;
    }

    .special-card-text{
        font-size:16px;
    }

    .special-list li{
        font-size:16px;
    }

    .bottom-text{
        font-size:16px;
    }

}


/* MOBILE RESPONSIVE */


@media screen and (max-width:480px){

    .special-heading-section{
        padding-top:55px;
        padding-bottom:40px;
    }

    .special-main-heading{
        font-size:32px;

        line-height:1.3;
    }

    .special-sub-heading{
        font-size:15px;
    }

    .special-blue-container{
        padding-top:40px;
        padding-bottom:55px;
    }

    .special-card{
        padding:22px;

        border-radius:16px;
    }

    .icon{
        font-size:30px;

        margin-bottom:18px;
    }

    .special-card-heading{
        font-size:22px;

        margin-bottom:18px;
    }

    .special-card-text{
        font-size:14px;

        margin-bottom:18px;
    }

    .special-list{
        padding-left:18px;
    }

    .special-list li{
        font-size:14px;

        margin-bottom:12px;
    }

    .bottom-text{
        font-size:14px;

        margin-top:18px;
    }

}

/* ========================================= */
/* FACILITIES SECTION */
/* ========================================= */

.facilities-section{
    background-color:#f5f7fa;

    padding:90px 0;

    font-family:'Poppins', sans-serif;

    overflow:hidden;
}


/* HEADING */


.facilities-heading{
    font-size:52px;
    font-weight:700;

    color:#D4CB52;

    text-align:center;

    margin-bottom:12px;
}

.facilities-subheading{
    font-size:22px;

    color:#64748b;

    text-align:center;

    margin-bottom:55px;

    line-height:1.7;
}


/* FACILITY CARD */


.facility-card{
    background-color:#E8E6CF;

    border-radius:18px;

    padding:28px 30px;

    display:flex;
    align-items:center;

    min-height:120px;

    box-shadow:
        0 6px 16px rgba(0,0,0,0.08);

    transition:0.3s;
}

.facility-card:hover{
    transform:translateY(-6px);

    box-shadow:
        0 12px 24px rgba(37,99,235,0.12);
}


/* ICON */


.facility-icon{
    font-size:36px;

    margin-right:22px;

    flex-shrink:0;
}


/* TEXT */


.facility-text{
    font-size:18px;
    font-weight:500;

    color:#1e293b;

    line-height:1.6;

    margin-bottom:0;
}


/* DESKTOP LARGE SCREEN */


@media screen and (min-width:1200px){

    .facility-card{
        padding:32px 34px;
    }

    .facility-text{
        font-size:19px;
    }

}


/* TABLET RESPONSIVE */


@media screen and (max-width:768px){

    .facilities-section{
        padding:70px 25px;
    }

    .facilities-heading{
        font-size:42px;
    }

    .facilities-subheading{
        font-size:18px;

        margin-bottom:40px;
    }

    .facility-card{
        padding:24px;

        min-height:105px;
    }

    .facility-icon{
        font-size:30px;

        margin-right:18px;
    }

    .facility-text{
        font-size:16px;
    }

}


/* MOBILE RESPONSIVE */


@media screen and (max-width:480px){

    .facilities-section{
        padding:55px 15px;
    }

    .facilities-heading{
        font-size:32px;

        line-height:1.3;
    }

    .facilities-subheading{
        font-size:15px;

        margin-bottom:28px;
    }

    .facility-card{
        padding:18px;

        border-radius:14px;

        min-height:90px;
    }

    .facility-icon{
        font-size:24px;

        margin-right:14px;
    }

    .facility-text{
        font-size:14px;

        line-height:1.5;
    }

}

/* ========================================= */
/* ADMISSION SECTION */
/* ========================================= */

.admission-section{
    background-color:#D9DADD;

    padding:100px 0;

    font-family:'Poppins', sans-serif;

    position:relative;

    overflow:hidden;
}


/* BACKGROUND GLOW */


.admission-section::before{
    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:rgba(37,99,235,0.08);

    border-radius:50%;

    top:-120px;
    left:-100px;

    filter:blur(20px);
}

.admission-section::after{
    content:"";

    position:absolute;

    width:300px;
    height:300px;

    background:rgba(249,115,22,0.08);

    border-radius:50%;

    bottom:-120px;
    right:-80px;

    filter:blur(20px);
}


/* TAG */


.admission-tag{
    background:
        linear-gradient(135deg,#2563eb,#4f46e5);

    color:white;

    padding:12px 24px;

    border-radius:40px;

    font-size:16px;
    font-weight:600;

    display:inline-block;

    margin-bottom:28px;

    box-shadow:
        0 10px 25px rgba(37,99,235,0.25);
}


/* HEADING */


.admission-heading{
    font-size:50px;
    font-weight:700;

    color:#D4CB52;

    line-height:1.2;

    max-width:850px;

    margin:auto;
}

.admission-subheading{
    font-size:22px;

    color:#64748b;

    margin-top:20px;

    line-height:1.7;
}


/* CARDS */


.admission-card{
    background:rgba(255,255,255,0.75);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,0.5);

    border-radius:28px;

    padding:40px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);

    height:100%;

    transition:0.35s;
}

.admission-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 45px rgba(37,99,235,0.14);
}


/* ICONS */


.card-icon{
    font-size:45px;

    margin-bottom:20px;
}


/* CARD TITLES */


.card-title{
    font-size:32px;
    font-weight:700;

    margin-bottom:30px;
}

.blue-color{
    color:#2563eb;
}

.orange-color{
    color:#f97316;
}


/* PROGRAM LIST */


.admission-list{
    padding-left:22px;
}

.admission-list li{
    font-size:20px;

    color:#334155;

    margin-bottom:20px;

    line-height:1.8;
}


/* PROCESS */


.process-step{
    display:flex;
    align-items:center;

    margin-bottom:24px;
}

.step-number{
    width:50px;
    height:50px;

    border-radius:50%;

    background:
        linear-gradient(135deg,#2563eb,#4f46e5);

    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:18px;
    font-weight:700;

    margin-right:18px;

    flex-shrink:0;

    box-shadow:
        0 8px 18px rgba(37,99,235,0.22);
}

.step-text{
    font-size:19px;

    color:#334155;

    margin-bottom:0;

    line-height:1.6;
}


/* BUTTON */


.apply-button{
    background:
        linear-gradient(135deg,#f97316,#ea580c);

    color:white;

    border:none;

    height:72px;
    width:340px;

    border-radius:18px;

    font-size:22px;
    font-weight:600;

    margin-top:20px;

    box-shadow:
        0 12px 28px rgba(249,115,22,0.35);

    transition:0.3s;
}

.apply-button:hover{
    transform:
        translateY(-6px)
        scale(1.03);
}


/* TABLET RESPONSIVE */


@media screen and (max-width:768px){

    .admission-section{
        padding:80px 25px;
    }

    .admission-heading{
        font-size:42px;
    }

    .admission-subheading{
        font-size:18px;
    }

    .admission-card{
        padding:32px;
    }

    .card-title{
        font-size:28px;
    }

    .admission-list li{
        font-size:17px;
    }

    .step-text{
        font-size:17px;
    }

    .apply-button{
        width:280px;
        height:64px;

        font-size:20px;
    }

}


/* MOBILE RESPONSIVE */


@media screen and (max-width:480px){

    .admission-section{
        padding:60px 15px;
    }

    .admission-tag{
        font-size:13px;

        padding:10px 18px;
    }

    .admission-heading{
        font-size:30px;

        line-height:1.3;
    }

    .admission-subheading{
        font-size:15px;

        margin-top:15px;
    }

    .admission-card{
        padding:24px;

        border-radius:20px;
    }

    .card-icon{
        font-size:36px;
    }

    .card-title{
        font-size:24px;

        margin-bottom:22px;
    }

    .admission-list{
        padding-left:18px;
    }

    .admission-list li{
        font-size:15px;

        margin-bottom:14px;
    }

    .process-step{
        align-items:flex-start;
    }

    .step-number{
        width:38px;
        height:38px;

        font-size:14px;

        margin-right:12px;
    }

    .step-text{
        font-size:14px;

        line-height:1.5;
    }

    .apply-button{
        width:100%;
        height:56px;

        font-size:17px;

        border-radius:14px;
    }

}

/* ========================================= */
/* CONTACT SECTION */
/* ========================================= */

#sectionContactus{
    background:
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #eef4ff 45%,
            #fffaf5 100%
        );

    padding:90px 0;

    font-family:'Poppins', sans-serif;

    overflow:hidden;
}


/* HEADING */


.contact-heading{
    font-size:52px;
    font-weight:700;

    color:#D4CB52;

    text-align:center;

    margin-bottom:12px;
}

.contact-subtitle{
    font-size:22px;

    color:#64748b;

    text-align:center;

    margin-bottom:55px;
}


/* CONTACT CARD */


.contact-card{
    background:rgba(255,255,255,0.85);

    backdrop-filter:blur(12px);

    padding:40px;

    border-radius:24px;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.08);

    height:100%;

    transition:0.3s;
}

.contact-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 20px 40px rgba(37,99,235,0.12);
}


/* SCHOOL NAME */


.school-name{
    font-size:38px;
    font-weight:700;

    color:#E33814;

    margin-bottom:35px;

    line-height:1.3;
}


/* CONTACT DETAILS */


.contact-detail{
    margin-bottom:28px;
}

.contact-detail h5{
    font-size:18px;
    font-weight:600;

    color:#1e293b;

    margin-bottom:8px;
}

.contact-detail p{
    font-size:16px;

    color:#475569;

    line-height:1.7;

    margin-bottom:0;
}


/* FORM HEADING */


.message-heading{
    font-size:36px;
    font-weight:700;

    color:#ea580c;

    margin-bottom:30px;
}


/* LABELS */


.input-label{
    font-size:15px;
    font-weight:600;

    color:#1e293b;

    margin-bottom:8px;
}


/* FORM CONTROL */


.form-control{
    height:56px;

    border-radius:14px;

    border:1px solid #dbe3ef;

    font-size:16px;

    padding-left:18px;

    margin-bottom:20px;

    transition:0.3s;
}

.form-control:focus{
    box-shadow:
        0 0 0 4px rgba(37,99,235,0.10);

    border-color:#2563eb;
}

textarea.form-control{
    height:140px;

    padding-top:15px;

    resize:none;
}


/* BUTTON */


.whatsapp-button{
    background:
        linear-gradient(135deg,#22c55e,#16a34a);

    color:white;

    border:none;

    width:100%;
    height:58px;

    border-radius:14px;

    font-size:18px;
    font-weight:600;

    transition:0.3s;

    box-shadow:
        0 10px 22px rgba(34,197,94,0.22);
}

.whatsapp-button:hover{
    transform:translateY(-4px);

    background:
        linear-gradient(135deg,#16a34a,#15803d);
}


/* TABLET RESPONSIVE */


@media screen and (max-width:768px){

    #sectionContactus{
        padding:70px 25px;
    }

    .contact-heading{
        font-size:42px;
    }

    .contact-subtitle{
        font-size:18px;
        margin-bottom:40px;
    }

    .contact-card{
        padding:30px;
    }

    .school-name{
        font-size:30px;
    }

    .message-heading{
        font-size:30px;
    }

    .contact-detail h5{
        font-size:16px;
    }

    .contact-detail p{
        font-size:15px;
    }

    .form-control{
        height:52px;
        font-size:15px;
    }

    textarea.form-control{
        height:120px;
    }

}


/* MOBILE RESPONSIVE */


@media screen and (max-width:480px){

    #sectionContactus{
        padding:55px 15px;
    }

    .contact-heading{
        font-size:32px;
        line-height:1.3;
    }

    .contact-subtitle{
        font-size:15px;
        margin-bottom:30px;
    }

    .contact-card{
        padding:22px;

        border-radius:18px;
    }

    .school-name{
        font-size:24px;

        margin-bottom:25px;
    }

    .message-heading{
        font-size:24px;

        margin-bottom:22px;
    }

    .contact-detail{
        margin-bottom:20px;
    }

    .contact-detail h5{
        font-size:15px;
    }

    .contact-detail p{
        font-size:14px;
    }

    .input-label{
        font-size:14px;
    }

    .form-control{
        height:48px;

        font-size:14px;

        border-radius:12px;

        padding-left:14px;
    }

    textarea.form-control{
        height:110px;
    }

    .whatsapp-button{
        height:50px;

        font-size:16px;

        border-radius:12px;
    }

}
/* ========================================= */
/* GALLERY SECTION */
/* ========================================= */

.gallery-container{
    padding:80px 20px;
    background-color:#ffffff;
    font-family:'Poppins', sans-serif;
}

/* Heading */

.gallery-heading{
    font-size:48px;
    font-weight:700;
    color:#D4CB52;

    text-align:center;

    margin-bottom:15px;
}

/* Subtitle */

.gallery-subtitle{
    font-size:20px;
    color:#64748b;

    text-align:center;

    margin-bottom:50px;
}

/* Carousel */

.gallery-container .carousel{
    max-width:900px;
    margin:auto;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.10);
}

/* Images */

.gallery-container .carousel img{
    width:100%;
    height:550px;

    object-fit:cover;
}

/* Controls */

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:40px;
    height:40px;

    background-color:rgba(0,0,0,0.45);

    border-radius:50%;

    padding:20px;
}


/* TABLET RESPONSIVE */


@media screen and (max-width:768px){

    .gallery-container{
        padding:60px 20px;
    }

    .gallery-heading{
        font-size:38px;
    }

    .gallery-subtitle{
        font-size:18px;
        margin-bottom:35px;
    }

    .gallery-container .carousel img{
        height:400px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        width:32px;
        height:32px;
    }

}


/* MOBILE RESPONSIVE */


@media screen and (max-width:480px){

    .gallery-container{
        padding:50px 15px;
    }

    .gallery-heading{
        font-size:30px;
        line-height:1.3;
    }

    .gallery-subtitle{
        font-size:15px;
        margin-bottom:28px;
    }

    .gallery-container .carousel{
        overflow:hidden;

        border-radius:16px;
    }

    .gallery-container .carousel img{
        width:100%;

        height:280px;

        object-fit:contain;

        background:#ffffff;

        padding:5px;

        border-radius:16px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        width:26px;
        height:26px;

        padding:14px;
    }

}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.footer-section{
    background-color:#111827;
    color:#ffffff;
    padding:70px 50px 25px;
    font-family:'Poppins', sans-serif;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.footer-column{
    flex:1;
    min-width:280px;
}

.footer-heading{
    font-size:30px;
    margin-bottom:30px;
    font-weight:700;
}

.about-text{
    line-height:1.9;
    font-size:16px;
}

/* ========================================= */
/* SOCIAL ICONS */
/* ========================================= */

.social-icons{
    display:flex;
    gap:20px;
    margin-top:30px;
    flex-wrap:wrap;
}

.social-icon{
    width:55px;
    height:55px;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;

    cursor:pointer;

    transition:0.3s;
}

.social-icon:hover{
    transform:translateY(-5px) scale(1.08);
}

.facebook{
    background:#ffffff;
    color:#1877f2;
}

.instagram{
    background:
        radial-gradient(circle at 30% 107%,
        #fdf497 0%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%);

    color:white;
}

.youtube{
    background:#ff0000;
    color:white;
}

/* ========================================= */
/* QUICK LINKS */
/* ========================================= */

.quick-links{
    list-style:none;
    padding-left:0;
}

.quick-links li{
    margin-bottom:18px;
}

.quick-links a{
    text-decoration:none;
    color:white;

    font-size:16px;

    transition:0.3s;
}

.quick-links a:hover{
    color:#ffd54f;
    padding-left:5px;
}

/* ========================================= */
/* MAP */
/* ========================================= */

.map-container iframe{
    width:100%;
    height:350px;
    border:0;
    border-radius:20px;
}

/* ========================================= */
/* FOOTER BOTTOM */
/* ========================================= */

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;

    flex-wrap:wrap;

    margin-top:50px;
    padding-top:25px;

    border-top:1px solid rgba(255,255,255,0.12);

    gap:15px;
}

.footer-bottom p{
    margin-bottom:0;
    font-size:15px;
}


/* TABLET RESPONSIVE */


@media screen and (max-width:768px){

    .footer-section{
        padding:60px 30px 20px;
    }

    .footer-container{
        gap:40px;
    }

    .footer-heading{
        font-size:26px;
        margin-bottom:22px;
    }

    .about-text{
        font-size:15px;
    }

    .social-icon{
        width:50px;
        height:50px;
        font-size:22px;
    }

    .map-container iframe{
        height:280px;
    }

}


/* MOBILE RESPONSIVE */


@media screen and (max-width:480px){

    .footer-section{
        padding:50px 20px 20px;
        text-align:center;
    }

    .footer-container{
        flex-direction:column;
        gap:40px;
    }

    .footer-column{
        min-width:100%;
    }

    .footer-heading{
        font-size:24px;
        margin-bottom:18px;
    }

    .about-text{
        font-size:14px;
        line-height:1.8;
    }

    .social-icons{
        justify-content:center;
        gap:15px;
    }

    .social-icon{
        width:45px;
        height:45px;
        font-size:20px;
    }

    .quick-links li{
        margin-bottom:14px;
    }

    .quick-links a{
        font-size:14px;
    }

    .map-container iframe{
        height:220px;
        border-radius:14px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
        gap:10px;

        margin-top:35px;
        padding-top:18px;
    }

    .footer-bottom p{
        font-size:13px;
    }

}



/* NAVBAR MENU */

.nav-menu{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
    margin-bottom:0;
}

.nav-menu li{
    position:relative;
}

.nav-menu a{
    text-decoration:none;
    color:#1e293b;
    font-size:17px;
    font-weight:600;
    padding:10px 18px;
    border-radius:10px;

    transition:all 0.3s ease;
}

/* HOVER EFFECT */

.nav-menu a:hover{

    background-color:#2563eb;

    color:white;

    transform:translateY(-3px);

    box-shadow:
        0 8px 20px rgba(37,99,235,0.35);

}


/** COPY RIGHT **/

.copyright-section{
    background-color:#0f172a;

    padding:18px 15px;

    text-align:left;
}

.copyright-text{
    color:#94a3b8;

    font-size:16px;

    margin-bottom:0;

    font-family:'Poppins', sans-serif;

    line-height:1.7;
}

.developer-name{
    color:#2563eb;

    font-weight:600;
}

/* Tablet */

@media screen and (max-width:768px){

    .copyright-text{
        font-size:14px;
    }

}

/* Mobile */

@media screen and (max-width:480px){

    .copyright-section{
        padding:14px 12px;
    }

    .copyright-text{
        font-size:12px;

        line-height:1.8;
    }

}














/*----- Admission Open Button In Home Page-----*/
.enroll-button{
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    cursor: pointer;

    padding: 18px 42px;
    border-radius: 18px;

    background: linear-gradient(135deg,#b7d91c,#9fc40f);
    color: #ffffff;

    font-size: 34px;
    font-weight: 700;

    transition: all 0.3s ease;

    /* Attention Effect */
    animation: pulseGlow 1.8s infinite;
    
    box-shadow:
        0 10px 25px rgba(173, 214, 16, 0.45),
        0 0 0 rgba(173, 214, 16, 0.7);
}

/* Shine moving effect */
.enroll-button::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background: rgba(255,255,255,0.35);
    transform: skewX(-25deg);

    animation: shine 2.5s infinite;
}

/* Text above shine */
.enroll-button span{
    position: relative;
    z-index: 2;
}

/* Hover effect */
.enroll-button:hover{
    transform: translateY(-4px) scale(1.03);

    box-shadow:
        0 15px 35px rgba(173, 214, 16, 0.6),
        0 0 25px rgba(173, 214, 16, 0.5);
}

/* Pulse animation */
@keyframes pulseGlow{
    0%{
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(173,214,16,0.7);
    }

    70%{
        transform: scale(1.03);
        box-shadow:
            0 0 0 18px rgba(173,214,16,0);
    }

    100%{
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(173,214,16,0);
    }
}

/* Shine animation */
@keyframes shine{
    0%{
        left: -120%;
    }

    100%{
        left: 150%;
    }
}

















/******* gallery section Image View *********/


.gallery-image{

    width:100%;

    height:320px;

    object-fit:contain;

    background-color:white;

    border-radius:20px;

    padding:10px;

    transition:0.3s;

    box-shadow:
    0 10px 20px rgba(0,0,0,0.10);
}
.gallery-image:hover{

    transform:scale(1.04);

}