@import url('https://fonts.googleapis.com/css2?family=Autour+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    /* Options: auto, thin, none */
    scrollbar-color: var(--primary-color) #f1f1f1;
    /* thumb-color track-color */
}

:root {
    --space-3xs-2xs: clamp(0.3125rem, 0.1847rem + 0.5682vw, 0.625rem);
    --space-2xs-xs: clamp(0.5625rem, 0.4091rem + 0.6818vw, 0.9375rem);
    --space-xs-s: clamp(0.875rem, 0.7216rem + 0.6818vw, 1.25rem);
    --space-s-m: clamp(1.125rem, 0.8182rem + 1.3636vw, 1.875rem);
    --space-m-l: clamp(1.6875rem, 1.3551rem + 1.4773vw, 2.5rem);
    --space-l-xl: clamp(2.25rem, 1.6364rem + 2.7273vw, 3.75rem);
    --space-xl-2xl: clamp(3.375rem, 2.7102rem + 2.9545vw, 5rem);
    --space-2xl-3xl: clamp(4.5rem, 3.2727rem + 5.4545vw, 7.5rem);
    --primary-color: #29A9FF;
    --secondary-color: #FFCD43;
    --light-color: #fff;
    --dark-color: #000;
    --dark-two-color: #EFEFEF;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.65;
    --swiper-wrapper-transition-timing-function: linear !important;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
    scroll-padding-top: 150px;
}

header,
main,
nav,
section {
    display: block
}

ul,
ol {
    list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button {

    letter-spacing: 1px !important;
    font-weight: 400 !important;
}

button:focus {
    outline: none;
    box-shadow: none;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Hanken Grotesk", sans-serif !important;
}

.special-font {
    font-family: "Autour One", system-ui !important;
}


/* ========================================
   Header Styles
   ======================================== */

.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    padding: 1rem 0;
}



.header-section.sticky {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.46);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.3px);
    -webkit-backdrop-filter: blur(8.3px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-section .navbar {
    padding: 0;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}

.logo-container.hide-logo {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    margin: 0;
    padding: 0;
}

.logo-container a {
    display: block;
}

.header-logo {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease-in-out;
    display: block;
}

.header-section.sticky .header-logo {
    max-height: 60px;
}

/* Navigation Menu Styles */
.navbar {
    padding: 0;
}

.nav-menu {
    background: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 100%);
    border-radius: 50px;
    padding: 0.5rem 2rem;
    margin: 0.5rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    width: fit-content;
}

.nav-menu .nav-item {
    margin: 0 0.5rem;
}

.nav-menu .nav-link {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 2rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #1a252f;
    transform: translateY(-2px);
}

.nav-menu .nav-link.active {
    background: rgba(255, 255, 255, 0.5);
    color: #1a252f;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .nav-menu {
        border-radius: 15px;
        margin: 1rem;
        padding: 1rem;
    }

    .nav-menu .nav-item {
        margin: 0.25rem 0;
    }

    .nav-menu .nav-link {
        padding: 0.5rem 1rem;
        text-align: center;
    }

    .header-logo {
        max-height: 60px;
    }

    .navbar-toggler {
        background: #fff !important;
        border: none !important;
        padding: 0.4rem !important;
        border-radius: 50% !important;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2220%22%20height%3D%2220%22%20x%3D%220%22%20y%3D%220%22%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%20class%3D%22%22%3E%3Cg%3E%3Cpath%20fill%3D%22%230d8aca%22%20fill-rule%3D%22evenodd%22%20d%3D%22M9%2015a1%201%200%200%201%201-1h6a1%201%200%201%201%200%202h-6a1%201%200%200%201-1-1zM3%205a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H4a1%201%200%200%201-1-1zm0%205a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H4a1%201%200%200%201-1-1z%22%20clip-rule%3D%22evenodd%22%20opacity%3D%221%22%20data-original%3D%22%23000000%22%20class%3D%22%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E") !important;
    }
}

/* hero  */
.hero {
    background-image: url("../img/banner/hero-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 2rem 0;
}


.hero h1 {

    color: var(--light-color);
}

.hero p {

    color: var(--light-color);
}
.hero-span{
    background-color: var(--primary-color);
    padding: 0.5rem 1rem;
    color: var(--light-color);
    font-weight: 400;
    font-size: 1.1rem;
    display: inline-block;
}
/* Hero Form Styles */
.hero-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 1.4rem 1.2rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    backdrop-filter: blur(10px);
    margin-top: 1rem;
}

.hero-form .form-label {
    font-weight: 500;
    font-size: 0.95rem;
    color: #000;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-form .form-control {
    border: none;
    background: #f0f0f0;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    color: #999;
    transition: all 0.3s ease;
}

