/********** Template CSS **********/
:root {
    --primary: #eb6c35;
    --light: #FFF5F3;
    --dark: #103741;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
html {
  scroll-behavior: smooth;
	scroll-padding-top: 80px;
}
body{overflow-x:hidden;}
/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
/*     font-family: 'Lobster Two', cursive; */
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
/*     font-family: 'Lobster Two', cursive; */
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 7px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
   border-color: #f9eb1f;
}
.getbtn a{    text-transform: none;}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;color: #fff !important;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
.getbtn .btn.btn-link::before{display: none;}
.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* <-------------add css-----------> */
.navbar-brand img{width: 120px;}
.owl-carousel-item{
    max-width: 100%;
    height: 90vh;
    object-fit: cover;
}
.teacher-border{
    border: 1px solid #fe5d55;
    border-radius: 10px;
    padding: 4px 10px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 20px;
}
    .teacher-border {
    justify-content: center;
    margin: auto;
    margin-top: 10px;
}
.text-emily{margin: 0px !important;line-height: 10px;}
.footer{background-color: #249fc6 !important;}
.footer-logo p{color : #fff !important;}

.whatsapp-contact img {
    width: 80%;
}
.whatsapp-contact {
    position: fixed;
    bottom: 99px;
    right: 30px;
    z-index: 99999999999;
}
 /* ===== Nurture Custom Additions ===== */

        /* Core Goals Section */
        .goals-card {
            background: #FFF5F3;
            border-radius: 16px;
            padding: 30px 25px;
            height: 100%;
            transition: .4s;
            border-top: 4px solid #eb6c35;
        }
        .goals-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(254,93,55,.15);
        }
        .goals-card .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #eb6c35;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }
        .goals-card .icon-box i {
            font-size: 24px;
            color: #fff;
        }

        /* Curriculum Section */
        .curriculum-section {
            background: linear-gradient(135deg, #FFF5F3 0%, #fff 100%);
        }
        .curriculum-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 18px 20px;
            background: #fff;
            border-radius: 12px;
            border-left: 4px solid #eb6c35;
            margin-bottom: 16px;
            transition: .3s;
        }
        .curriculum-item:hover {
            box-shadow: 0 6px 20px rgba(254,93,55,.12);
            transform: translateX(4px);
        }
        .curriculum-item .num {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #eb6c35;
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Resources Section */
        .resource-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            border: 1.5px solid #eb6c35;
            border-radius: 50px;
            padding: 10px 22px;
            font-weight: 500;
            color: #103741;
            transition: .3s;
            margin: 6px;
        }
        .resource-badge:hover {
            background: #eb6c35;
            color: #fff;
        }
        .resource-badge i { color: #eb6c35; font-size: 18px; transition: .3s; }
        .resource-badge:hover i { color: #fff; }

        /* Pedagogy highlight */
        .alfa-box {
              background: #1ca0d0;
            color: #fff;
            border-radius: 20px;
            padding: 40px 35px;
        }
        .alfa-box h2, .alfa-box h3 { color: #fff; }
        .alfa-box .badge-alfa {
            background: #eb6c35;
            color: #fff;
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 14px;
        }

        /* Vision 2025 / Future Readiness */
        .vision-card {
            background: #fff;
            border-radius: 14px;
            padding: 28px 24px;
            border: 1.5px solid #FED7CC;
            height: 100%;
            transition: .4s;
        }
        .vision-card:hover {
            border-color: #eb6c35;
            transform: translateY(-6px);
        }
        .vision-icon {
            font-size: 32px;
            color: #eb6c35;
            margin-bottom: 14px;
            display: block;
        }

        /* Section utilities */
        .section-tag {
            display: inline-block;
            background: #FFF5F3;
            color: #eb6c35;
            font-weight: 600;
            font-size: 13px;
            border-radius: 50px;
            padding: 5px 18px;
            margin-bottom: 12px;
            letter-spacing: .5px;
        }

        /* Existing overrides */
        .navbar-brand img { width: 120px; }
        .owl-carousel-item {
            max-width: 100%;
            height: 90vh;
            object-fit: cover;
        }
        .teacher-border {
            border: 1px solid #fe5d55;
            border-radius: 10px;
            padding: 4px 10px;
        }
        .footer-logo img {
            width: 150px;
            margin-bottom: 20px;
        }

        @media (max-width: 991px) {
            .header-carousel::after { bottom: -1px; }
            .teacher-border { justify-content: center; margin: auto; margin-top: 10px; }
            .header-carousel::before { display: none; }
            .navbar.sticky-top { transition: .5s; position: fixed; top: 0px !important; width: 100%; }
            .owl-carousel-item { height: auto; }
            .banner-top-content { top: 50px !important; }
            .banner-top-content .display-2 { font-size: calc(1.2rem + 3.9vw); line-height: 1; }
            .alfa-box { padding: 28px 20px; }
        }



@media(max-width:991px){
    .header-carousel::after{
    bottom: -1px;}

.header-carousel::before{display: none;}

.navbar.sticky-top {
  
    transition: .5s;
    position: fixed;
    top: 0px !important;
    width: 100%;
}
.owl-carousel-item {
    height: auto;}
    .banner-top-content{    top: 50px !important;}
     .banner-top-content .display-2 {
    font-size: calc(1.2rem + 3.9vw);
    line-height: 1.1;
}

}

.btn-primary {
    color: #000;
    background-color: #eb6c35;
    border-color: #eb6c35;color: #fff;
}

.btn-dark {
    color: #fff;
    background-color: #1ca0d0;
    border-color: #1ca0cf;
}
.btn-primary:hover {
    color: #000 !important;
    background-color: #fbed1f;
    border-color: #fced1e;
}

.classes-item a{cursor: none;}
.phn-contact {
    position: fixed;
    bottom: 29px;
    left: 30px;
    z-index: 99999999999;
    width: 50px;
    height: 50px;
    background-color: #eb6c35;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;border: 1px solid #eb6c35;
}
.phn-contact:hover{background-color:#fff;color: #eb6c35;}

@media(max-width:767px){
    .btn-lg-square {
    width: 42px;
    height: 42px;
    bottom: 15px;
}
.whatsapp-contact {
    bottom: 69px;
    right: 25px;}
    .phn-contact {
    bottom: 9px;
    left: 30px;
    width: 45px;
    height: 45px;}
}



.video-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    background: #000;
    transition: 0.4s ease;
}

.video-box:hover {
    transform: translateY(-8px);
}

.video-box video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-box video {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-box video {
        height: 300px;
    }
}
.teacher-border img{object-fit:cover;object-position: top !important}
@media(max-width:1200px){
	body,html{overflow-x:hidden;}
}