﻿html, body {
    height: 100%;
    margin: 0;
    padding:0;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}




.navbar {
    height:13vh;
    padding: 0px 0;
    background: #9ec5fe;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-weight: 700;
    font-size: 28px;
    color: #F9A825;
}

.custom-nav {
  
    row-gap: 6px;
}

    .custom-nav .nav-item {
        width: 100%; 
    }

    .custom-nav .dropdown-menu {
        width: 100%; 
        box-shadow: none; 
    }


@media (min-width: 768px) {
    

    .custom-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end; 
        row-gap: 0;
    }

        .custom-nav .nav-item {
            white-space: nowrap; 
            width: auto; 
        }

        .custom-nav .dropdown-menu {
            width: auto; 
        }
.navbar-collapse {
    position: relative; 
    z-index: 1050; 
}

}



@media (max-width: 768px) {
    .navbar-collapse {
        background: #fff;
        position: relative;
        z-index: 1050;
        padding: 1rem;
    }

        .navbar-collapse .nav-link {
            color: #333!important;
            padding: 0.5rem 1rem; 
        }

        .navbar-collapse .dropdown-menu {
            position: static;
            float: none;
            width: 100%;
            background-color: #333; 
            border: none; 
            box-shadow: none;
        }

        .navbar-collapse .dropdown-item {
            padding-left: 2rem; 
        }
}


.nav-link {
    font-size:17px;
    font-weight: 500;
    margin: 0 8px;
    padding:0 7px;
    color: #FFFFFF !important;
  
}


    .nav-link:hover {
        color: #000 !important;
    }


.navbar .dropdown-menu {
    background-color: #0c3175;
    border: none;
    padding: 0;
}

    .navbar .dropdown-menu li:not(:last-child) .dropdown-item {
        border-bottom: 1px solid #ffffff;
    }

.navbar .dropdown-item {
    color: #ffffff;
    padding: 12px 18px;
    display: block;
}

    .navbar .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.15);
        color: #ffffff;
    }



.school-slider img {
    height: 80vh;
    object-fit: cover;
}


.custom-caption {
    position: absolute;
    z-index: 2;
    left: 6%;
    top: 45%;
    transform: translateY(-50%);
    max-width: 520px;
}

    .custom-caption h2 {
        font-size: 3rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
    }

    .custom-caption p {
        font-size: 1.2rem;
        color: #f1f1f1;
        margin: 18px 0 30px;
    }


.delay-1 {
    animation-delay: 0.4s;
}

.delay-2 {
    animation-delay: 0.8s;
}


@keyframes slideFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.school-slider .carousel-item img {
    height: 80vh;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s ease-in-out;
}


.school-slider .carousel-item.active img {
    transform: scale(1.1);
}

.school-slider .carousel-item {
    position: relative;
}

    .school-slider .carousel-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) );
        z-index: 1;
    }

    .school-slider .carousel-item img {
        position: relative;
        z-index: 0;
    }
.custom-caption .btn {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(13,110,253,0.4);
    transition: all 0.3s ease;
}

    .custom-caption .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(13,110,253,0.6);
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.25);
    border-radius: 50%;
    backdrop-filter: blur(6px);
}



/* =====================
   MOBILE SLIDER FIX
   ===================== */
@media (max-width: 768px) {

    .school-slider .carousel-item img,
    .school-slider img {
        height: 30vh; 
        object-fit: cover;
    }

   
    .school-slider .carousel-item.active img {
        transform: scale(1.03);
    }

   
    .custom-caption {
        left: 5%;
        right: 5%;
        top: auto;
        bottom: 12%;
        transform: none;
        max-width: 100%;
        text-align: left;
    }

        .custom-caption h2 {
            font-size: 1.8rem;
            line-height: 1.3;
        }

        .custom-caption p {
            font-size: 1rem;
            margin: 12px 0 20px;
        }

        .custom-caption .btn {
            padding: 10px 24px;
            font-size: 0.95rem;
        }

   
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 35px;
        height: 35px;
    }
}

.about-section {
    background: #f8f9fa;
}