.hero-form .form-control:focus {
    background: #e8e8e8;
    box-shadow: none;
    outline: none;
    color: #333;
}

.hero-form .form-control::placeholder {
    color: #ccc;
}

.hero-form .btn-submit {
    background: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 100%);
    color: #000;
    font-weight: 600!important;
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem 0.6rem;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(244, 208, 63, 0.4);
    margin-top: 0.5rem;
}

.hero-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.6);
    background: linear-gradient(135deg, #f7dc6f 0%, #f4d03f 100%);
}

.hero-form .btn-submit span {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

/* Responsive Form Styles */
@media (max-width: 768px) {
    .hero {
        background-image: url("../img/banner/mob-banner.png");
    }
    .hero .col-md-8{
       margin-top: 20rem;
    }
    .hero-form {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .hero-form .btn-submit {
        padding: 0.7rem 2.5rem;
        font-size: 1rem;
    }
}

.nurturing {
    padding: var(--space-l-xl) 0;
}

.nurturing h2 {
    text-align: center;
}

/* Nurturing Swiper Styles */
.swiper-wrapper {
    transition-timing-function: linear !important;
}

.nurturingSwiper {
    width: 100%;
    padding: 2rem 0;
    margin-top: 2rem;
}

.nurturingSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.nurturingSwiper .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nurturingSwiper .swiper-slide:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about {
    padding: var(--space-l-xl) 0;
    background-color: var(--secondary-color);
}

.first-arr {
    position: relative;

    z-index: 1;
}

.first-arr::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 0;
    width: 125px;
    height: 80px;
    background-image: url("../img/icons/arr-group.svg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    -webkit-animation: rotate-hor-center 2.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite alternate-reverse both;
    animation: rotate-hor-center 2.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite alternate-reverse both;
}

.first-arr::before {
    content: "";
    position: absolute;
    top: 70%;
    right: 0;
    width: 125px;
    height: 80px;
    background-image: url("../img/icons/arr-group.svg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    bottom: 0;
    -webkit-animation: rotate-hor-center 2.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite alternate-reverse both;
    animation: rotate-hor-center 2.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite alternate-reverse both;
}

@-webkit-keyframes rotate-hor-center {
    0% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
    }

    100% {
        -webkit-transform: rotateX(-360deg);
        transform: rotateX(-360deg);
    }
}

@keyframes rotate-hor-center {
    0% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
    }

    100% {
        -webkit-transform: rotateX(-360deg);
        transform: rotateX(-360deg);
    }
}

.about img {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 20px;
}

/* Journey Video Section */
.journey-video {
    padding: var(--space-l-xl) 0;
}

.video-wrapper {
    position: relative;
    max-width: 800%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

/* Play Button with Ripple Effect */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-button svg {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
    margin-left: 4px;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--secondary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button:hover svg {
    color: #fff;
}

/* Ripple Animation */
.ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    animation: ripple-animation 2s infinite;
    pointer-events: none;
}

.ripple:nth-child(2) {
    animation-delay: 0.5s;
}

.ripple:nth-child(3) {
    animation-delay: 1s;
}

@keyframes ripple-animation {
    0% {
        width: 80px;
        height: 80px;
        opacity: 1;
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Video Modal Styling */
#videoModal .modal-content {
    background: transparent;
    border: none;
}

#videoModal .modal-header {
    background: var(--secondary-color);
    color: #000000;
    border: none;
    border-radius: 10px 10px 0 0;
}

#videoModal .modal-body {
    background: #000;
    border-radius: 0 0 10px 10px;
}

#videoModal .btn-close {
    filter: invert(1);
}

/* Responsive Video Section */
@media (max-width: 768px) {
   /* .footer-section .col-md-6:nth-child(3) {
        width: 50%;
    }

    .footer-section .col-md-6:nth-child(4) {
        width: 50%;
    }*/

    .infrastructure-slide img {
        height: auto !important;
    }

    .infrastructure-details {
        bottom: 0% !important;
        width: 100% !important;
        left: 40% !important;
    }

    .infrastructure-details img {
        max-width: 500px !important;
    }

    .navbar-nav {
        width: 100%;
    }

    .curriculum .col-md-4 {
        width: 50%;
    }

    .first-arr::before {
        width: 82px;
        height: 51px;
        top: 40%;
    }

    .first-arr::after {
        width: 82px;
        height: 51px;
        top: 15px;
    }

    .glance::after {
        width: auto !important;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 25px;
        height: 25px;
    }

    .ripple {
        width: 60px;
        height: 60px;
    }

    @keyframes ripple-animation {
        0% {
            width: 60px;
            height: 60px;
            opacity: 1;
        }

        100% {
            width: 150px;
            height: 150px;
            opacity: 0;
        }
    }
}

