.slide-in-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: transform, opacity;
}

.slide-in-zoom.animate {
    opacity: 1;
    transform: scale(1);
}
/* Layout helpers */
body,
html {
    height: 100%;
    font-family: Georgia, 'Times New Roman', Times, serif;
    overflow-x: hidden;
}

:root {
    --green-900: #162500;
    --green-800: #162500;
    --accent-yellow: #FEB63D;
}

/* Hero section styles */
.hero {
    position: relative;
    min-height: 90vh;
    background-image: url('https://images.unsplash.com/photo-1509062522246-3755977927d7?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero::after {
    /* subtle overlay for text readability */
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding-top: 12vh;
    padding-bottom: 12vh;
}

/* Hero slider */
.hero-section {
    position: relative;
}

.hero-slider {
    height: 85vh;
}

.hero-slider .swiper-slide {
    position: relative;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
    transform: scale(1.05);
    animation: heroZoom 16s ease-in-out infinite alternate;
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

.hero-slider .swiper-slide-active .hero-slide-bg {
    opacity: 1;
}

.hero-slider .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.35) 100%);
}

@keyframes heroZoom {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.12);
    }
}

.hero-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: .7;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--accent-yellow);
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    z-index: 5;
}

.hero-overlay .inner {
    max-width: 520px;
    padding: 2.5rem 3rem;
    margin-left: -20px;
    margin-top: 38vh;
    border-radius: 24px;
    color: #fff;
    pointer-events: auto;
    transform: translateX(-150%);
    will-change: transform;
}

.hero-overlay .inner.is-active {
    animation: heroTextSlide 0.8s ease-out forwards;
}

.hero-overlay .inner > * {
    transform: translateX(-150%);
}

.hero-overlay .inner.is-active > * {
    animation: heroTextSlide 0.8s ease-out forwards;
}

.hero-overlay .inner.is-active > *:nth-child(2) {
    animation-delay: 0.1s;
}

.hero-overlay .inner.is-active > *:nth-child(3) {
    animation-delay: 0.2s;
}

.hero-overlay-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    width: 100%;
    padding: clamp(1rem, 2.5vw, 2.5rem) clamp(1.25rem, 3vw, 3rem);
    box-sizing: border-box;
    pointer-events: auto;
}

.hero-form-card {
    width: 330px;
    background: #16250096;
    border-radius: 16px;
    padding: 1.1rem 1.2rem;
    box-shadow: none;
    backdrop-filter: none;
    margin-top: 50px;
    margin-right: clamp(0.5rem, 2vw, 1.75rem);
    pointer-events: auto;
    opacity: 0;
    transform: translateX(90px);
    animation: heroFormSlide 0.85s ease-out forwards 0.4s;
}

.hero-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FEB63D;
    text-align: center;
    margin-bottom: 0.9rem;
}

