body{padding-top: 100px;  
}
.navbar .navbar-nav .nav-link {
color: #003268;
}
.navbar .navbar-nav .nav-item:hover .nav-link, .navbar .navbar-nav .nav-item.active .nav-link{

color: #e81018;
opacity:1;
}
.header-icon .icon > a{
      font-size: 22px;
}
.header-icon .icon > a{
  border-right: 2px solid;
    padding-right: 10px;
}

.imgOver{
      position: absolute;
    right: 5%;
    bottom: -3%;
    z-index: 1;
    width: 120px;
      animation: zoomInOut 2s ease-in-out infinite;
    transform-origin: center;
}
@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12); /* Zoom In */
    }
    100% {
        transform: scale(1); /* Zoom Out */
    }
} 
 
.bgRed{
    background-color: #da0f17;
}

.banner-slider .slick-slide{
    display:flex !important;
    align-items:center;
    justify-content:center;
}

.banner-slider img{
    width:100%;
   
    object-fit:cover;
}

.more-text{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:all .7s ease;
}

.more-text.show{
    max-height:800px;
    opacity:1;
    margin-top:20px;
}
.read-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    cursor:pointer;
}
 .read-btn{
    display:inline-flex;
    align-items:center;
    gap:2px;
    text-decoration:none;
    color:#222;
    font-size:18px;
    font-weight:400;
}
.chevrons{
    display:flex;
    align-items:center;
    overflow:hidden;
    width:34px;
        margin-top: 4px;
}

.chevrons span{
    width:10px;
    height:10px;
    border-top:2px solid #ff9800;
    border-right:2px solid #ff9800;
    transform:rotate(45deg);
    margin-right:4px;
    opacity:0;
    animation:slideRight 1.2s infinite;
}

.chevrons span:nth-child(1){
    animation-delay:0s;
}

.chevrons span:nth-child(2){
    animation-delay:.2s;
}@keyframes slideRight{

    0%{
        opacity:0;
        transform:translateX(-12px) rotate(45deg);
    }

    30%{
        opacity:1;
    }

    70%{
        opacity:1;
    }

    100%{
        opacity:0;
        transform:translateX(12px) rotate(45deg);
    }

}

.read-btn.active .chevrons{
    transform:rotate(180deg);
}

.navbar .navbar-nav .nav-item .nav-link.active{

color: #e81018;
opacity: 1;
}

.image-reveal{
    overflow:hidden;
    border-radius:0;
}

.image-reveal img{
    width:100%;
    display:block;
    height:auto;
    will-change:transform, opacity;
}

.section-title{
    display:flex;
    align-items:center;
    color:#222;
    margin:0;
 
}

.custom-next{
    position:static !important;      /* Swiper ka absolute remove */
    transform:none !important;
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:all .35s ease;
    box-shadow:none;
}

.custom-next::after{
    display:none; /* Swiper default arrow hide */
}

.custom-next i{
    color:#004e9e;
    font-size:20px;
    transition:.35s;
}

.custom-next:hover{
    background:#004e9e;
    transform:translateX(5px);
}

.custom-next:hover i{
    color:#fff;
}

@media(max-width:991px){
    .section-title{
        padding-left:0;
        justify-content:center;
        font-size:34px;
    }

    .custom-next{
        width:50px;
        height:50px;
        min-width:50px;
    }
}

.floating-img{
    will-change: transform;
}

.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a, .navbar .navbar-nav .nav-link{
    font-family: 'Rufina', serif;
    font-weight: 600;
    font-size: 20px;
}

  .hover-img{
    position:relative;
    display:inline-block;
    transform-style:preserve-3d;
}

.hover-img img{
    transition:transform .6s;
    backface-visibility:hidden;
    border-radius:15px;
}

.hover-img .img-hover{
    position:absolute;
    inset:0;
    transform:rotateY(180deg);
}

.hover-img:hover .img-default{
    transform:rotateY(180deg);
}

.hover-img:hover .img-hover{
    transform:rotateY(0deg);
}  
 
.navbar .dropdown-menu li a{
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    transition: all .4s cubic-bezier(.22,1,.36,1);
}

.navbar .dropdown-menu li a span{
    position: relative;
    transition: transform .4s cubic-bezier(.22,1,.36,1);
}

/* Left Line */
.navbar .dropdown-menu li a span::before{
    content: "";
    position: absolute;
    left: -30px;
    top: 50%;
    width: 0;
    height: 2px;
    background: #d71920;
    transform: translateY(-50%);
    transition: width .4s cubic-bezier(.22,1,.36,1);
}

/* Hover Effect */
.navbar .dropdown-menu li:hover a span{
    transform: translateX(30px);
     color: #4e6ca7;
}