.about-subtitle {
    display: inline-block;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.about-img img {
    transition: transform 0.4s ease;
}

    .about-img img:hover {
        transform: scale(1.03);
    }


.why-card {
    position: relative;
    padding-top: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

.icon-circle {
   
    position: absolute;
    top: -50px;
    left: 40%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


    .icon-circle i {
        font-size: 28px;
        color: #fff;
    }
.faculty-card img {
    width: 100%;
    height: 250px!important;
    object-fit: cover;
    object-position: top;
    border-radius: 15px 15px 0 0;
    display: block;

}


.center-divider {
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background-color: #e5e5e5;
}




.academics-section {
    background-color: #f8fbff;
    background-image: radial-gradient(#cfe2ff 2px, transparent 2px);
    background-size: 24px 24px;
}


.academic-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    margin-bottom: 25px;
    border-radius: 14px;
    background: radial-gradient( #1e3c72, #0c3175, #071c3f );
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

    .academic-item:hover {
        transform: translateY(-6px);
       
    }

    .academic-item h6 {
        margin: 0;
        font-weight: 600;
        color: #fff;
    }

    .academic-item small {
        color: #dbe7ff;
    }

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

    .icon-box i {
        font-size: 22px;
        color: #fff;
    }

.center-image img {
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}
 .gallery-item img
 {
     height:30vh;
 }



.btn {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff!important;
    padding: 6px 10px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(13,110,253,0.4);
    transition: all 0.3s ease;
}
.breadcrumb-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/img/gallery/breadcrumb.jpg') center center / cover no-repeat;
    padding: 60px 0;
    height:40vh;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

    .breadcrumb a {
        color: #fff;
        text-decoration: none;
        font-size:30px;
        font-weight:500;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

.breadcrumb-item.active {
    color: #fff !important;
    font-size: 30px;
    font-weight:500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff !important;
    font-size: 30px;
}
.desk-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}




.timeline-icon {
    width: 50px;
    height: 50px;
    background-color: #0c3175;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
}


.animate-slide {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease forwards;
}


.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}


@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

   

.Eligibilty-section {
    background: linear-gradient(to right, #9ec5fe, #b7d6ff);
}

.form-card {
    max-width: 720px; 
    width: 100%;
    border-radius: 12px;
}
.academic-bg {
    background: #0c3175;
    color:#fff;
}
.text-academic {
    color: #0c3175;
}
.heading-line {
    width: 80px;
    height: 4px;
    background: radial-gradient( #1e3c72, #0c3175, #071c3f );
    border-radius: 5px;
}
.floating-png {
    position:relative;
    bottom: 10%;
    right: 10%;
    width: 120px;
    opacity: 1;
    animation: floatY 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.text-event {
    color: #0c3175;
    font-size:25px;
}


.event-image {
    max-width: 380px;
}

@media (max-width: 768px) {
    .event-image {
        max-width: 100%;
    }

    .event-text h5 {
        font-size: 1.05rem;
    }

    .event-text p {
        font-size: 0.95rem;
    }
}

p{
    text-align:justify;
}



    

.program-img {
    height: 220px;
    overflow: hidden;
}

    .program-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

.footer-section {
    background: linear-gradient(135deg, #071a3d, #020c1b);
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

    .footer-links a:hover {
        color: #5ddcff;
    }

.footer-social a {
    color: #ffffff;
    font-size: 20px;
    margin-right: 15px;
}

    

.footer-line {
    border-color: rgba(255, 255, 255, 0.2);
}
.feature-card {
    background: #ffffff;
    border: 1.5px solid #9adf9a;
    border-radius: 8px;
    padding: 20px 24px;
    font-size: 15px;
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.12);
}
.medium-img {
    width: 70%;
    height: auto!important; 
    object-fit: cover; 
    border-radius: 10px;
}
.floating-buttons {
    position: fixed;
    top: 50%!important;
    left: 20px;
    font-size: 40px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 9999;
}
.floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 9999;
}


.youtube {
    height: 40px;
    width: 40px;
    background: #FF0000 !important;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    animation: blinkGlow 1.8s infinite;
}

.facebook {
    height: 40px;
    width: 40px;
    background: #1877f2 !important;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    animation: blinkGlow 1.8s infinite;
}

.insta {
    height: 40px;
    width: 40px;
    background: #E4405f !important;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    animation: blinkGlow 1.8s infinite;
}
.whatsapp {

    height: 40px;
    width: 40px;
    background: limegreen !important;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    animation: blinkGlow 1.8s infinite;
}
.card-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}


.active-box {
    transform: scale(1.01);
}


.form-disabled {
   
    opacity: 0.2;
    filter: blur(.5px);
}


.login-box {
    background: #fde9a9;
    cursor: pointer;
}
.card-header {
    background: #0c3175!important;
}

a{
   color:#fff!important;
}
.school-cur {
    max-height: 70px;
}