.hero-admission-form {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.hero-admission-form .form-row {
    display: flex;
    gap: 0.7rem;
}

.hero-admission-form .form-row > * {
    flex: 1 1 50%;
}

.hero-admission-form .form-control,
.hero-admission-form select {
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    padding: 0.55rem 0.65rem;
    font-size: 0.9rem;
    background-color: #fff;
}

.hero-admission-form .form-control:focus,
.hero-admission-form select:focus {
    outline: none;
    border-color: #FEB63D;
    box-shadow: 0 0 0 2px rgba(244, 92, 67, 0.15);
}

.hero-form-check {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #FEB63D;
}

.hero-form-check a {
    color: #c7314d;
    text-decoration: none;
}

.hero-form-check a:hover {
    text-decoration: underline;
}

.hero-form-submit {
    border: none;
    background: #FEB63D;
    color: #fff;
    padding: 0.65rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(244, 92, 67, 0.3);
}

.hero-form-mobile-wrapper {
    display: none;
    padding: 0 1rem 2rem;
}

.hero-form-mobile {
    width: min(420px, 100%);
    margin: 0 auto;
    box-shadow: none;
    backdrop-filter: none;
}

@keyframes heroTextSlide {
    from {
        transform: translateX(-150%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes heroFormSlide {
    from {
        opacity: 0;
        transform: translateX(90px);
    }

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

.hero-overlay h1 {
    font-size: clamp(2rem, 3vw, 3.1rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-overlay .btn {
    font-weight: 600;
    padding: 0.45rem 1.4rem;
    border-radius: 999px;
    background-color: #FEB63D;
    border-color: #FEB63D;
    color: #1f1f1f;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.hero-overlay .btn:hover,
.hero-overlay .btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

@media (max-width: 991.98px) {
    .hero-slider {
        height: 85vh;
    }

    .hero-overlay {
        align-items: flex-end;
    }

    .hero-overlay .inner {
        margin: 0 clamp(0.5rem, 3vw, 1.25rem) 3rem;
        margin-top: 6vh;
        width: calc(100% - 3rem);
        padding: 2rem;
    }

    .hero-overlay-content {
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .hero-form-card {
        width: min(420px, 100%);
        margin: 0 auto;
        margin-top: 0;
        margin-right: 0;
    }

    .hero-form-desktop {
        display: none;
    }

    .hero-form-mobile-wrapper {
        display: block;
        padding: 1.5rem 1.5rem 2.5rem;
    }

    .hero-form-mobile {
        width: min(420px, 100%);
        margin: 0 auto;
    }

    .hero-form-mobile .form-row > *,
    .hero-admission-form .form-row > * {
        flex: 1 1 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-slider {
        height: 80vh;
    }

    .hero-overlay .inner {
        margin: 0 clamp(0.25rem, 3vw, 0.75rem) 2.5rem;
        margin-top: 4vh;
        width: calc(100% - 2rem);
        padding: 1.75rem;
    }

    .hero-overlay h1 {
        font-size: 1.85rem;
    }

    .hero-overlay p {
        font-size: 0.95rem;
    }

    .hero-form-card {
        width: 100%;
        padding: 1.1rem;
        margin-right: 0;
    }

    .hero-form-title {
        font-size: 1.1rem;
    }

    .hero-admission-form .form-row > * {
        flex: 1 1 100%;
    }

    .left-rail {
        display: none !important;
    }

    .content-offset {
        margin-left: 0;
    }

    .navbar-brand .brand-logo {
        margin-left: 0;
        padding-left: 0;
        max-width: 180px;
        height: auto;
    }

    .navbar-brand {
        justify-content: center;
        margin-left: 90px;
    }
}

/* Sticky right-side vertical admission tab */
.admission-tab {
    position: fixed;
    top: 40%;
    right: 0;
    background: var(--accent-yellow);
    color: #212529;
    writing-mode: vertical-rl;
    /* vertical text */
    transform: rotate(180deg);
    /* make it read top-to-bottom */
    padding: 16px 10px;
    border-radius: 0px 12px 12px 0px;
    font-weight: 700;
    letter-spacing: 0.4px;
    z-index: 1031;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    text-decoration: none;
}

/* Chatbot floating button and panel (bottom-left) */
.chatbot-wrapper {
    position: fixed;
    bottom: 1px;
    left: 32px;
    z-index: 1034;
    display: flex;
    align-items: center;
    gap: 12px;
    touch-action: none;
    user-select: none;
}

.chatbot-toggle {
    background: transparent;
    border: none;
    padding: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chatbot-toggle .chatbot-icon {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.chatbot-tooltip {
    --b: 1em;
    --h: 0.7em;
    --c: #f8c125;
    color: #fff;
    font-size: 0.95rem;
    max-width: 28ch;
    text-align: center;
    padding: 1em;
    border-radius: 1.2em;
    border-bottom-left-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%,
            var(--b) 100%,
            calc(-1 * var(--h)) calc(100% + var(--h)),
            0 calc(100% - var(--b)));
    background: var(--c);
    border-image: conic-gradient(var(--c) 0 0) 0 0 999 999 /
        0 0 calc(var(--h) + var(--b)) calc(var(--h) + var(--b)) /
        0 0 var(--h) var(--h);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(14px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    position: relative;
    margin-bottom: 80px;
    white-space: nowrap;
}

.chatbot-wrapper:hover .chatbot-tooltip,
.chatbot-wrapper:focus-within .chatbot-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.chatbot-panel {
    position: fixed;
    bottom: 86px;
    /* above the toggle */
    left: 82px;
    width: 320px;
    max-width: calc(100vw - 36px);
    height: 420px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    z-index: 1034;
}

.chatbot-header {
    background: #0f3d1e;
    /* deep green */
    color: #fff;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-body {
    height: calc(100% - 48px);
    background: #f6f7f9;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-msg {
    background: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

/* Utility tweak for navbar brand logo placeholder */
.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: linear-gradient(135deg, #1b5e20, #66bb6a);
    margin-right: 8px;
}

.navbar {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    min-height: 80px;
    position: relative;
    z-index: 1033;
}

.navbar-brand {
    display: flex;
    align-items: center;
    min-height: 55px;
    position: relative;
    z-index: 1101;
}

.navbar-dark-bg {
    background: var(--green-800) !important;
}

.brand-logo-custom {
    margin-left: 0 !important;
    padding-left: 0 !important;
    width: 180px !important;
}

/* Dropdown Menu Styles */
.navbar .dropdown-menu {
    background-color: #162500;
    border: 1px solid rgba(254, 182, 61, 0.25);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    min-width: 210px;
    z-index: 1055;
}

.navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 10px 20px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: rgba(254, 182, 61, 0.15);
    color: var(--accent-yellow) !important;
    padding-left: 24px;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
    background-color: var(--accent-yellow);
    color: #162500 !important;
    font-weight: 700;
}

.navbar .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.navbar .dropdown-toggle.show::after,
.navbar .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    .navbar .nav-item.dropdown {
        position: relative;
    }

    .navbar .nav-item.dropdown:hover > .dropdown-menu,
    .navbar .nav-item.dropdown:focus-within > .dropdown-menu,
    .navbar .dropdown-menu:hover {
        display: block;
        animation: navDropdownFade 0.2s ease-out;
    }
}

@keyframes navDropdownFade {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: 5px 15px;
        padding: 5px 0;
    }
    
    .navbar .dropdown-item {
        padding: 8px 16px;
    }
}

.navbar .nav-link {
    color: #ffffff !important;
    font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
    color: var(--accent-yellow) !important;
}

.brochure-btn {
    border-radius: 20px !important;
    background-color: #FEB63D !important;
    border-color: #FEB63D !important;
}

.brochure-btn:hover {
    background-color: #FEB63D !important;
    border-color: #FEB63D !important;
    opacity: 0.9;
}

.brand-logo {
    height: 65px;
    width: 250px;
    max-height: 65px;
    padding-left: 30px;
}

.navbar-brand .brand-logo {
    margin-left: -100px;
}

.left-rail .brand-logo {
    height: 72px;
    margin-left: 0;
}

/* Left vertical rail */
.left-rail {
    position: relative;
    float: left;
    width: 90px;
    min-height: 92vh;
    background: var(--green-900);
    color: #fff;
    z-index: 1032;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    padding-top: 130px;
    font-family: 'Merriweather', serif;
}

.left-rail .logo {
    display: none;
}

.left-rail .tagline {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 12px;
    letter-spacing: .6px;
    opacity: .9;
    color: #fff;
    
    margin-top: -34px;
    font-family: 'Merriweather', serif;
    
}

.left-rail .tagline .tagline-highlight {
    color: #f8c125;
    font-weight: 600;
    display: block;
    margin-top: 205px;
    margin-left: -45px;
    font-family: 'Merriweather', serif;
}

.left-rail .social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 72px;
}

.left-rail .social a {
    color: #fff;
    opacity: .9;
    position: relative;
    display: inline-block;
    padding-right: 20px;
}

.left-rail .social a[aria-label="YouTube"] {
    color: #FF0000;
}

.left-rail .social a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #E4405F, #833AB4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.left-rail .social a[aria-label="Facebook"] {
    color: #1877F2;
}

.left-rail .social a[aria-label="X"] {
    color: #000000;
}

.left-rail .social a::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 100%;
    transform: translateY(-50%);
    width: 2px;
    height: 150px;
    background-color: var(--accent-yellow);
    margin-top: 30px;
}

/* Make main content account for left rail */
.content-offset {
    margin-left: 90px;
}

.admissions-spotlight-section.content-offset {
    margin-left: 0;
    padding-left: 90px;
    padding-right: 90px;
    padding-top: 0;
    padding-bottom: 0;
}

/* About Section Styles */
.about-section {
    background-color: #ffffff;
    position: relative;
    border-right: 4px solid #e0d5f0;
}

.about-container {
    margin: 0 auto;
}

.about-section .row:last-of-type {
    margin-top: -2.5rem;
}

.about-headline {
    font-size: clamp(1.8rem, 4.5vw, 2.2rem);
    font-weight: 400;
    color: #212529;
    line-height: 1.2;
   
}

.about-headline .text-green {
    font-size: 1.2em;
    font-weight: 700;
    color: #4F701E;
}

.about-headline-bottom {
    font-size: clamp(1.9rem, 6vw, 2.5rem);
    font-weight: 700;
    color: #4F701E;
    
    text-align: left;
    margin-left: -20px;
    
}

.about-description {
    font-size: 1.2rem;
    color: #495057;
    line-height: 1.4;
    text-align: right;
    margin-right: 70px;
    margin-top: 50px;
}
.about-description1 {
    font-size: 1.3rem;
    color: #495057;
    line-height: 1.4;
   
    
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
    width: 80%;
    max-width: 400px;
    height: 280px;
    border-radius: 40% 40% 40% 40%;
    padding: 10px;
    border: 2px dashed #d3d3d3;
    overflow: hidden;
    background-color: #ffffff;
    box-sizing: border-box;
    margin-left: 120px;
    margin-top: 10px;
}

.about-image-wrapper-bottom {
    position: relative;
    display: inline-block;
    padding: 12px;
    width: 80%;
    max-width: 350px;
    height: 370px;
    overflow: hidden;
    border: 2px dashed #00000062;
    border-radius: 50% 50% 0px 0px;
    box-sizing: border-box;
    margin-top: 20px;
}

.about-image-wrapper-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    z-index: 0;
    pointer-events: none;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.about-image-wrapper .about-image {
    border-radius: 40% 40% 40% 40%;
}

.about-image-wrapper-bottom .about-image {
    border-radius: 50% 50% 0 0;
}


.yellow-underline {
    width: 130px;
    height: 1.6px;
    background-color: var(--accent-yellow);
    margin: 0 auto;
}

.btn-know-more {
    background-color: #335502;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-know-more:hover {
    background-color: #2e7d32;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-know-more i {
    color: var(--accent-yellow);
    font-size: 1rem;
}

/* Slide in animation from right */
.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Slide in animation from left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Rise zoom animation */
.rise-zoom {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.rise-zoom.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.rise-zoom.delay-1 {
    transition-delay: 0.12s;
}

.rise-zoom.delay-2 {
    transition-delay: 0.24s;
}

.rise-zoom.delay-3 {
    transition-delay: 0.36s;
}

.rise-zoom.delay-4 {
    transition-delay: 0.48s;
}

/* Enhanced slide-in for admissions spotlight title */
.admissions-spotlight-title.slide-in-left {
    opacity: 0 !important;
    transform: translateX(-150px) !important;
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.admissions-spotlight-title.slide-in-left.animate {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Smart Class Section */
.smart-class-section {
    min-height: 600px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
}

.smart-class-visual {
    position: relative;
    background: #666E5A;
    overflow: hidden;
}

.smart-class-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.smart-class-image-wrapper {
    --bg-image: url('assets_kgs/heroimg.png');
}

.smart-class-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    z-index: 0;
    opacity: 0.7;
    transition: background-image 0.8s ease;
}

.smart-class-label {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
    margin-top: 20px;
}

.smart-class-label::before {
    content: '';
    position: absolute;
    left: -320px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 2px;
    background-color: #ffffff7b;
}

.smart-class-label::after {
    content: '';
    position: absolute;
    right: -320px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 2px;
    background-color: #ffffff77;
}

.smart-class-slider {
    width: 100%;
    height: 600px;
    position: relative;
    z-index: 2;
    padding: 60px 120px 20px 120px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.smart-class-arrow {
    position: absolute;
    bottom: 20px;
    right: 50px;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 4;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.smart-class-arrow i {
    font-size: 3rem;
    line-height: 1;
}

.smart-class-arrow:hover,
.smart-class-arrow:focus {
    transform: translateY(-4px) scale(1.05);
    
   
    color: #ffffff;
}

@media (max-width: 992px) {
    .smart-class-arrow {
        bottom: 30px;
        right: 35px;
        width: 58px;
        height: 58px;
    }

    .smart-class-arrow i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .smart-class-arrow {
        bottom: 20px;
        right: 25px;
        width: 52px;
        height: 52px;
    }

    .smart-class-arrow i {
        font-size: 1.4rem;
    }
}

.smart-class-slider .swiper-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smart-class-slider .swiper-slide-active {
    width: 100%;
    opacity: 1;
    transform: scale(1);
}

.smart-class-slider .swiper-slide-prev,
.smart-class-slider .swiper-slide-next {
    opacity: 0.8;
}

.smart-class-slider .swiper-wrapper {
    display: flex;
    align-items: center;
    transition-property: transform;
    margin-top: -20px;
    height: auto;
}

.smart-class-image {
    width: 100%;
    height: 100%;
    max-height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    
   
}


/* Smart Class Slider Navigation */
.smart-class-nav-next,
.smart-class-nav-prev {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
}

.smart-class-nav-next:hover,
.smart-class-nav-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.smart-class-nav-next::after,
.smart-class-nav-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Smart Class Slider Pagination */
.smart-class-pagination {
    bottom: 120px !important;
}

.smart-class-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.smart-class-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 30px;
    border-radius: 5px;
}

.smart-class-text {
    background-color: #666E5A;
    display: flex;
    align-items: center;
    min-height: 600px;
    position: relative;
}

.smart-class-indicator {
    position: absolute;
    right: 70px;
    top: 50%;
   
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 10;
    
   
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d3d3d3;
    transition: all 0.3s ease;
    position: relative;
   left:-15px;
}

.indicator-dot.active {
    width: 18px;
    height: 18px;
    background-color: #ff8c00;
   
}

.indicator-dot.active::after {
    content: '';
    position: absolute;
    
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 2px;
    background-color: #ff8c00;
    left: calc(100% + 8px);
}

.smart-class-content {
    padding: 60px 50px;
    max-height: 600px;
    overflow-y: auto;
    width: 100%;
}

.smart-class-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 30px;
    line-height: 1.2;
}

.smart-class-subheading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c00;
   
    margin-bottom: 25px;
}

.smart-class-description {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    padding-right: 60px;
    margin-top: 20px;
}

.smart-class-description p {
    margin: 0;
    margin-top: 10px;
}

/* Custom scrollbar for smart class content */
.smart-class-content::-webkit-scrollbar {
    width: 6px;
}

.smart-class-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.smart-class-content::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.5);
    border-radius: 3px;
}

.smart-class-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 140, 0, 0.7);
}

@media (max-width: 991.98px) {
    .about-headline {
        font-size: 1.5rem;
    }
    
    .about-headline-bottom {
        font-size: 1.3rem;
    }
    
    .about-image-wrapper {
        padding: 15px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .about-image-wrapper-bottom {
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .smart-class-visual,
    .smart-class-text {
        min-height: 500px;
    }
    
    .smart-class-section {
        min-height: 500px;
    }
    
    .smart-class-content {
        padding: 40px 30px;
        max-height: none;
        overflow-y: visible;
    }
    
    .smart-class-image-wrapper {
        min-height: 500px;
    }
    
    .smart-class-slider {
        height: 500px;
        padding: 50px 50px 15px 50px;
        overflow: visible;
    }
    
    .smart-class-slider .swiper-wrapper {
        margin-top: 200px;
    }
    
    .smart-class-image {
        width: 100%;
        height: 100%;
        max-height: 200px;
        object-fit: cover;
    }
}

/* CBSE Education Section */
.cbse-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.cbse-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 0;
}

.cbse-highlight {
    color: #457425;
    font-weight: 700;
}

.cbse-text-content {
    padding-right: 50px;
    margin-left: -100px;
}

.cbse-paragraph-1 {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3333337b;
    margin-bottom: 25px;
    text-align: left;
    padding-right: 30px;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    margin-left: 40px;
}

.cbse-paragraph-1.animate {
    opacity: 1;
    transform: translateX(0);
}

.cbse-paragraph-2 {
    font-size: 1rem;
    line-height: 1.8;
    color: #33333396;
    padding-left: 20px;
    margin-left: 80px;
    text-align: right;
   
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cbse-paragraph-2.animate {
    opacity: 1;
    transform: translateX(0);
}

.cbse-images-wrapper {
    position: relative;
}

.cbse-image-top {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cbse-image-top.animate {
    opacity: 1;
    transform: translateX(0);
}

.cbse-image-bottom {
    position: relative;
    margin-top: -150px;
    z-index: 3;
    left: 300px;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cbse-image-bottom.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right-delay {
    transition-delay: 0.3s;
}

.slide-in-left-delay {
    transition-delay: 0.2s;
}

.slide-in-left-delay-2 {
    transition-delay: 0.4s;
}

.cbse-image {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cbse-image-top .cbse-image {
    max-height: 550px;
    max-width: 400px;
    object-fit: cover;
}

.cbse-image-bottom .cbse-image {
    max-height: 250px;
    max-width: 300px;
    object-fit: cover;
}

.cbse-bottom-headline {
    font-size: 2rem;
    font-weight: 600;
    color: #2d5016;
    font-style: italic;
    text-align: left;
    margin-top: -80px;
    margin-left: 70px;
    margin-bottom: 0;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cbse-bottom-headline.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive adjustments for CBSE section */
@media (max-width: 992px) {
    .cbse-headline {
        font-size: 2rem;
    }
    
    .cbse-text-content {
        margin-left: -50px;
    }
    
    .cbse-image-bottom {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .cbse-bottom-headline {
        font-size: 1.75rem;
        text-align: center;
        margin-top: 20px;
        margin-left: 25px;
    }
    
    .cbse-paragraph-2 {
        padding-left: 0;
        margin-left: 25px;
    }
}

@media (max-width: 768px) {
    .smart-class-section {
        min-height: 600px;
    }
    
    .smart-class-visual {
        min-height: 600px;
    }
    
    .smart-class-text {
        min-height: 450px;
    }
    
    .smart-class-image-wrapper {
        min-height: 600px;
    }
    
    .smart-class-content {
        padding: 40px 30px;
        max-height: none;
        overflow-y: visible;
    }
    
    .smart-class-description {
        margin-right: 20px;
    }
    
    .about-headline-bottom {
        text-align: left;
        margin-left: 150px;
    }
    
    .about-image-wrapper {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .about-image-wrapper-bottom {
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .cbse-headline {
        font-size: 1.75rem;
    }
    
    .cbse-text-content {
        margin-left: 0;
    }
    
    .cbse-paragraph-1,
    .cbse-paragraph-2 {
        font-size: 1rem;
    }
    
    .cbse-paragraph-2 {
        margin-left: 0;
    }
    
    .cbse-bottom-headline {
        font-size: 1.5rem;
        margin-top: 20px;
        margin-left: 0;
    }
    
    .cbse-image-bottom {
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .cbse-images-wrapper {
        position: relative;
        padding: 20px;
        border-radius: 20px;
        height: 500px;
        width: 100%;
        overflow: visible;
    }
    
    .cbse-image-top {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        width: 75%;
        max-width: 320px;
        margin: 0;
    }
    
    .cbse-image-top .cbse-image {
        border-radius: 20px;
        height: 280px;
        width: 100%;
        max-width: 320px;
        object-fit: cover;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
    
    .cbse-image-bottom {
        position: absolute;
        bottom: 20px;
        right: 20px;
        z-index: 3;
        width: 60%;
        max-width: 260px;
        margin: 0;
        left: auto;
    }
    
    .cbse-image-bottom .cbse-image {
        border-radius: 20px;
        height: 250px;
        width: 100%;
        max-width: 260px;
        object-fit: cover;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 768px) {
    .cbse-images-wrapper {
        position: relative;
        padding: 20px;
        border-radius: 20px;
        height: 500px;
        width: 100%;
        overflow: visible;
    }
    
    .cbse-image-top {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        width: 75%;
        max-width: 320px;
        margin: 0;
    }
    
    .cbse-image-top .cbse-image {
        border-radius: 20px;
        height: 280px;
        width: 100%;
        max-width: 320px;
        object-fit: cover;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
    
    .cbse-image-bottom {
        position: absolute;
        bottom: 20px;
        right: 20px;
        z-index: 3;
        width: 60%;
        max-width: 260px;
        margin: 0;
        left: auto;
    }
    
    .cbse-image-bottom .cbse-image {
        border-radius: 20px;
        height: 280px;
        width: 100%;
        max-width: 260px;
        object-fit: cover;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
}
@media(min-width:769px)and (max-width: 992px) {
    .cbse-images-wrapper {
        position: relative;
        padding: 20px;
        border-radius: 20px;
        height: 600px;
        width: 100%;
        overflow: visible;
    }
    
    .cbse-image-top {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        width: 75%;
        max-width: 420px;
        margin: 0;
    }
    
    .cbse-image-top .cbse-image {
        border-radius: 20px;
        height: 280px;
        width: 100%;
        max-width: 320px;
        object-fit: cover;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
    
    .cbse-image-bottom {
        position: absolute;
        bottom: 120px;
        right: 150px;
        z-index: 3;
        width: 60%;
        max-width: 260px;
        margin: 0;
        left: auto;
    }
    
    .cbse-image-bottom .cbse-image {
        border-radius: 20px;
        height: 280px;
        width: 100%;
        max-width: 260px;
        object-fit: cover;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
}

/* Educational Stages Section */
.educational-stages-section {
    background-color: #ffffff;
    padding: 0px 0;
}

.educational-stages-container {
    max-width: 1400px;
    padding-left: 60px;
    padding-right: 60px;
}

.stage-card {
    text-align: center;
    padding: 30px 40px;
    margin-bottom: 20px;
}

.stage-image-wrapper {
    margin: 0 auto 40px;
    border: 2px dashed #d3d3d3;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
}

/* Circle Shape */
.stage-image-circle {
    width: 320px;
    height: 350px;
    border-radius: 40% 40% 40% 40% ;
    padding: 12px;
}

.stage-image-circle .stage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40% 40% 40% 40% ;
}

/* Tilted Square Shape */
.stage-image-square {
    width: 320px;
    height: 350px;
    padding: 12px;
    transform: rotate(5deg);
}

.stage-image-square .stage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rounded Arch Shape */
.stage-image-arch {
    width: 320px;
    height: 350px;
    padding: 12px;
    border-radius: 50% 50% 0 0;
   
}

.stage-image-arch .stage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 50% 0 0;
}

.stage-title {
    font-size: 1.55rem;
    font-weight: 400;
    color: #000000a2;
    margin-bottom: 20px;
    text-align: center;
}

.stage-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333a4;
    text-align: center;
    margin: 0;
}

/* Responsive adjustments for Educational Stages section */
@media (max-width: 992px) {
    .stage-image-circle,
    .stage-image-square,
    .stage-image-arch {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .educational-stages-section {
        padding: 60px 0;
    }
    
    .educational-stages-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .stage-card {
        margin-bottom: 10px;
        padding: 15px 10px;
    }
    
    .stage-image-wrapper {
        margin: 0 auto 15px;
    }
    
    .educational-stages-section .row {
        --bs-gutter-y: 0.5rem;
        --bs-gutter-x: 0.5rem;
    }
    
    .stage-image-circle,
    .stage-image-square,
    .stage-image-arch {
        width: 280px;
        height: 280px;
    }
    
    .stage-title {
        font-size: 1.2rem;
    }
    
    .stage-description {
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .stage-image-wrapper {
        margin: 0 auto 25px;
        max-width: 300px;
    }

    .stage-image-circle,
    .stage-image-square,
    .stage-image-arch {
        width: 260px;
        height: 260px;
        padding: 10px;
    }
}

/* Academic Programs Section */
.academic-programs-section {
    background-color: #ffffff;
    padding: 0px 0;
}

/* Photo Gallery Section */
.photo-gallery-section {
    background-color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.gallery-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 15px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-heading {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b5e20;
    margin: 0;
    text-align: center;
}

.gallery-cta-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #335502;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 1;
}

.gallery-cta-button i {
    font-size: 1.5rem;
    color: #FFA200;
}

.gallery-cta-button:hover {
    background-color: #2e7d32;
    transform: translateY(-50%) scale(1.1);
    color: #ffffff;
}

.gallery-cta-button:hover i {
    color: #ffffff;
}

.gallery-slider {
    position: relative;
    padding: 40px 0;
    min-height: 400px;
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.gallery-collage {
    position: relative;
    display: flex;
    align-items: center;
}

.gallery-slider .swiper-slide {
    width: auto;
    height: auto;
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}

.gallery-photo {
    position: relative;
    width: 260px;
    height: 280px;
    border: 3px solid #65762B;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, z-index 0.3s ease;
    background-color: #ffffff;
   
    flex-shrink: 0;
}

.gallery-photo:hover {
    z-index: 100;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.gallery-photo:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Positioning for scrapbook effect - overlapping photos horizontally */
.gallery-collage .swiper-slide:nth-child(1) .gallery-photo {
    margin-top: -15px;
    margin-left: 0;
    z-index: 1;
}

.gallery-collage .swiper-slide:nth-child(2) .gallery-photo {
    margin-top: 8px;
    margin-left: -0px;
    z-index: 2;
}

.gallery-collage .swiper-slide:nth-child(3) .gallery-photo {
    margin-top: -12px;
    margin-left: -5px;
    z-index: 3;
}

.gallery-collage .swiper-slide:nth-child(4) .gallery-photo {
    margin-top: 15px;
    margin-left: -0px;
    z-index: 4;
}

.gallery-collage .swiper-slide:nth-child(5) .gallery-photo {
    margin-top: -8px;
    margin-left: -0px;
    z-index: 5;
}

.gallery-collage .swiper-slide:nth-child(6) .gallery-photo {
    margin-top: 12px;
    margin-left: -5px;
    z-index: 6;
}

.gallery-collage .swiper-slide:nth-child(7) .gallery-photo {
    margin-top: -18px;
    margin-left: -0px;
    z-index: 7;
}

.gallery-collage .swiper-slide:nth-child(8) .gallery-photo {
    margin-top: 5px;
    margin-left: -0px;
    z-index: 8;
}

.gallery-collage .swiper-slide:nth-child(9) .gallery-photo {
    margin-top: -12px;
    margin-left: -5px;
    z-index: 9;
}

.gallery-collage .swiper-slide:nth-child(10) .gallery-photo {
    margin-top: 15px;
    margin-left: -0px;
    z-index: 10;
}

.gallery-collage .swiper-slide:nth-child(11) .gallery-photo {
    margin-top: -8px;
    margin-left: -0px;
    z-index: 11;
}

.gallery-collage .swiper-slide:nth-child(12) .gallery-photo {
    margin-top: 12px;
    margin-left: -35px;
    z-index: 12;
}

.gallery-collage .swiper-slide:nth-child(13) .gallery-photo {
    margin-top: -18px;
    margin-left: -0px;
    z-index: 13;
}

.gallery-collage .swiper-slide:nth-child(14) .gallery-photo {
    margin-top: 5px;
    margin-left: -0px;
    z-index: 14;
}

.gallery-collage .swiper-slide:nth-child(15) .gallery-photo {
    margin-top: -12px;
    margin-left: -5px;
    z-index: 15;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-photo {
        width: 180px;
        height: 220px;
    }
    
    .gallery-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .gallery-photo {
        width: 160px;
        height: 200px;
    }
    
    .gallery-heading {
        font-size: 2rem;
    }
    
    .gallery-cta-button {
        width: 50px;
        height: 50px;
    }
    
    .gallery-cta-button i {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .photo-gallery-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .photo-gallery-section {
        padding: 30px 0 5px 0 !important;
        margin-bottom: 0 !important;
    }
    
    .photo-gallery-section.py-5 {
        padding-top: 30px !important;
        padding-bottom: 5px !important;
    }
    
    .gallery-heading {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .gallery-cta-button {
        right: 10px;
        width: 50px;
        height: 50px;
    }
    
    .gallery-photo {
        width: 160px;
        height: 200px;
    }
    
    .gallery-slider {
        padding: 30px 10px;
    }
    
    .gallery-collage .swiper-slide .gallery-photo {
        margin-left: -20px !important;
    }
    
    .gallery-collage .swiper-slide:first-child .gallery-photo {
        margin-left: 0 !important;
    }
}

@media (max-width: 576px) {
    .left-rail {
        display: none !important;
    }
    
    .content-offset {
        margin-left: 0 !important;
    }
    
    .gallery-photo {
        width: 120px;
        height: 150px;
    }
    
    .gallery-heading {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .gallery-cta-button {
        right: 5px;
        width: 45px;
        height: 45px;
    }
    
    .gallery-cta-button i {
        font-size: 1rem;
    }
}

/* Admissions Spotlight Section */
.admissions-spotlight-section {
    position: relative;
    background:  url('assets_kgs/admissinon.png') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
    height:100vh;
   
}

.admissions-spotlight-section::before,
.admissions-spotlight-section::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border: 4px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    z-index: 0;
}

.admissions-spotlight-section::before {
    top: -60px;
    left: -60px;
}

.admissions-spotlight-section::after {
    bottom: -80px;
    right: -40px;
}

.admissions-spotlight-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-top: 3.25rem;
    position: relative;
    z-index: 1;
}

.admissions-spotlight-text {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.637);
    margin-top: 2.75rem;
}

.admissions-spotlight-btn {
    font-weight: 500;
    padding: 0.4rem 2.6rem;
    border-radius: 22px;
    background-color: #FBB135;
    margin-bottom: 0.25rem;
    margin-top: 2.75rem;
}

.admissions-spotlight-cards {
    position: relative;
    z-index: 1;
    margin-top: 0.5rem !important;
}

.admissions-spotlight-section .container {
    padding-top: 0;
    padding-bottom: 0;
}

/* Allow absolute-positioned circles inside grid columns */
.admissions-spotlight-cards > [class^="col-"],
.admissions-spotlight-cards > [class*=" col-"] {
    position: relative;
}

.admissions-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.admissions-circle span {
    color: #ffffff;
}

.admissions-circle:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.admissions-circle--image {
    padding: 0;
    background: rgba(255, 255, 255, 0.25);
    overflow: hidden;
}

.admissions-circle--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Lift the first photo circle upwards */
.admissions-circle--photo-one {
    position: absolute;
    top: -160px;
    left: -20%;
  
    z-index: 2;
}

.admissions-circle--visit{
    position: relative;
    left:20%;
    top:-200px;
    transform: translateX(-50%);
    background-color: #D2DCAE;
}
.admissions-circle--eligibility{
    position: relative;
    left:50%;
    top:-140px; 
    background-color: #AEDCBE;
}
.admissions-circle--photo-two{
    position: relative;
    left:105%;
    top:-160px; 
   
}
.admissions-circle--fee{
    position: absolute;
    top: -410px ;
    left: 90%;
    transform: translateX(50%);
    z-index: 2;
    background-color: #DCC0AE;
}

@media (max-width: 992px) {
    .admissions-circle {
        width: 145px;
        height: 145px;
        font-size: 0.9rem;
    }

    .admissions-circle--photo-one {
        top: -20px;
    }
}


@media (max-width: 576px) {
    .admissions-spotlight-section {
        padding: 15px 0;
        height: 105vh;
    }
    
    .admissions-spotlight-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .admissions-spotlight-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .admissions-spotlight-section .col-lg-8 {
        padding: 0 5px;
        margin-bottom: 15px;
    }
    
    .admissions-spotlight-section .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .admissions-spotlight-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        padding: 0 5px;
        line-height: 1.3;
    }
    
    .admissions-spotlight-title .year {
        display: block;
        margin: 0.25rem 0;
    }
    
    .admissions-spotlight-text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        padding: 0 5px;
    }

    .admissions-spotlight-btn {
        padding: 0.45rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        width: auto;
        display: inline-block;
    }
    
    .admissions-spotlight-cards {
        margin-top: 0.5rem !important;
        gap: 0.75rem;
    }
    
    .admissions-spotlight-cards .row {
        margin-left: -0.375rem;
        margin-right: -0.375rem;
    }
    
    .admissions-spotlight-cards [class*="col-"] {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        padding-left: 0.375rem;
        padding-right: 0.375rem;
        margin-bottom: 0.75rem;
    }

    .admissions-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
        padding: 0.75rem;
    }
    
    .admissions-circle span {
        font-size: 0.75rem;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .admissions-spotlight-section.content-offset {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    
    .admissions-circle--fee {
        position: relative;
        left: 20%;
        top:-140% ;
        transform: none;
        margin: 0 auto;
    }
    .admissions-circle--visit {
        position: relative;
        left: -30%;
        top:-300%  !important;
        transform: none;
        margin: 0 auto;
        margin-top: -100px;
    }
    .admissions-circle--photo-one {
        position: relative;
        left: -20%;
        top: 20%;
        transform: none;
        margin: 0 auto;
    }
    .admissions-circle--photo-two {
        position: relative;
        left: 55%;
        top: -95%;
        transform: none;
        margin: 0 auto;
    }
    
    .admissions-circle--eligibility {
        position: relative;
        left: 30%;
        top: -130%;
        transform: none;
        margin: 0 auto;
    }
    
    .admissions-spotlight-section::before,
    .admissions-spotlight-section::after {
        width: 150px;
        height: 150px;
    }

    .admissions-circle--photo-one,
    .admissions-circle--photo-two {
        width: clamp(70px, 30vw, 105px);
        height: clamp(70px, 30vw, 105px);
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .admissions-circle--photo-one img,
    .admissions-circle--photo-two img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
    
    .admissions-spotlight-section::before {
        top: -40px;
        left: -40px;
    }
    
    .admissions-spotlight-section::after {
        bottom: -50px;
        right: -30px;
    }
}
@media(min-width:577px) and (max-width: 768px) {
    .admissions-spotlight-section {
        padding: 15px 0;
        height:95vh;
    }
    
    .admissions-spotlight-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .admissions-spotlight-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .admissions-spotlight-section .col-lg-8 {
        padding: 0 5px;
        margin-bottom: 15px;
    }
    
    .admissions-spotlight-section .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .admissions-spotlight-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        padding: 0 5px;
        line-height: 1.3;
    }
    
    .admissions-spotlight-title .year {
        display: block;
        margin: 0.25rem 0;
    }
    
    .admissions-spotlight-text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        padding: 0 5px;
    }
    .admissions-circle--photo-one,
    .admissions-circle--photo-two {
        width: clamp(90px, 32vw, 125px);
        height: clamp(90px, 32vw, 125px);
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .admissions-circle--photo-one img,
    .admissions-circle--photo-two img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .admissions-spotlight-btn {
        padding: 0.45rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        width: auto;
        display: inline-block;
    }
    
    .admissions-spotlight-cards {
        margin-top: 0.5rem !important;
        gap: 0.75rem;
    }
    
    .admissions-spotlight-cards .row {
        margin-left: -0.375rem;
        margin-right: -0.375rem;
    }
    
    .admissions-spotlight-cards [class*="col-"] {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        padding-left: 0.375rem;
        padding-right: 0.375rem;
        margin-bottom: 0.75rem;
    }

    .admissions-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
        padding: 0.75rem;
    }
    
    .admissions-circle span {
        font-size: 0.75rem;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .admissions-spotlight-section.content-offset {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    
    .admissions-circle--fee {
        position: relative;
        left: 20%;
        top:-220% ;
        transform: none;
        margin: 0 auto;
    }
    .admissions-circle--visit {
        position: relative;
        left: -40%;
        top:-520%  !important;
        transform: none;
        margin: 0 auto;
        margin-top: -140px;
    }
    .admissions-circle--photo-one {
        position: relative;
        left: -10%;
        top: -40%;
        transform: none;
        margin: 0 auto;
    }
    .admissions-circle--photo-two {
        position: relative;
        left: 60%;
        top: -165%;
        transform: none;
        margin: 0 auto;
    }
    
    .admissions-circle--eligibility {
        position: relative;
        left: 47%;
        top: -180%;
        transform: none;
        margin: 0 auto;
    }
    
    .admissions-spotlight-section::before,
    .admissions-spotlight-section::after {
        width: 150px;
        height: 150px;
    }
    
    .admissions-spotlight-section::before {
        top: -40px;
        left: -40px;
    }
    
    .admissions-spotlight-section::after {
        bottom: -50px;
        right: -30px;
    }
}
@media(min-width:769px) and (max-width: 992px) {
    .admissions-spotlight-section {
        padding: 15px 0;
        height:85vh;
    }
    
    .admissions-spotlight-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .admissions-spotlight-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .admissions-spotlight-section .col-lg-8 {
        padding: 0 5px;
        margin-bottom: 15px;
    }
    
    .admissions-spotlight-section .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .admissions-spotlight-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        padding: 0 5px;
        line-height: 1.3;
    }
    
    .admissions-spotlight-title .year {
        display: block;
        margin: 0.25rem 0;
    }
    
    .admissions-spotlight-text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        padding: 0 5px;
    }

    .admissions-spotlight-btn {
        padding: 0.45rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        width: auto;
        display: inline-block;
    }
    
    .admissions-spotlight-cards {
        margin-top: 0.5rem !important;
        gap: 0.75rem;
    }
    
    .admissions-spotlight-cards .row {
        margin-left: -0.375rem;
        margin-right: -0.375rem;
    }
    
    .admissions-spotlight-cards [class*="col-"] {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        padding-left: 0.375rem;
        padding-right: 0.375rem;
        margin-bottom: 0.75rem;
    }

    .admissions-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
        padding: 0.75rem;
    }
    
    .admissions-circle span {
        font-size: 0.75rem;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .admissions-spotlight-section.content-offset {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    
    .admissions-circle--fee {
        position: relative;
        left: 20%;
        top:-220% ;
        transform: none;
        margin: 0 auto;
    }
    .admissions-circle--visit {
        position: relative;
        left: -40%;
        top:-520%  !important;
        transform: none;
        margin: 0 auto;
        margin-top: -140px;
    }
    .admissions-circle--photo-one {
        position: relative;
        left: -10%;
        top: -40%;
        transform: none;
        margin: 0 auto;
    }
    .admissions-circle--photo-two {
        position: relative;
        left: 60%;
        top: -165%;
        transform: none;
        margin: 0 auto;
    }
    
    .admissions-circle--eligibility {
        position: relative;
        left: 47%;
        top: -180%;
        transform: none;
        margin: 0 auto;
    }
    
    .admissions-spotlight-section::before,
    .admissions-spotlight-section::after {
        width: 150px;
        height: 150px;
    }
    
    .admissions-spotlight-section::before {
        top: -40px;
        left: -40px;
    }
    
    .admissions-spotlight-section::after {
        bottom: -50px;
        right: -30px;
    }

    .educational-stages-section {
        margin-left: -80px;
    }
}
@media(min-width:993px) and (max-width: 1200px) {
    .cbse-image-top {
        max-width: 360px;
    }

    .cbse-image-top .cbse-image {
        max-width: 340px;
        height: 260px;
    }
    .cbse-paragraph-1 {
        margin-left: 50px;
    }

    .cbse-image-bottom {
        max-width: 260px;
        left:210px;
    }

    .cbse-image-bottom .cbse-image {
        max-width: 260px;
        height: 220px;
    }

    .admissions-spotlight-section {
        padding: 15px 0;
        height:85vh;
    }
    
    .admissions-spotlight-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .admissions-spotlight-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .admissions-spotlight-section .col-lg-8 {
        padding: 0 5px;
        margin-bottom: 15px;
    }
    
    .admissions-spotlight-section .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .admissions-spotlight-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        padding: 0 5px;
        line-height: 1.3;
    }
    
    .admissions-spotlight-title .year {
        display: block;
        margin: 0.25rem 0;
    }
    
    .admissions-spotlight-text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        padding: 0 5px;
    }

    .admissions-spotlight-btn {
        padding: 0.45rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        width: auto;
        display: inline-block;
    }
    
    .admissions-spotlight-cards {
        margin-top: 0.5rem !important;
        gap: 0.75rem;
    }
    
    .admissions-spotlight-cards .row {
        margin-left: -0.375rem;
        margin-right: -0.375rem;
    }
    
    .admissions-spotlight-cards [class*="col-"] {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        padding-left: 0.375rem;
        padding-right: 0.375rem;
        margin-bottom: 0.75rem;
    }

    .admissions-circle {
        width: 140px;
        height: 140px;
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
        padding: 0.75rem;
    }
    
    .admissions-circle span {
        font-size: 0.75rem;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .admissions-spotlight-section.content-offset {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    
    .admissions-circle--fee {
        position: relative;
        left: 20%;
        top:-170% ;
        transform: none;
        margin: 0 auto;
    }
    .admissions-circle--visit {
        position: relative;
        left: -40%;
        top:-520%  !important;
        transform: none;
        margin: 0 auto;
        margin-top: -150px;
    }
    .admissions-circle--photo-one {
        position: relative;
        left: -10%;
        top: -40%;
        transform: none;
        margin: 0 auto;
    }
    .admissions-circle--photo-two {
        position: relative;
        left: 60%;
        top: -145%;
        transform: none;
        margin: 0 auto;
    }
    
    .admissions-circle--eligibility {
        position: relative;
        left: 47%;
        top: -150%;
        transform: none;
        margin: 0 auto;
    }
    
    .admissions-spotlight-section::before,
    .admissions-spotlight-section::after {
        width: 150px;
        height: 150px;
    }
    
    .admissions-spotlight-section::before {
        top: -40px;
        left: -40px;
    }
    
    .admissions-spotlight-section::after {
        bottom: -50px;
        right: -30px;
    }
    .stage-image-wrapper {
        margin: 0 auto 25px;
        max-width: 300px;
    }

    .stage-image-circle,
    .stage-image-square,
    .stage-image-arch {
        width: 260px;
        height: 260px;
        padding: 10px;
    }
}

.programs-visual-wrapper {
    position: relative;
    min-height: 500px;
}

.programs-image-collage {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Top Image - Partial Circle */
.programs-image-top {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
  
    padding: 10px;
   
    z-index: 2;
}

.programs-image-top .programs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Bottom Image - Partial Circle (Overlapping) */
.programs-image-bottom {
    position: absolute;
    top: -130px;
    left: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    padding: 10px;
    background-color: #ffffff;
    z-index: 1;
}

.programs-image-bottom .programs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Decorative Burst Element */
.programs-burst {
    position: absolute;
    top: 140px;
    left: 40%;
    z-index: 3;
}

.burst-image {
    width: 120px;
    height: auto;
    object-fit: contain;
    margin-left: 180px;
    rotate: 0deg;
    margin-top: -330px;
}

/* Rating Badge */
.programs-rating-badge {
    position: absolute;
    top:290px;
    bottom: 0px;
    left: 25%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 0, 0, 0.548);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 3;
}

.rating-number {
    font-size: 30px;
    font-weight: 700;
    color: #1a365d;
    line-height: 1;
}

.rating-star {
    color: #f4b400;
    font-size: 30px;
    line-height: 1;
}

/* Right Content Section */
.programs-content {
    padding-left: 60px;
    position: relative;
    min-height: 500px;
}

.programs-heading {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.programs-separator {
    width: 10px;
    height: 10px;
    background-color: #dc3545;
    border-radius: 50%;
    margin-bottom: 20px;
    display: inline-block;
}

.programs-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 0;
    font-weight: 400;
}

/* CTA Button */
.programs-cta-button {
    position: absolute;
    bottom: 140px;
    right: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #2d5016;
    border-radius: 50%;
    color: #ff8c00;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 28px;
}

.programs-cta-button:hover {
    background-color: #1a365d;
    transform: scale(1.1);
    color: #ff8c00;
}

/* Responsive adjustments for Academic Programs section */
@media (max-width: 992px) {
    .academic-programs-section {
        padding: 60px 0;
    }
    
    .programs-cta-button {
        bottom: 180px;
        right: 100px;
    }
    
    .programs-content {
        padding-left: 0;
        padding-top: 40px;
        text-align: center;
    }
    
    .programs-heading {
        font-size: 2.5rem;
    }
    
    .programs-image-top,
    .programs-image-bottom {
        width: 220px;
        height: 220px;
    }
    
    .programs-image-bottom {
        top: 140px;
    }
}



@media (max-width: 576px) {
    .academic-programs-section {
        padding: 0px 0;
        margin-top: -100px;
    }
    
    .academic-programs-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .academic-programs-section .col-lg-6 {
        margin-bottom: 20px;
    }
    
    .programs-visual-wrapper {
        min-height: 350px;
        margin-bottom: 15px;
    }
    
    .programs-heading {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .programs-description {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .programs-content {
        padding: 15px 0;
        min-height: auto;
    }
    
    .programs-cta-button {
        bottom: auto;
        right: auto;
        transform: none;
        position: relative;
        margin: 15px auto 0;
        display: block;
        padding-top: 12px;
    }
    
    .programs-image-bottom
              {
        width: 45vw;
        max-width: 220px;
        height: 45vw;
        max-height: 220px;
        min-width: 150px;
        min-height: 150px;
    }
    .programs-image-top {
        width: 35vw;
        max-width: 180px;
        height: 45vw;
        max-height: 180px;
        min-width: 150px;
        min-height: 150px;
    }
    
    .programs-image-top {
        top: 135px;
        left: 40%;
       
        
    }
    
    .programs-image-bottom {
        top: 55px;
        left: 10%;
        
    }
    
    .programs-burst {
        top: 60px;
    }
    
    .burst-image {
        width: 80px;
        margin-top: 0px;
        margin-left:80%;
    }
    
    .programs-rating-badge {
        width: 70px;
        height: 70px;
        top: 290px;
        left:80px;
    }
    
    .rating-number,
    .rating-star {
        font-size: 18px;
    }
}

@media(min-width:577px)and (max-width: 768px) {
    .academic-programs-section {
        padding: 0px 0;
        margin-top: -100px;
    }
    
    .academic-programs-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .academic-programs-section .col-lg-6 {
        margin-bottom: 20px;
    }
    
    .programs-visual-wrapper {
        min-height: 350px;
        margin-bottom: 15px;
    }
    
    .programs-heading {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }
    
    .programs-description {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .programs-content {
        padding: 15px 0;
        min-height: auto;
    }
    
    .programs-cta-button {
        bottom: auto;
        right: auto;
        transform: none;
        position: relative;
        margin: 15px auto 0;
        display: block;
        padding-top: 12px;
    }
    
    .programs-image-bottom
              {
        width: 45vw;
        max-width: 220px;
        height: 45vw;
        max-height: 220px;
        min-width: 150px;
        min-height: 150px;
    }
    .programs-image-top {
        width: 35vw;
        max-width: 180px;
        height: 45vw;
        max-height: 180px;
        min-width: 150px;
        min-height: 150px;
    }
    
    .programs-image-top {
        top: 135px;
        left: 40%;
       
        
    }
    
    .programs-image-bottom {
        top: 55px;
        left: 10%;
        
    }
    
    .programs-burst {
        top: 60px;
    }
    
    .burst-image {
        width: 80px;
        margin-top: 0px;
        margin-left:50%;
    }
    
    .programs-rating-badge {
        width: 70px;
        height: 70px;
        top: 290px;
        left:80px;
    }
    
    .rating-number,
    .rating-star {
        font-size: 18px;
    }
}

@media (min-width:769px) and (max-width: 992px) {
    .academic-programs-section {
        padding: 0px 0;
        margin-top: -130px;
    }
    
    .academic-programs-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .academic-programs-section .col-lg-6 {
        margin-bottom: 20px;
    }
    
    .programs-visual-wrapper {
        min-height: 350px;
        margin-bottom: 15px;
    }
    
    .programs-heading {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }
    
    .programs-description {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .programs-content {
        padding: 15px 0;
        min-height: auto;
    }
    
    .programs-cta-button {
        bottom: auto;
        right: auto;
        transform: none;
        position: relative;
        margin: 15px auto 0;
        display: block;
    }
    
    .programs-image-bottom
              {
        width: 45vw;
        max-width: 320px;
        height: 45vw;
        max-height: 320px;
        min-width: 150px;
        min-height: 150px;
    }
    .programs-image-top {
        width: 35vw;
        max-width: 240px;
        height: 45vw;
        max-height: 240px;
        min-width: 150px;
        min-height: 150px;
    }
    
    .programs-image-top {
        top: 135px;
        left: 45%;
       
        
    }
    
    .programs-image-bottom {
        top: 55px;
        left: 10%;
        
    }
    
    .programs-burst {
        top: 60px;
    }
    
    .burst-image {
        width: 90px;
        margin-top: 0px;
        margin-left:85%;
    }
    
    .programs-rating-badge {
        width: 80px;
        height: 80px;
        top: 380px;
        left:320px;
    }
    
    .rating-number,
    .rating-star {
        font-size: 18px;
    }
    .programs-content{
        margin-top: 70px;
    }
    
}

/* Stay Updated Section */
.stay-updated-section {
    background-color: #ffffff;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-left: 0;
}

.stay-updated-section .container {
    padding-left: 90px;
    padding-right: 40px;
}

.stay-updated-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    width: 100%;
    text-align: left;
}

.stay-updated-label {
    font-size: 13px;
    font-weight: 500;
    color: #faf7f786;
    white-space: nowrap;
    margin: 0;
    margin-right: 310px;
}

.stay-updated-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 8px;
    width: 100%;
    max-width: 320px;
    margin-right: 60px;
}

.stay-updated-input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
}

.stay-updated-input::placeholder {
    color: #999;
}

.stay-updated-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: #0b1f3d;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.3s ease;
}

.stay-updated-button:hover {
    background: #1a3d6b;
}

.stay-updated-arrow {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Footer */
.site-footer {
    color: #fff;
    margin-top: 0;
    width: 100%;
    margin-left: 0;
}

.footer-hero {
    position: relative;
    background: none;
}

.footer-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #060f1c url('assets_kgs/footerlast.png') center/cover no-repeat;
    filter: brightness(50%);
    z-index: 0;
}

/* Visible separator line just below the brand/content area */
.footer-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    filter: brightness(100%);
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    padding: 50px 40px 30px 40px;
    align-items: start;
   
    margin: 0 auto;
}

.footer-top {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 10px;
}

.footer-brand {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
    margin: 0;
    color: #C1D89F;
    display: inline-block;
    padding-bottom: 8px;
    position: relative;
    grid-column: 1 / -1;
    white-space: nowrap;
    margin-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% + 60vw);
    height: 2px;
    background: #C1D89F;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-center {
    color: #fff;
    text-align: right;
    margin-top: -10px;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(15px, 3vw, 30px);
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.footer-column h5 {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 300;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.footer-column ul li i {
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    transition: color 0.2s ease;
    display: inline-block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    white-space: normal;
}

.footer-column a:hover {
    color: #f8c125;
}

.footer-school {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.footer-address,
.footer-phone,
.footer-mail {
    margin: 8px 0;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-inquiry {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    overflow: hidden;
    margin-left:50%;
}

.inquiry-label {
    font-size: 14px;
    opacity: 0.7;
    white-space: nowrap;
}

.inquiry-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 6px 6px;
    width: 320px;
}

.inquiry-box input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 10px 12px;
    font-size: 14px;

}

.inquiry-send {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: #0b1f3d;
    color: #fff;
    cursor: pointer;
}

.footer-round-image {
    position: relative;
    right: 20px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 0;

}

.footer-round-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.footer-bottom {
    display: flex;
    align-items: center;
    background: #3D4B28;
    color: #fff;
    padding: 15px 40px;
}

.footer-bottom-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom .footer-social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom .footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-bottom .footer-social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-bottom .footer-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.copyright-section {
    text-align: right;
    flex-shrink: 0;
}

.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Footer Styles */
@media(min-width:993px) and (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 30px;
        padding: 40px 30px 25px 30px;
    }
    
    .footer-title {
        font-size: 36px;
    }
    .about-image-wrapper{
        margin-left: 10px;
    }
}

@media(min-width:767px) and (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px 25px 30px;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(15px, 2.5vw, 20px);
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .footer-column {
        min-width: 0;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .footer-column h5 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-center {
        text-align: center;
        flex: initial;
        display: block;
        justify-content: center;
    }
}

/* Responsive Footer Title for Mobile Views */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
        font-size: clamp(24px, 6vw, 36px);
        white-space: normal;
        width: 100%;
        display: block;
        margin: 0 auto 10px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
        font-size: clamp(20px, 5.5vw, 32px);
        white-space: normal;
        width: 100%;
        display: block;
        margin: 0 auto 10px;
        letter-spacing: 1px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        max-width: 250px;
    }
    
    .footer-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        padding: 30px 15px 20px 15px;
        justify-content: center;
        align-items: flex-start;
    }
    
    .footer-columns {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }
    
    .footer-contact {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer-column {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-column h4,
    .footer-column h5 {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 12px;
    }
    
    .footer-column ul {
        gap: 8px;
        align-items: center;
        text-align: center;
    }
    
    .footer-column ul li {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
        line-height: 1.5;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .footer-column a {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .footer-column span {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
        text-align: center;
    }
    
    .footer-column ul li i {
        text-align: center;
    }

    .stay-updated-content {
        align-items: center;
        text-align: center;
        gap: 6px;
        width: 100%;
    }

    .stay-updated-label {
        margin-right: 0;
        width: 100%;
        font-size: clamp(0.8rem, 3.2vw, 1rem);
        white-space: normal;
    }

    .stay-updated-box {
        margin-right: 0;
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
    }

    .stay-updated-input {
        font-size: clamp(0.8rem, 3.2vw, 1rem);
        width: 100%;
    }

    .footer-bottom {
        padding: 12px 15px;
    }

    .footer-bottom-container,
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-bottom .footer-social-icons {
        justify-content: center;
        gap: 10px;
    }

    .footer-bottom .footer-social-icon {
        width: 22px;
        height: 22px;
    }

    .copyright-section {
        text-align: center;
        width: 100%;
        margin-top: 4px;
    }

    .copyright-text {
        font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    }
}

.white1{
    background-color: #fffbfb;
    height:10px;
    width: 70px;
    position: absolute;
    top:375px;
    left: 80px;
}
.white2{
    background-color: #ffffff;
    height:120px;
    width: 10px;
    position: absolute;
    top:145px;
    left: 357px;
    rotate: 5deg;
}
.white3{
    background-color: #ffffff;
    height:80px;
    width: 10px;
    position: absolute;
    top:95px;
    left: 350px;
    rotate: -5deg;
}

.white4{
    background-color: #ffffff;
    height:10px;
    width: 80px;
    position: absolute;
    top:730px;
    left: 330px;
}

/* Hide white decorative elements on mobile and tablet */
@media (max-width: 1200px) {
    .white1,
    .white2,
    .white3,
    .white4 {
        display: none;
    }
}
.year{
    color:#E4FF61;
}

/* Footer */
.site-footer {
    color: #fff;
    margin-top: 0;
    width: 100%;
    margin-left: 0;
}

.footer-hero {
    position: relative;
    background: none;
}

.footer-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #060f1c url('assets_kgs/footerlast.png') center/cover no-repeat;
    filter: brightness(50%);
    z-index: 0;
}

/* Visible separator line just below the brand/content area */
.footer-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    filter: brightness(100%);
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    padding: 50px 40px 30px 40px;
    align-items: start;
   
    margin: 0 auto;
}

.footer-top {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 10px;
}

.footer-brand {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
    margin: 0;
    color: #C1D89F;
    display: inline-block;
    padding-bottom: 8px;
    position: relative;
    grid-column: 1 / -1;
    white-space: nowrap;
    margin-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% + 60vw);
    height: 2px;
    background: #C1D89F;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-center {
    color: #fff;
    text-align: right;
    margin-top: -10px;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(10px, 2vw, 25px);
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.footer-column h5 {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 300;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul li {
    position: relative;
    padding-left: 12px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    display: block;
}

.footer-column ul li:not(.contact-item)::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
}

.footer-column ul li.contact-item {
    padding-left: 0;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.footer-column ul li.contact-item::before {
    display: none;
}

.footer-column ul li.contact-item i {
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    transition: color 0.2s ease;
    display: inline-block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    white-space: normal;
}

.footer-column a:hover {
    color: #f8c125;
}

.footer-school {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.footer-address,
.footer-phone,
.footer-mail {
    margin: 8px 0;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-inquiry {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    overflow: hidden;
    margin-left:50%;
}

.inquiry-label {
    font-size: 14px;
    opacity: 0.7;
    white-space: nowrap;
}

.inquiry-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 6px 6px;
    width: 320px;
}

.inquiry-box input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 10px 12px;
    font-size: 14px;

}

.inquiry-send {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: #0b1f3d;
    color: #fff;
    cursor: pointer;
}

.footer-round-image {
    position: relative;
    right: 20px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 0;

}

.footer-round-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.footer-bottom {
    display: flex;
    align-items: center;
    background: #3D4B28;
    color: #fff;
    padding: 15px 40px;
}

.footer-bottom-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom .footer-social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom .footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-bottom .footer-social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-bottom .footer-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.copyright-section {
    text-align: right;
    flex-shrink: 0;
}

.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Footer Styles */
@media(min-width:993px) and (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 30px;
        padding: 40px 30px 25px 30px;
    }
    
    .footer-title {
        font-size: 36px;
    }
    .about-image-wrapper{
        margin-left: 10px;
    }
}

@media(min-width:767px) and (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px 25px 30px;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(15px, 2.5vw, 20px);
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
        align-items: flex-start;
    }
    
    .footer-column {
        min-width: 0;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .footer-column h5 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-center {
        text-align: center;
        flex: initial;
        display: block;
        justify-content: center;
    }
}

/* Responsive Footer Title for Mobile Views */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
        font-size: clamp(24px, 6vw, 36px);
        white-space: normal;
        width: 100%;
        display: block;
        margin: 0 auto 10px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
        font-size: clamp(20px, 5.5vw, 32px);
        white-space: normal;
        width: 100%;
        display: block;
        margin: 0 auto 10px;
        letter-spacing: 1px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        max-width: 250px;
    }
    
    .footer-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        padding: 30px 15px 20px 15px;
        justify-content: center;
        align-items: flex-start;
    }
    
    .footer-columns {
        flex: 1 1 100%;
        min-width: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
        align-items: flex-start;
        justify-content: center;
        justify-items: start;
    }
    
    .footer-contact {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .footer-column {
        text-align: left;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-column h4,
    .footer-column h5 {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 12px;
    }
    
    .footer-column ul {
        gap: 8px;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-column ul li {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem);
        line-height: 1.5;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
        width: 100%;
    }

    .footer-column a {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem);
        text-align: left;
        display: block;
        width: 100%;
    }

    .footer-column span {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem);
        text-align: left;
        display: block;
    }
    
    .footer-column ul li i {
        text-align: center;
    }

    .stay-updated-content {
        align-items: center;
        text-align: center;
        gap: 6px;
        width: 100%;
    }

    .stay-updated-label {
        margin-right: 0;
        width: 100%;
        font-size: clamp(0.8rem, 3.2vw, 1rem);
        white-space: normal;
    }

    .stay-updated-box {
        margin-right: 0;
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
    }

    .stay-updated-input {
        font-size: clamp(0.8rem, 3.2vw, 1rem);
        width: 100%;
    }

    .footer-bottom {
        padding: 12px 15px;
    }

    .footer-bottom-container,
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-bottom .footer-social-icons {
        justify-content: center;
        gap: 10px;
    }

    .footer-bottom .footer-social-icon {
        width: 22px;
        height: 22px;
    }

    .copyright-section {
        text-align: center;
        width: 100%;
        margin-top: 4px;
    }

    .copyright-text {
        font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    }
}

.white1{
    background-color: #fffbfb;
    height:10px;
    width: 70px;
    position: absolute;
    top:375px;
    left: 80px;
}
.white2{
    background-color: #ffffff;
    height:120px;
    width: 10px;
    position: absolute;
    top:145px;
    left: 357px;
    rotate: 5deg;
}
.white3{
    background-color: #ffffff;
    height:80px;
    width: 10px;
    position: absolute;
    top:95px;
    left: 350px;
    rotate: -5deg;
}

.white4{
    background-color: #ffffff;
    height:10px;
    width: 80px;
    position: absolute;
    top:730px;
    left: 330px;
}

/* Hide white decorative elements on mobile and tablet */
@media (max-width: 1200px) {
    .white1,
    .white2,
    .white3,
    .white4 {
        display: none;
    }
}
.year{
    color:#E4FF61;
}