.navbar .dropdown-menu li:hover a span::before{
    width: 20px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu{
    padding-top: 15px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    border-bottom: 0px solid rgba(23, 23, 23, 0.1);  
    padding: 0px 20px !important;
    font-size: 17px !important;
    margin-bottom: 15px;
    color: #818181;
}

.navbar .nav-link{
    display:flex;
    align-items:center;
    gap:6px;
}

.navbar .nav-link i{
    font-size:14px;
    transition:.35s ease;
        margin-bottom: 2px;
}

.dropdown:hover > .nav-link i{
    transform:rotate(180deg);
}

.dropdown-toggle::after{
    display:none !important;
}

img{
    width:100%;
}
.menuLink{
    font-family: 'Rufina', serif;
    font-weight: 500;
    font-size: 18px;
    text-align: left;
    margin-left: 50px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #d3dae1;
    margin-right: 50px;
}

.menuLink:hover{
       color: #e81018;
    opacity: 1;
}

.bgTrustee{
   border-top-right-radius: 10px;
   border-bottom-right-radius: 10px;
   background-image: url('../images/nalanda-school/nalanda-international-school-chairman-mayur-patel.webp')
}

.bgAdmission {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-image: url('../images/nalanda-school/icse-school-admission-vadodara-process.avif')
}

.bgCampsAudio {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-image: url('../images/campus/school-campus-vadodara-facilities-7.webp');
    min-height: 450px;
}

.bgAcadmic {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-image: url('../images/academics/learning-systems/icse-curriculum-learning-system-4.webp');
    min-height: 450px;
}


.bgSports {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-image: url('../images/beyond-academics/sports/school-sports-vadodara-2b.webp');
    min-height: 450px;
    background-size: cover;
    background-position: center;
}


.bgSports2 {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-image: url('../images/beyond-academics/sports/school-sports-vadodara-3.webp');
    min-height: 410px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bgBeyLer {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-image: url('../images/beyond-academics/experiential-learning/holistic-education-vadodara-experiential-learning-3.webp');
    min-height: 450px;
}


.bgBeyLer2 {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-image: url('../images/beyond-academics/experiential-learning/holistic-education-vadodara-experiential-learning-5.webp');
    min-height: 450px;
}
.bgCreativity {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-image: url('../images/beyond-academics/creativity/school-extracurricular-activities-creativity-3.webp');
    min-height: 450px;
}

.bgCreativity2 {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-image: url('../images/beyond-academics/creativity/school-extracurricular-activities-creativity-7.webp');
    min-height: 450px;
}

.bgparents {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-image: url('../images/parents/nalanda-school-vadodara-parents-2.webp');
    min-height: 450px;
}
.bgparents2 {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-image: url('../images/parents/nalanda-school-vadodara-parents-4a.webp');
    background-repeat: no-repeat;
    min-height: 450px;
    background-size: cover;
    background-position: center;
}
.bgAdmission {
    background-image: url('../images/admissions/international-school-admission-vadodara-3.webp');
    background-repeat: no-repeat;
    min-height: 350px;
    background-size: cover;
    background-position: center;
}

.trustee-author strong{
    font-weight:var(--fw-bold);
}
.width220{
    max-width:220px;
}
.bgCornerMenu {
    background-image: url(../images/main/circle.svg);
    background-repeat: no-repeat;
    background-position: bottom-25px left;
    background-position: left -40px bottom -25px;
}

@media (max-width:768px){


}


@media (max-width: 576px) {
    
}

/* Keep desktop dropdowns available while the sticky header updates on scroll. */
@media (min-width: 992px) and (hover: hover) {
    .navbar .navbar-nav .dropdown:hover > .dropdown-menu,
    .navbar .navbar-nav .dropdown:focus-within > .dropdown-menu {
        display: block;
        animation: show-animation 0.25s ease both;
    }
}

/* Precise centre dot with a soft expanding hover halo. */
@media (any-hover: hover) and (any-pointer: fine) {
    body.custom-cursor.custom-cursor-enabled,
    body.custom-cursor.custom-cursor-enabled a,
    body.custom-cursor.custom-cursor-enabled button,
    body.custom-cursor.custom-cursor-enabled input,
    body.custom-cursor.custom-cursor-enabled select,
    body.custom-cursor.custom-cursor-enabled [role="button"] {
        cursor: none !important;
    }

    .custom-cursor .circle-cursor-inner,
    .custom-cursor .circle-cursor-inner.cursor-link-hover {
        width: 6px;
        height: 6px;
        margin-left: -3px;
        margin-top: -3px;
        background-color: var(--base-color);
        opacity: 0.95;
    }

    .custom-cursor .circle-cursor-outer {
        width: 30px;
        height: 30px;
        margin-left: -15px;
        margin-top: -15px;
        border: 1px solid rgba(232, 16, 24, 0.55);
        background-color: rgba(232, 16, 24, 0.02);
        transition: width 0.22s ease, height 0.22s ease, margin 0.22s ease,
                    border-color 0.22s ease, background-color 0.22s ease,
                    opacity 0.22s ease;
    }

    .custom-cursor .circle-cursor-outer.cursor-link-hover {
        width: 52px;
        height: 52px;
        margin-left: -26px;
        margin-top: -26px;
        border-color: rgba(232, 16, 24, 0.2);
        background-color: rgba(232, 16, 24, 0.11);
        opacity: 1;
    }
}