#videoModal .modal-dialog {
    max-width: 800px !important;
}

.subjects {
    padding: var(--space-l-xl) 0;
    background-color: var(--dark-two-color);
}

.subjects .heading {
    text-align: center;
    margin-bottom: 3rem;
}

/* Subject Card Styles */
.subject-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1.4px solid var(--secondary-color);
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.subject-header {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    padding: 0.8rem;
    text-align: center;
}

.subject-header h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: 1px;
}

.subject-body {
    padding: 1rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.subject-section {
    margin-bottom: 0.2rem;
}

.subject-section h4 {
    color: #2196F3;
    font-size: 0.95rem;
    font-weight: 600;
    margin:0.3rem 0;
}

.subject-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subject-section ul li {
    color: #333;
    font-size: 0.9rem;
  padding: 0;
    padding-left: 1rem;
    position: relative;
}

.subject-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2196F3;
    font-weight: bold;
}

.btn-apply {
    background: linear-gradient(135deg, #FFCD43 0%, #FFB800 100%);
    color: #000;
    border: none;
    border-radius: 25px;
    padding: 0.4rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
    box-shadow: 0 4px 15px rgba(255, 205, 67, 0.4);
}

.btn-apply:hover {
    background: linear-gradient(135deg, #FFB800 0%, #FFCD43 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 205, 67, 0.6);
}

/* Responsive Subject Cards */
@media (max-width: 768px) {
    .subject-header h3 {
        font-size: 1.3rem;
    }

    .subject-body {
        padding: 1.25rem;
    }

    .subject-section h4 {
        font-size: 0.9rem;
    }

    .subject-section ul li {
        font-size: 0.85rem;
    }

    .btn-apply {
        padding: 0.65rem 2rem;
        font-size: 0.95rem;
    }
}

.flex-auto {
    flex: auto;
}

.beyond {
    padding: var(--space-l-xl) 0;
}

.beyond .heading {
    text-align: center;
    margin-bottom: 3rem;
}

/* Beyond Card Styles */
.beyond-card {
    background: linear-gradient(135deg, #FFCD43 0%, #FFE066 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    width: 100%;
}

.beyond-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.beyond-card-inner {
    position: relative;
    padding: 1.5rem;
}

.beyond-card-image {
    width: 160px;
    height: 160px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.beyond-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beyond-card-content {
    position: relative;
    /* min-height: 120px; */
}

.beyond-card-content h3 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.info-arrow-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffffffcf;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(41, 169, 255, 0.3);
}

.info-arrow-btn:hover {
    background: var(--light-color);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(41, 169, 255, 0.5);
}

.info-arrow-btn svg {
    color: #fff;
    transition: transform 0.3s ease;
}

.info-arrow-btn[aria-expanded="true"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.info-arrow-btn[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* Beyond Info Collapsible Section */
.beyond-info {
    position: relative;
    overflow: hidden;
}

.beyond-info-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: slideUpFade 0.4s ease-out;
}

.beyond-info-content p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Slide Up Animation */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Beyond Card */
@media (max-width: 768px) {
    .mob-text{
        font-size:1.5rem!important;
    }
    
    .beyond-card-content h3 {
        font-size: 1.1rem;
    }

    .beyond-info-content {
        padding: 1rem;
    }

    .beyond-info-content p {
        font-size: 0.9rem;
    }
}

/* Beyond Swiper Carousel */
.beyondSwiper {
    width: 100%;
    padding: 2rem 0 1rem;
    overflow: visible;
}

.beyondSwiper .swiper-slide {
    width: 320px;
    display: flex;
    justify-content: center;
}

/* Navigation Container Below Carousel */
.beyond-nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.beyond-swiper-button-prev,
.beyond-swiper-button-next {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 205, 67, 0.3);
    transition: all 0.3s ease;
}

.beyond-swiper-button-prev:hover,
.beyond-swiper-button-next:hover {
    background: var(--light-color);
    transform: scale(1.08);
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

.beyond-swiper-button-prev svg,
.beyond-swiper-button-next svg {
    color: #000;
    transition: color 0.3s ease;
}

.beyond-swiper-button-prev:hover svg,
.beyond-swiper-button-next:hover svg {
    color: #fff;
}

.beyond-swiper-button-prev.swiper-button-disabled,
.beyond-swiper-button-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hero{
      height:auto!important;
  }
    .beyond-swiper-button-prev,
    .beyond-swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .beyond-swiper-button-prev svg,
    .beyond-swiper-button-next svg {
        width: 20px;
        height: 20px;
    }

    .beyond-nav-container {
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

/* Gallery Section */
.gallery {
    padding: var(--space-l-xl) 0;
}

.gallery .heading {
    text-align: center;
    margin-bottom: 3rem;
}

/* Gallery Swiper Carousel */
.gallerySwiper,
.gallerySwiperRight {
    width: 100%;
    padding: 2rem 0;
    margin-top: 2rem;
}

.gallerySwiper .swiper-slide,
.gallerySwiperRight .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    min-height: 250px !important;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    min-height: 250px !important;
}

.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    min-height: 250px !important;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.gallery-card p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(179deg, rgba(2, 0, 36, 0) 0%, rgba(3, 21, 24, 0.28) 35%, rgb(0, 0, 0) 100%);
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0 0 20px 20px;
    font-size: 1.3rem;
    color: var(--light-color);
    margin: 0;
    font-weight: 500;
}

/* Reach Out Section */
.reach-out {
    padding: var(--space-l-xl) 0;
    background-color: var(--dark-two-color);
}

.reach-form-wrapper {
    background: linear-gradient(135deg, #29A9FF 0%, #1E90FF 100%);
    border-radius: 30px;
    padding: 2rem 2.5rem;
    box-shadow: 0 10px 40px rgba(41, 169, 255, 0.3);
}

.reach-heading h2 {
    color: var(--light-color);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.reach-heading h2 span {
    color: var(--secondary-color);
}

.reach-form .form-control {
    background: var(--light-color);
    border: none;
    border-radius: 25px;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    color: #666;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reach-form .form-control:focus {
    background: var(--light-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    outline: none;
    border: none;
}

.reach-form .form-control::placeholder {
    color: #999;
    font-size: 0.9rem;
}

.btn-reach-submit {
    background: linear-gradient(135deg, #FFCD43 0%, #FFB800 100%);
    color: #000;
    border: none;
    border-radius: 30px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 205, 67, 0.4);
    display: inline-flex;
    align-items: center;
}

.btn-reach-submit:hover {
    background: linear-gradient(135deg, #FFB800 0%, #FFCD43 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 205, 67, 0.6);
}

.btn-reach-submit img {
    width: 18px;
    height: 18px;
    filter: brightness(0);
}

/* Responsive Reach Out Section */
@media (max-width: 991px) {
    .reach-heading {
        text-align: center;
        margin-bottom: 2rem;
    }

    .reach-heading h2 {
        font-size: 2rem;
    }

    .reach-form .text-end {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .reach-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .reach-heading h2 {
        font-size: 1.75rem;
    }

    .btn-reach-submit {
        padding: 0.65rem 1.75rem;
        font-size: 1rem;
    }
}

.reach-out .container {
    max-width: 1000px;
}

.reach-out .heading {
    text-align: center;
    margin-bottom: 2rem;
}

/* ========================================
   Footer Styles
   ======================================== */

.footer-section {
    background-color: #2b2b2b;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-section a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.footer-section a:hover {
    color: #FFCD43;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-noc {
    margin-bottom: 1rem;
}

.footer-noc p {
    font-size: 0.85rem;
    color: #ccc;
    margin: 0;
}

.footer-copyright {
    margin-top: 1rem;
    color: var(--light-color);
}

.footer-copyright p {
    font-size: 0.8rem;
    color: var(--light-color);
    margin: 0;
}

.footer-widget {
    margin-bottom: 1.5rem;
}

.footer-widget h5 {
    color: #FFCD43;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: capitalize;
}

.footer-widget p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #ddd;
    margin: 0;
}

.footer-widget p a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget p a:hover {
    color: #FFCD43;
}

.btn-get-directions {
    display: inline-block;
    background-color: #FFCD43;
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.btn-get-directions:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 205, 67, 0.4);
}

.footer-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-map img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-social img {
    width: 20px;
    height: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: #2b2b2b;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background-color: #FFCD43;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 205, 67, 0.5);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-section {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-logo img {
        max-width: 180px;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding: 2rem 0 1rem;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-widget {
        margin-bottom: 2rem;
    }
}

.glance {
    padding: var(--space-xl-2xl) 0;
    background-color: var(--dark-two-color);
    position: relative;
    z-index: 1;
}

.glance::after {
    content: '';
    position: absolute;
    background-image: url(../img/icons/v-big.svg);
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    width: 480px;
    height: 400px;
    -webkit-animation: rotate-hor-center 4.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite alternate-reverse both;
    animation: rotate-hor-center 4.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite alternate-reverse both;
}

/* Glance Wrapper Styles */
.glance-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Central Card */
.glance-card {
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    padding: 2.5rem 2rem 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    max-width: 380px;
    width: 100%;
}

.glance-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.glance-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.glance-image {
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.glance-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pill Styles */
.glance-pill {
    position: absolute;
    background: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 100%);
    border-radius: 50px;
    width: 100px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(244, 208, 63, 0.3);
    z-index: 1;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1.8rem;
    font-weight: 500;
    color: #000;
    letter-spacing: 2px;
}

/* Positioning Pills */
.left-pill-1 {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.left-pill-2 {
    left: 22%;
    top: 50%;
    transform: translateY(-50%);
}

.right-pill-1 {
    right: 22%;
    top: 50%;
    transform: translateY(-50%);
}

.right-pill-2 {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Styles for Glance Section */
@media (max-width: 1200px) {
    .glance-pill {
        width: 80px;
        height: 300px;
    }

    .vertical-text {
        font-size: 1.5rem;
    }

    .left-pill-1 {
        left: 3%;
    }

    .left-pill-2 {
        left: 18%;
    }

    .right-pill-1 {
        right: 18%;
    }

    .right-pill-2 {
        right: 3%;
    }
}

@media (max-width: 992px) {
    .glance-wrapper {
        min-height: 400px;
    }

    .glance-pill {
        width: 70px;
        height: 260px;
    }

    .vertical-text {
        font-size: 1.3rem;
    }

    .glance-card {
        max-width: 320px;
        padding: 2rem 1.5rem 0;
    }

    .glance-title {
        font-size: 2rem;
    }

    .glance-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .glance-wrapper {
        min-height: 350px;
        padding: 1rem;
    }

    .glance-pill {
        width: 60px;
        height: 220px;
    }

    .vertical-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .glance-card {
        max-width: 280px;
        padding: 1.5rem 1rem 0;
    }

    .glance-title {
        font-size: 1.8rem;
    }

    .glance-subtitle {
        font-size: 0.9rem;
    }

    .left-pill-1,
    .left-pill-2 {
        left: 2%;
    }

    .right-pill-1,
    .right-pill-2 {
        right: 2%;
    }
}

@media (max-width: 576px) {
    .glance-pill {
        width: 50px;
        height: 180px;
    }

    .vertical-text {
        font-size: 0.9rem;
    }

    .glance-card {
        max-width: 240px;
    }

    .glance-title {
        font-size: 1.5rem;
    }

    .glance-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

/* ===== ACCORDION OVERRIDES =====  */
/* Glance Accordion Wrapper */
.glance-accordion-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 2rem 1rem;
}

/* Accordion Items */
.accordion-item {
    position: relative;
    background: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 100%);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(244, 208, 63, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 360px;
    width: 90px;
}

.accordion-item:hover {
    box-shadow: 0 8px 30px rgba(244, 208, 63, 0.5);
    transform: scale(1.02);
}

.accordion-item.active {
    width: 200px;
    background: linear-gradient(135deg, #FFB800 0%, #f4d03f 100%);
}

/* Accordion Tab (Always Visible) */
.accordion-tab {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.accordion-item .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1.6rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.accordion-item.active .vertical-text {
    font-size: 1.4rem;
}

/* Accordion Content (Hidden by default) */
.accordion-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFB800 0%, #f4d03f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    opacity: 1;
    visibility: visible;
}

.accordion-item.active .accordion-tab {
    opacity: 0;
    visibility: hidden;
}

.accordion-content p {
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
    margin: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Central Card */
.glance-center-card {
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    padding: 2.5rem 2rem 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    max-width: 380px;
    width: 100%;
    flex-shrink: 0;
}

/* Responsive Accordion Styles */
@media (max-width: 1200px) {
    .accordion-item {
        width: 80px;
        height: 320px;
    }

    .accordion-item.active {
        width: 180px;
    }

    .accordion-item .vertical-text {
        font-size: 1.4rem;
    }

    .glance-center-card {
        max-width: 340px;
        padding: 2rem 1.5rem 0;
    }
}

@media (max-width: 992px) {
    .glance-accordion-wrapper {
        min-height: 400px;
        gap: 10px;
    }

    .accordion-item {
        width: 70px;
        height: 280px;
    }

    .accordion-item.active {
        width: 160px;
    }

    .accordion-item .vertical-text {
        font-size: 1.2rem;
    }

    .glance-center-card {
        max-width: 300px;
        padding: 1.8rem 1.2rem 0;
    }

    .glance-center-card .glance-title {
        font-size: 2rem;
    }

    .glance-center-card .glance-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {


    .glance-accordion-wrapper {
        flex-wrap: wrap;
        min-height: auto;
        gap: 15px;
    }

    .accordion-item {
        width: 100%;
        height: 70px;
        border-radius: 35px;
    }

    .accordion-item.active {
        width: 100%;
        height: 140px;
    }

    .accordion-tab {
        padding: 0.5rem 1.5rem;
    }

    .accordion-item .vertical-text {
        writing-mode: horizontal-tb;
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .accordion-item.active .vertical-text {
        font-size: 1.2rem;
    }

    .accordion-content p {
        writing-mode: horizontal-tb;
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .glance-center-card {
        max-width: 100%;
        width: 100%;
        order: -1;
        padding: 1.5rem 1rem 0;
    }

    .glance-center-card .glance-title {
        font-size: 1.8rem;
    }

    .glance-center-card .glance-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .accordion-item {
        height: 60px;
    }

    .accordion-item.active {
        height: 120px;
    }

    .accordion-item .vertical-text {
        font-size: 1.1rem;
    }

    .glance-center-card .glance-title {
        font-size: 1.6rem;
    }

    .glance-center-card .glance-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

/* ===== CSS-ONLY ACCORDION (NO JAVASCRIPT) ===== */
/* Hide checkbox inputs */
.accordion-checkbox {
    display: none;
}

/* Accordion Panel */
.accordion-panel {
    position: relative;
    background: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 100%);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(244, 208, 63, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 360px;
    width: 90px;
}

/* Accordion Label (Clickable Tab) */
.accordion-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.5s ease;
    padding: 1rem;
}

.accordion-label .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1.6rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 2px;
}

/* Accordion Content Panel (Hidden by default) */
.accordion-content-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFB800 0%, #f4d03f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content-panel p {
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
    margin: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Hover Effect */
.accordion-panel:hover {
    box-shadow: 0 8px 30px rgba(244, 208, 63, 0.5);
    transform: scale(1.02);
}

/* Checked State (Expanded) - CSS ONLY */
.accordion-checkbox:checked~.accordion-label {
    opacity: 0;
    visibility: hidden;
}

.accordion-checkbox:checked~.accordion-content-panel {
    opacity: 1;
    visibility: visible;
}

.accordion-panel:has(.accordion-checkbox:checked) {
    width: 200px;
    background: linear-gradient(135deg, #FFB800 0%, #f4d03f 100%);
}

/* Responsive */
@media (max-width: 1200px) {
    .accordion-panel {
        width: 80px;
        height: 320px;
    }

    .accordion-panel:has(.accordion-checkbox:checked) {
        width: 180px;
    }

    .accordion-label .vertical-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 992px) {
    .accordion-panel {
        width: 70px;
        height: 280px;
    }

    .accordion-panel:has(.accordion-checkbox:checked) {
        width: 160px;
    }

    .accordion-label .vertical-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .accordion-panel {
        width: 100%;
        height: 70px;
        border-radius: 35px;
    }

    .accordion-panel:has(.accordion-checkbox:checked) {
        width: 100%;
        height: 140px;
    }

    .accordion-label {
        padding: 0.5rem 1.5rem;
    }

    .accordion-label .vertical-text {
        writing-mode: horizontal-tb;
        font-size: 1.3rem;
    }

    .accordion-content-panel p {
        writing-mode: horizontal-tb;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .accordion-panel {
        height: 60px;
    }

    .accordion-panel:has(.accordion-checkbox:checked) {
        height: 120px;
    }

    .accordion-label .vertical-text {
        font-size: 1.1rem;
    }
}

/* ===== TRUE VERTICAL ACCORDION ===== */
.glance-vertical-accordion {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 2rem 1rem;
}

/* Hide radio buttons */
.v-accordion-radio {
    display: none;
}

/* Each accordion item */
.v-accordion-item {
    position: relative;
    background: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 100%);
    border-radius: 50px;
    height: 440px;
    width: 90px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(244, 208, 63, 0.3);
}

/* Collapsed label (visible by default) */
.v-accordion-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.v-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1.6rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 2px;
}

/* Expanded content (hidden by default) */
.v-accordion-expanded {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 30px;
    padding: 2.5rem 2rem 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.v-accordion-expanded h3 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.v-accordion-expanded p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.v-acc-image {
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.v-acc-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* WHEN RADIO IS CHECKED */
.v-accordion-radio:checked~.v-accordion-label {
    opacity: 0;
    visibility: hidden;
}

.v-accordion-radio:checked~.v-accordion-expanded {
    opacity: 1;
    visibility: visible;
}

.v-accordion-item:has(.v-accordion-radio:checked) {
    width: 380px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Hover effect on collapsed items */
.v-accordion-item:hover {
    box-shadow: 0 8px 30px rgba(244, 208, 63, 0.5);
    transform: scale(1.02);
}

.v-accordion-item:has(.v-accordion-radio:checked):hover {
    transform: scale(1);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .v-accordion-item {
        width: 80px;
        height: 320px;
    }

    .v-accordion-item:has(.v-accordion-radio:checked) {
        width: 340px;
    }

    .v-text {
        font-size: 1.4rem;
    }

    .v-accordion-expanded h3 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .glance-vertical-accordion {
        gap: 10px;
        min-height: 400px;
    }

    .v-accordion-item {
        width: 70px;
        height: 280px;
    }

    .v-accordion-item:has(.v-accordion-radio:checked) {
        width: 300px;
    }

    .v-text {
        font-size: 1.2rem;
    }

    .v-accordion-expanded {
        padding: 1.8rem 1.2rem 0;
    }

    .v-accordion-expanded h3 {
        font-size: 1.8rem;
    }

    .v-accordion-expanded p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .glance-vertical-accordion {
        flex-direction: column;
        gap: 15px;
        min-height: auto;
    }

    .v-accordion-item {
        width: 100%;
        height: 70px;
        border-radius: 35px;
    }

    .v-accordion-item:has(.v-accordion-radio:checked) {
        width: 100%;
        height: auto;
        min-height: 400px;
    }

    .v-accordion-label {
        padding: 0.5rem 1.5rem;
    }

    .v-text {
        writing-mode: horizontal-tb;
        font-size: 1.3rem;
    }

    .v-accordion-expanded {
        padding: 1.5rem 1rem 0;
    }

    .v-accordion-expanded h3 {
        font-size: 1.6rem;
    }

    .v-accordion-expanded p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .v-accordion-item {
        height: 60px;
    }

    .v-accordion-item:has(.v-accordion-radio:checked) {
        min-height: 350px;
    }

    .v-text {
        font-size: 1.1rem;
    }

    .v-accordion-expanded h3 {
        font-size: 1.4rem;
    }
}




/* ========================================
   Infrastructure Slider Styles
   ======================================== */

.infrastructure {
    padding: var(--space-l-xl) 0 0;
    background-color: var(--primary-color);
    overflow: hidden;
    position: relative;
}

.infrastructure::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg,rgba(41, 169, 255, 1) 0%, rgba(41, 169, 255, 0.75) 18%, rgba(41, 169, 255, 0) 74%);
z-index: 9;
}

.infrastructure .heading {
    text-align: center;
    color: var(--light-color);
}

.infrastructure .heading h2 {
    margin-bottom: 0rem !important;
}

.infrastructure .heading p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.infrastructure-slider-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
}

.infrastructureSwiper {
    width: 100%;
    height: 100%;
}

.infrastructure-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.infrastructure-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.infrastructure-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(41, 169, 255, 0.75) 0%,
            rgba(41, 169, 255, 0.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.infrastructure-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.infrastructure-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.infrastructure-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.btn-explore {

    background: linear-gradient(135deg, #FFCD43 0%, #FFB800 100%);
    color: #000;
    padding: 0.7rem 5rem;
    border-radius: 50px;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 205, 67, 0.4);
    border: none;
}

.btn-explore:hover {
    background: linear-gradient(135deg, #FFB800 0%, #FFCD43 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 205, 67, 0.6);
    color: #000;
}

.btn-explore i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-explore:hover i {
    transform: translateX(5px);
}

/* Navigation Arrows */
.infrastructure-prev,
.infrastructure-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.infrastructure-prev {
    left: 30px;
}

.infrastructure-next {
    right: 30px;
}

.infrastructure-prev:hover,
.infrastructure-next:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.infrastructure-prev::after,
.infrastructure-next::after {
    color: #fff;
    font-size: 28px !important;
    font-weight: bold;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .infrastructure-slider-wrapper {
        height: 60vh;
        min-height: 450px;
    }

    .infrastructure-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .infrastructure-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .btn-explore {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }

    .infrastructure-prev,
    .infrastructure-next {
        width: 50px;
        height: 50px;
    }

    .infrastructure-prev {
        left: 20px;
    }

    .infrastructure-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .infrastructure-slider-wrapper {
        height: 50vh;
        min-height: 400px;
    }

    .infrastructure-content {
        padding: 1.5rem;
    }

    .infrastructure-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .infrastructure-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-explore {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }

    .infrastructure-prev,
    .infrastructure-next {
        width: 45px;
        height: 45px;
    }

    .infrastructure-prev {
        left: 15px;
    }

    .infrastructure-next {
        right: 15px;
    }

    .infrastructure-prev::after,
    .infrastructure-next::after {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .infrastructure-slider-wrapper {
        min-height: 350px;
    }

    .infrastructure-content h2 {
        font-size: 1.5rem;
    }

    .infrastructure-content p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .btn-explore {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }

    .infrastructure-prev,
    .infrastructure-next {
        width: 40px;
        height: 40px;
    }

    .infrastructure-prev {
        left: 10px;
    }

    .infrastructure-next {
        right: 10px;
    }

    .infrastructure-prev::after,
    .infrastructure-next::after {
        font-size: 20px;
    }
}


/* Zoom In Animation for Infrastructure Swiper */
.zoom-in {
    animation: zoomIn 1.2s ease-out both;
}

@keyframes zoomIn {
    0% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.infrastructure-details {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 48%;
    z-index: 3;
    pointer-events: none;
    /* Container doesn't block clicks */
    text-align: center;
}

/* Enable pointer events on all interactive children */
.infrastructure-details img,
.infrastructure-details a,
.infrastructure-details button,
.infrastructure-details .btn-explore {
    pointer-events: auto;
    /* Makes these elements clickable */
}

.curriculum {
    padding: 0 0 var(--space-l-xl);
    background-color: var(--light-color);
    overflow: hidden;
    position: relative;
}

.curriculum .heading {
    text-align: center;
    color: var(--dark-color);
}

/* Curriculum Card Styles */
.curriculum-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
}

.curriculum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.curriculum-icon img {
    width: 50%;
    height: auto;
}

.curriculum-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #FFB800 0%, #FFCD43 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.curriculum-card h3 {
    color: #000;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    letter-spacing: -1.4px;
    font-weight: 300;
}

.curriculum-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .curriculum-icon {
        width: 75px;
        height: 75px;
    }

    .curriculum-icon i {
        font-size: 2rem;
    }

    .curriculum-card h3 {
        font-size: 1.2rem;
    }

    .curriculum-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .footer-social a {
        height: 25px !important;
    }

    .hero h1 {
        padding-top: 0.4rem;
    }

    .header-section .container-fluid {
        display: flex;
        justify-content: space-between;
    }

    .curriculum-card {
        padding: 1.5rem 1.25rem;
    }

    .curriculum-icon {
        width: 70px;
        height: 70px;
    }

    .curriculum-icon i {
        font-size: 1.75rem;
    }

    .curriculum-card h3 {
        font-size: 1.1rem;
    }
}


[data-aos="scale-in-hor-left"].aos-animate {
 animation: scale-in-hor-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes scale-in-hor-left {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
}
@keyframes scale-in-hor-left {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
}
.journey-video .heading {
    text-align: center;
}


/* -----back to top----- */
.back-to-top {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all linear;
    transition: .3s all linear;
}

.back-to-top.show {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

.back-to-top a {
    width: 40px;
    height: 40px;
background-image: linear-gradient(to right, #62cff4, #2c67f2);
    box-shadow: 0px 5px 20px rgba(0, 157, 255, 0.814);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    bottom: 18%;
    right: 1%;
    position: fixed;
    z-index: 998;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.back-to-top.show a:hover .top-line {
    height: 14px;
    border-color: #000;
    background: #000;
    top: 12px;
}

.back-to-top a:hover .top-array {
    border-color: #000;
    top: 11px;
}

.back-toop-tooltip {
    position: absolute;
    top: -65px;
    -webkit-transform: rotate(-90deg) translateX(20px);
    transform: rotate(-90deg) translateX(20px);
    width: 100px;
    left: -33px;
    -webkit-transition: .6s all ease;
    transition: .6s all ease;
    line-height: 1;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
}

.back-toop-tooltip span {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.back-to-top a:hover .back-toop-tooltip {
    -webkit-transform: rotate(-90deg) translateX(5px);
    transform: rotate(-90deg) translateX(5px);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

.back-to-top.show a {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.back-to-top a:hover {
    background: var(--primary-color);
    color: #000;
}

.back-to-top.home6 a {
    background: #00c6c6;
}


/* ---------whatsapp--------------- */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 10px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 9999;
    animation: ripple-container 2s infinite;
    border-radius: 50%;
}

.whatsapp-container.show {
    opacity: 1;
    transform: scale(1);
}

@keyframes ripple-container {
    0% {
        box-shadow: 0 0 0 0 #251e4f;
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #19197069;
    color: white;
    padding: 4px;
    border-radius: 70px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.whatsapp-button:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 25, 137, 0.4);
}

.whatsapp-button:active {
    transform: translateY(0);
}

.whatsapp-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon svg {
    width: 40px;
    height: 40px;
    fill: #25D366;
}
