@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Fonts */
:root {
    --default-font: 'Inter', sans-serif;
    --heading-font: 'IBM Plex Sans', sans-serif;
    --nav-font: 'Inter', sans-serif;
    --cs-primary-color: #ff671f;
    --cs-text-color: #415a77;
    --cs-light-gray: #dcdcdc;
    --cs-gray-600: #6c757d;
    --cs-border-color: #dee2e6;
}

.modal {
    --bs-modal-width: 657px !important;
    --bs-modal-padding: 30px !important;
    --bs-modal-header-padding: 30px !important;
}

:root {
    --background-color: #ffffff;
    --default-color: #FF671F;
    --heading-color: #333333;
    --accent-color: #ec691f;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

:root {
    --Btn-fontsize: 16px;
    --Card-BgColor: linear-gradient(to bottom, #fdfeff, #f7fbff, #eef4fd);
}

:root {
    --nav-color: #000000;
    --nav-hover-color: #FF671F;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #666666;
    --nav-dropdown-hover-color: #ec691f;
}


.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #2f3942;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #445360;
    --contrast-color: #ffffff;
}

:root {
    --theme-color: #ec691f;
    --theme-color2: #064E5A;
    --theme-bg-light: #F6F6F6;
    --theme-color-light: rgba(99, 193, 83, .2);
    --body-text-color: #757F95;
    --color-white: #ffffff;
    --color-dark: #064E5A;
    --color-green: #15D4C9;
    --color-blue: #0049D0;
    --color-skyblue: #00BFFF;
    --color-yellow: #FBA707;
    --color-gray: #ECECEC;
    --color-red: #F05454;
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --border-white-color2: rgba(255, 255, 255, 0.05);
    --footer-bg: #023B45;
    --footer-text-color: #F5FAFF;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
/*section from subash system*/
.cs-captcha .input-group-prepend {
    padding: 2px 5px;
    background: #000;
}

.cs-captcha .form-control {
    height: 50px !important;
}

.cs-captcha #Input_CaptchaCode, .cs-captcha #captchaRefresh {
    height: 50px;
}
/*section from subash system ends*/
body {
    color: var(--cs-text-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: #ec691f;
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    display: block;
}

section {
    position: relative;
    /*PADDING: 50PX 0;*/
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

    .pulsating-play-btn:before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        animation-delay: 0s;
        animation: pulsate-play-btn 2s;
        animation-direction: forwards;
        animation-iteration-count: infinite;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .pulsating-play-btn:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .pulsating-play-btn:hover:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        animation: none;
        border-radius: 0;
    }

    .pulsating-play-btn:hover:after {
        border-left: 15px solid var(--accent-color);
        transform: scale(20);
    }

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/*.header {
    --background-color: rgba(0, 0, 0, 0.8);
    --heading-color: #ffffff;
    --contrast-color: #2c2c2c;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 10px;
    transition: all 0.5s;
    z-index: 997;*/
/*border-bottom: 7px solid #f4872b;*/
/*box-shadow: 0px 12px 20px #00000030;
    height:55px;
}*/
.header {
    width: 100%;
    height: 64px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    /* padding-left: 80px; gap: 4px;*/
    /*padding-right: 80px;*/
    display: flex;
    align-items: center;
}

.logoLeft {
    display: flex;
    /* padding-bottom: 18px;*/
    /* gap: 5px;*/
    padding: 0;
}

.heaDright {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: end;
    gap: 15px;
    list-style: none;
    /*  width: 405px;
    height: 40px;
     position: absolute;
    top: 12px;*/
}

.customContainer {
    margin: 0 auto;
    height: 64px;
    padding-left: 0px;
    padding-right: 0px;
    gap: 0px;
    background-color: rgba(0, 0, 0, 0);
    border-bottom: 1px solid #E5E7EB;
    justify-content: space-between;
    align-items: center;
    position: relative;
    display: flex;
}

.nav-container {
    width: 100%;
    max-width: 1104px;
    height: 64px;
    /*padding: 12px 91px 12px 0px;*/
    background-color: rgba(0,0,0,0);
    /*border: 1px solid #E5E7EB;*/
    box-sizing: border-box;
    display: flex;
}

.header .logo img {
    max-height: 63px;
    margin-right: 2px;
    width: 220px;
}

.header .logo h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.header .logo span {
    color: var(--accent-color);
    font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--default-color);
    font-size: 16px;
    padding: 7px 16px 10px 16px;
    margin: 0 0 0 0px;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid var(--default-color);
    font-weight: 400;
    display: flex;
    width: 121px !important;
    height: 40px;
    background-color: #fff;
    gap: 12px;
}

    .header .btn-getstarted i {
        margin-top: 5px;
    }

    .header .btn-getstarted:hover,
    .header .btn-getstarted:focus:hover {
        color: var(--default-color);
        background: #ffffff;
    }


.heaDright i {
    font-size: 21px;
    /* color: #f37e1c; */
}

a.logo {
    margin: 0;
}

.mnhead {
}


@media (max-width: 1200px) {
    body .carousel-control-prev {
        bottom: 49%;
    }

    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

@media (max-width:500px) {
    body .logoLeft {
        width: 100%;
        padding: 0;
    }

    body .heaDright {
        margin-right: auto;
        margin-left: 18px;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
    --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: rgba(0, 0, 0, 0.8);
}

.headBtn {
    max-width: 121px;
    width: 121px;
}

@media (max-width:1300px) {
    .HeadIn {
        display: none;
    }

    .heaDright {
        margin-left: auto;
    }
}

.mobile-nav-active .HeadIn {
    display: flex;
}

.HeadIn {
    display: none;
    justify-content: center;
    margin: 10px;
    padding: 10px;
    gap: 15px;
    color: white;
}

    .HeadIn a.btn.btn-primary.headBtn {
        color: white;
    }

@media (max-width:1100px) {
    .heaDright .headBtn {
        display: none;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (max-width: 1200px) {
    .navmenu {
        order: 1;
    }
}

/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0px 0px 0px 44px;
        display: flex;
        gap: 29px;
        width: 100%;
        justify-content: space-between;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
            gap: 29px;
            /*
            padding-top: 19.5px;
            padding-bottom: 27.5px;
                */
            padding: 0px;
        }

        .navmenu li {
            position: relative;
            /*width: 124px;
            height: 16px;*/
        }
        /*
            .navmenu li:nth-child(2) {
                position: relative;
                width: 157px;
                height: 16px;
            }

            .navmenu li:nth-child(3) {
                position: relative;
                width: 97px;
                height: 16px;
            }

            .navmenu li:nth-child(4) {
                position: relative;
                width: 102px;
                height: 16px;
            }*/

        .navmenu a,
        .navmenu a:focus {
            color: #1F2937;
            padding: 18px 0px;
            /* width: 124px;*/
            /* gap: 12px;
            height: 16px;*/
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 16px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu li:last-child a {
            padding-right: 0;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-hover-color);
        }

        .navmenu .dropdown ul {
            margin: 0;          
            padding: 3px 0;
            background: var(--nav-dropdown-background-color);
            display: flex;
            position: absolute;
            visibility: hidden;
            left: -100%;
             opacity: 0;
            transition: 0.3s;
            z-index: 99;
            width: auto;
            min-height: auto;
            flex-direction: column;
            box-sizing: border-box;
            padding: 20px 60px 32px 20px;
            border-width: 2px;
            border-radius: 2px 2px 10px 10px;
            /*border-top-left-radius: 2px;
            border-top-right-radius: 2px;
            border-bottom-right-radius: 10px;
            border-bottom-left-radius: 10px;            */
            box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.05);
            top: 100%;
        }

            /*.navmenu .dropdown ul {
            display: flex;
            flex-direction: column;*/ /* Vertical flow */
            /*width: 289px;*/ /* Hug width */
            /*min-height: 148px;*/ /* Hug height */
            /*position: absolute;
            top: 64px;
            left: 354px;
            border-top-left-radius: 2px;
            border-top-right-radius: 2px;
            border-bottom-right-radius: 10px;
            border-bottom-left-radius: 10px;
            padding: 20px 60px 20px 20px;*/ /* Top, Right, Bottom, Left */
            /*gap: 24px;*/ /* Space between children */
            /*box-sizing: border-box;
        }*/

            .navmenu .dropdown ul li {
                min-width: 100%;
            }

            .navmenu .dropdown ul a {
                /* padding: 10px 20px;*/
                /*        display: inline-block;
                margin: 12px 0;
                font-size: 16px;
                font-weight: 400;
                text-transform: none;
                color: var(--default-color);
                text-decoration-line: underline;
                text-decoration-thickness: 3px;
                width:100%;*/
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    /*background-color: var(--nav-dropdown-hover-color);*/
                    /*color: white;*/
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            visibility: visible;
            text-align: left;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }

    .navmenu1 {
        width: 405px;
        height: 40px;
        padding: 12px 0px 12px 0px;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mnhead {
        gap: 20px;
    }

    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), white 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: color-mix(in srgb, var(--accent-color), white 90%);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                background-color: var(--nav-dropdown-hover-color);
                color: white;
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    transform: rotate(180deg);
                    color: black;
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: var(--accent-color) transparent var(--accent-color) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
#  Button
--------------------------------------------------------------*/
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #ff671f;
    --bs-btn-border-color: #f37e1c;
    --bs-btn-hover-color: #f37e1c;
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: #f37e1c;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #000000;
    --bs-btn-active-bg: #f37e1c;
    --bs-btn-active-border-color: #f37e1c;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #fdecd7;
    --bs-btn-disabled-border-color: #0d6efd;
    padding: 12px 32px;
    border-radius: 8px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: #ec691f;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: #212a4f;
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 0;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    padding: 10px;
    width: 100%;
}

.funfact-section h2 {
    color: white;
    text-transform: capitalize;
    font-weight: 600;
}

.stats .stats-item span {
    font-size: 85px;
    display: block;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.stats .stats-item p {
    color: #ffffff;
    padding: 0;
    margin: 0;
    font-size: 24px;
    font-weight: 300;
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
/*.section-title {
    text-align: center;
    padding: 30px 0;
    position: relative;
}
*/
.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    position: relative;
}

    .section-title h2 span {
        color: var(--accent-color);
    }

.step {
    text-align: center;
    padding: 0;
    position: relative;
    padding: 0px 8px;
    margin-bottom: 1rem;
}

.step-number {
    width: auto;
    height: auto;
    color: var(--default-color);
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

section.StepSec {
    background: var(--Card-BgColor);
    PADDING: 0;
}

.step::before {
    content: '';
    position: absolute;
    top: 12%;
    right: -30%;
    background-color: #f48119;
    width: 60%;
    height: 4px;
    transform: translateY(-50%);
}

@media (min-width:992px) {
    section.StepSec .row > .step:last-child::before {
        background: none;
    }
}

@media (max-width:992px) and (min-width:758px) {
    .lastEnd.step::before {
        background: none;
    }
}

@media (max-width:768px) {
    .step::before {
        content: '';
        position: absolute;
        top: 16%;
        left: 0;
        background-color: #f48119;
        width: 100%;
        height: 4px;
        transform: translateY(-0%);
        z-index: -1;
    }
}

.step h5 {
    color: var(--default-color);
    line-height: 1.5;
    font-weight: 600;
}

p {
    color: var(--nav-color);
    font-size: 16px;
    margin-bottom: 1rem;
}

/* ======================================
quality height section 
====================================== */
.Qualityh {
    padding: 10px 0 0;
    background-color: #efdaca;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel-inner img {
    width: 100%;
    height: auto;
}

.orange-circle {
    position: relative;
    top: 0;
    left: 49px;
    width: 300px;
    height: 300px;
    background-color: #e76f23;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    font-size: 18px;
    font-weight: bold;
    transition: opacity .3s ease-in-out;
    border: 8px solid #ffbe94;
    outline: 8px solid #ffe2d0;
    z-index: 2;
}

.apply-btn {
    background-color: #2b2e83;
    color: white;
    padding: 10px 25px 10px 124px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
}

    .apply-btn:hover {
        background-color: #1f235e;
    }

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    bottom: 66%;
    right: -1px;
    background: #e77025;
    line-height: 1;
    height: 66px;
    width: 70px;
    opacity: 1;
    border-radius: 50%;
    top: auto;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 10px solid #e76f23;
    border-radius: 50%;
}

.carousel-control-prev {
    left: auto;
    right: -19px;
    bottom: 56%;
}

div#educationCarousel {
    margin-bottom: -50%;
}

p#contentCircle {
    transition: .5s ease-in;
    margin-bottom: 0;
    color: white;
    font-size: 19px;
    letter-spacing: 0.2px;
}

@media (max-width:1200px) {

    div#educationCarousel {
        margin-bottom: 10px;
    }

    .apply-btn {
        position: relative;
        top: 0;
        right: 0;
        padding: 8px 23px;
        margin-bottom: 21px;
        display: block;
        text-align: center;
    }
}

@media (max-width:768px) {
    div#educationCarousel {
        text-align: center;
    }

    body .orange-circle {
        width: 200px;
        height: 200px;
        margin: auto;
        left: 0;
        margin-bottom: 20px;
    }

    body .carousel-control-prev,
    body .carousel-control-next {
        position: relative;
        bottom: 0;
        right: 0;
        display: inline-flex;
        justify-content: center;
        margin: auto;
        text-align: center;
    }

    div#educationCarousel .carousel-control-prev {
        left: 0;
        right: 0;
        bottom: 0;
    }
}

/* =======================
counter 
====================== */
.funfact-section .section-title {
    padding: 0;
}

.funfact-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0px 0px 0px;
    background: linear-gradient(120deg, rgba(186, 101, 47, 1) 0%, rgba(39, 68, 151, 1) 100%);
    z-index: 1;
    filter: drop-shadow(0 -6px 0 #f57520c5) drop-shadow(0 -6px 0 #f69152c4) drop-shadow(0 -6px 0 #ffe2d0c5);
}

    .funfact-section .big-text {
        position: absolute;
        top: 0;
        left: 0px;
        width: 100%;
        text-align: center;
        font-size: 100px;
        line-height: 130px;
        font-family: 'Lexend', sans-serif;
        text-transform: uppercase;
        font-weight: 600;
        color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: rgba(255, 255, 255, 0.10);
        letter-spacing: 5px;
    }

    .funfact-section .bg-layer .bg-1 {
        position: absolute;
        left: 0px;
        top: 0px;
        height: 100%;
        width: 375px;
        background-repeat: no-repeat;
    }

    .funfact-section .bg-layer .bg-1 {
        position: absolute;
        left: -40px;
        top: 0px;
        height: 100%;
        width: 382px;
        background-repeat: no-repeat;
        opacity: 0.1;
    }

    .funfact-section .bg-layer .bg-2 {
        position: absolute;
        top: 0px;
        right: 0px;
        height: 100%;
        width: 334px;
        background-repeat: no-repeat;
        opacity: 0.1;
    }

.chairman-box {
    display: flex;
    box-shadow: 0px 0px 2px #979797;
}

.chairman-quats {
    display: flex;
    padding: 15px;
    background: #212a4f;
    height: 100%;
}

.ribbon3 {
    width: 95%;
    height: 50px;
    line-height: 50px;
    padding-left: 10px;
    position: absolute;
    left: -8px;
    bottom: 25px;
    background: #ec691f;
    color: #ffffff;
    font-size: 14px;
}

    .ribbon3:before,
    .ribbon3:after {
        content: "";
        position: absolute;
    }

    .ribbon3:before {
        height: 0;
        width: 0;
        top: -8.5px;
        left: 0.1px;
        border-bottom: 9px solid #212a4f;
        border-left: 9px solid transparent;
    }

    .ribbon3:after {
        height: 0;
        width: 0;
        right: -14.5px;
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-left: 15px solid #ec691f;
    }

.stats-item i {
    font-size: 36px;
    color: white;
    font-weight: 900;
}

/* ===========================
discover section 
=========================== */
section.Discover {
    background: #fcdbbf;
    padding: 0px 0px 50px 0px;
    z-index: 1;
}

.DI .card {
    background: #4e4c7a;
    border: none;
    margin-right: 5px;
    border-radius: 0;
    height: 100%;
}

.topCard {
    background: #f37e1c;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 33px 25px;
}

    .topCard h5 {
        color: white;
        margin-bottom: 0;
        line-height: 1.1;
        text-align: center;
        font-size: 17px;
    }

        .topCard h5 span {
            font-size: 31px;
        }

    .topCard i {
        font-size: 46px;
        line-height: 1;
    }

.card-body p {
    color: white;
}

.Discover .rightDiv .section-title {
    padding: 0px 0px;
}

    .Discover .rightDiv .section-title h2 {
        text-align: start;
        font-weight: 500;
        line-height: 1;
        color: #f37e1c;
    }

        .Discover .rightDiv .section-title h2 span {
            color: #4e4c7a;
        }

.step p {
    font-size: 16px;
}

.card-body p {
    font-size: 15px;
}

ul.rtImage {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
    gap: 10px;
    padding: 0;
    justify-content: start;
}

    ul.rtImage li {
        background: #f7a866;
        max-width: 31%;
        width: 100%;
        border-radius: 16px;
        cursor: auto;
        transition: .3s;
    }

    ul.rtImage p span {
        font-size: 18px;
        font-weight: 600;
    }

    ul.rtImage p {
        text-align: center;
        max-width: 97%;
        line-height: 1.2;
        padding: 5px 0;
    }

    ul.rtImage img {
        text-align: center;
        margin: auto;
        margin: 16px auto;
        max-width: 66px;
    }

.DI .card-body {
    padding: 40px 20px;
}

ul.rtImage li:hover {
    background: #b85400;
}

@media (min-width:992px) {
    .row.DI > div {
        padding: 0;
    }
}

@media (max-width:992px) {
    .DI .card {
        margin-right: 0;
    }

    ul.rtImage {
        justify-content: center;
    }
}

@media (max-width:768px) {
    ul.rtImage li {
        max-width: 48%;
    }
}

/* ====================
testimonial 
==================== */

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-shadow: 0px 0 20px rgb(0 0 0 / 16%);
    box-sizing: content-box;
    padding: 28px;
    margin: 20px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
    background-color: #fcdbbf;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}

.testimonials .section-title h2 {
    color: #4e4c7a;
}



.testimonials .testimonial-item .testimonial-img {
    width: 130px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: white;
    line-height: 1.5;
    font-weight: 300;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 0px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #4e4c7a;
        opacity: 1;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
        width: 15px;
        height: 15px;
    }


@media (max-width: 1199px) {


    .testimonials .swiper-pagination {
        margin-top: 0;
    }

    .testimonials .testimonial-item {
        margin: 40px 20px;
    }
}

@media (min-width: 1200px) {

    .testimonials .swiper-slide-next {
        opacity: 1;
        transform: translateY(-20px);
    }
}

.testimonials .swiper-slide-next .testimonial-item::before {
    filter: drop-shadow(0 10px 0 #ec691f) drop-shadow(0 8px 0 #f7a866);
}

.testimonials .swiper-slide .testimonial-item::before {
    background: #4e4c7a;
    position: absolute;
    content: '';
    height: 450px;
    width: 126%;
    border-radius: 100%;
    top: 17%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: .3s ease-in-out;
}

.stars h5 {
    color: white;
    font-size: 31px;
    margin-bottom: 14px;
    line-height: 1;
}

.testimonials .testimonial-item .stars h5 span {
    font-size: 16px;
}

/* ============================================
footer 
============================================ */
.footer {
    background: linear-gradient(to bottom, #304fa4, #706078e0);
    color: white;
    padding: 40px 0;
}

    .footer ul {
        list-style: none;
        padding: 0;
    }

        .footer ul li {
            margin-bottom: 8px;
        }

    .footer a {
        color: white;
        text-decoration: none;
        font-weight: 500;
    }

        .footer a:hover {
            text-decoration: underline;
        }

.footer-bottom {
    background-color: var(--default-color);
    color: white;
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

.footer-bg {
    width: 1440px;
    height: 673px;
    background-color: #1A2C5B;
    border: 1px solid #E5E7EB;
    background-image: url('/images/bg/footer-bg-Image.png'); /* Your background image path */
    background-repeat: no-repeat;
    background-size: cover; /* Or 'contain' depending on your image */
    background-position: center;
    background-blend-mode: overlay; /* Blends image with bg color */
    position: relative;
    overflow: hidden;
}

.white-line-horizontal {
    position: absolute;
    border: 1px solid #FFFFFFCC;
    margin: 10px 0;
    width: 1230px;
    height: 0px;
    top: 313.64px;
    left: 114px;
    angle: 0 deg;
    opacity: 1;
    border-width: 1px;
}

.mtb-30 {
    margin-top: 30px;
    margin-bottom: 75px;
}

.btn-white {
    /*background-color: white;*/
    color: black !important;
    width: 131.5px;
    height: 50px;
    left: 458.56px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 8px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(229, 231, 235, 1);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.footer-btn-wt-text {
    width: 183px;
    height: 20px;
    top: 15px;
    left: -0.06px;
    angle: 0 deg;
    opacity: 1;
}

.btn-brdr-only {
    background-color: transparent;
    /*border: solid;
    border-block-color: white;
    color: white;*/
    width: 183.375px;
    height: 50px;
    left: 606.06px;
    angle: 0 deg;
    opacity: 1;
    border-width: 2px !important;
    border-radius: 8px !important;
    /*background: rgba(0, 0, 0, 1);*/
    border: 2px solid rgba(255, 255, 255, 1) !important;
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.footer-btn-bdr-text {
    width: 183px;
    height: 20px;
    top: 15px;
    left: -0.06px;
    angle: 0 deg;
    opacity: 1;
}

.icon-bordered {
    /*border: 2px solid orangered;*/
    padding: 10px; /* Optional, gives space inside the border */
    /*border-radius: 5px;  Optional, makes the border rounded */
    color: #ff7d14; /* Optional, changes icon color too */
    display: inline-block; /* Ensures border wraps properly */
}

/*

.footer-text {
    position: absolute;
    width: 279px !important;
    height: 76px !important;
    top: 395.64px;
    left: 126px;
    opacity: 1;
    gap: 8px;
}

.footer-text-head {
    width: 185px;
    height: 24px;
    angle: 0 deg;
    opacity: 1;
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
}

.footer-text-para {
    width: 261px;
    height: 34px;
    angle: 0 deg;
    opacity: 1;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 3%;
}

    */

/*.footer-button {
    position: relative;
    width: 1248px;
    height: 50px;
    top: 220.64px;
    left: 96px;
    angle: 0 deg;
    opacity: 1;
}

.footer-heading-box {
    position: absolute;
    width: 1280px !important;
    height: 90px !important;
    top: 79.64px !important;
    left: 80px !important;
    angle: 0 deg;
    opacity: 1;
}

.footer-heading-title {
    position: relative;
    width: 1280px !important;
    height: 31px !important;
    top: -2.36px !important;
    angle: 0 deg;
    opacity: 1;
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 36px;
    leading-trim: NONE;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: center;
}

.footer-heading-para {
    position: relative;
    width: 752px !important;
    height: 37px !important;
    top: 52.64px !important;
    left: 253px !important;
    angle: 0 deg;
    opacity: 1;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
}

.footer-links {
    position: absolute;
    width: 850px;
    height: 223px;
    top: 371.64px;
    left: 508px;
    angle: 0 deg;
    opacity: 1;
    gap: 120px;
}

.footer-links-section {*/
/*    width: 127px;
    height: 223px;*/
/*angle: 0 deg;
    opacity: 1;
    gap: 40px;
}

.footer-links-section-rgt {
    width: 330px;
    height: 185px;
    angle: 0 deg;
    opacity: 1;
    gap: 36px;
}

.footer-cnt-head {
    width: 127px;
    height: 24px;
    angle: 0 deg;
    opacity: 1;
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 1);
}

.footer-cnt-text {

    opacity: 1;
    font-weight: 400;
    font-size: 16px;
    padding-bottom:10px;
    line-height: 100%;
    letter-spacing: 0%;
}

.footer-cnt-box {
    width: 127px !important;
    height: 159px !important;
    angle: 0 deg;
    opacity: 1;
    gap: 16px;
}*/
/*Breadcrumbs*/
.breadcrumb-nav {
    font-size: 14px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .breadcrumb-nav a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb-nav a:hover {
            color: white;
        }

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 4px;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

    .read-time i {
        font-size: 16px;
    }

.back-arrow {
    color: white;
    font-size: 18px;
    margin-right: 12px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 36px;
    }

    .header-section {
        padding: 30px 0 40px 0;
    }
}

section.heading_banner.spl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin: 64px 0 100px;
    margin-top: 64px;
    padding: 40px 0px;
    background-image: linear-gradient(97deg, #0d2f5e 8%, #3d81b8 108%), linear-gradient(to bottom, #d9d9d9, #d9d9d9);
    margin-top: 0;
    margin-bottom: 0;
    height: 247px;
}


.main-title {
    height: 71px;
    flex-grow: 0;
    font-family: IBMPlexSans;
    font-size: 48px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.49;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
}

.breadcrumb-nav a.active {
    font-weight: bold;
}
/*End Region Bread-Crumbs*/
/*Region - Ten reasons to study in India*/


.reasons-to-study-in-India {
    /*width: 1440px;
    height: 4121px;*/
    flex-grow: 0;
    background-color: #fff;
}


.Home-Scholarships {
    flex-grow: 0;
    padding: 0 147px 0 0;
}

.content-flex {
    /*width: 1071px;
    height: 2937px;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 56px;
    /*margin: 100px 185px 22px 184px;*/
    padding: 0;
}

    .content-flex.alt-bg{
        gap:0px;
        margin:0;
    }

    .ten-reasons-title-img {
        /*height: 561px;*/
        align-self: stretch;
        flex-grow: 0;
        border-radius: 16px;
        box-shadow: 2px 4px 4px 1px rgba(0, 0, 0, 0.15);
    }

    .hero-description {
        /*height: 112px;*/
        align-self: stretch;
        flex-grow: 0;
        font-family: Inter;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.53;
        letter-spacing: normal;
        text-align: left;
        color: #242424;
    }

    .hero-description-3 {
        /* width: 100px;
    height: 24px;*/
        flex-grow: 0;
        font-family: Inter;
        font-size: 20px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
    }

    .hero-description-head {
        /*height: 34px;*/
        align-self: stretch;
        flex-grow: 0;
        font-family: Inter;
        font-size: 28px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #1a2c5b;
    }

    .hero-description-1 {
        /*height: 168px;*/
        align-self: stretch;
        flex-grow: 0;
        font-family: Inter;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.53;
        letter-spacing: normal;
        text-align: left;
        color: #242424;
    }

    .hero-description-2 {
        /*height: 84px;*/
        align-self: stretch;
        flex-grow: 0;
        font-family: Inter;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.53;
        letter-spacing: normal;
        text-align: left;
        color: #242424;
    }

    .Frame-1000004245 {
        /*width: 140px;*/
        /*height: 32px;*/
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
        padding: 0;
    }

    .Frame-1000004246 {
        /*width: 140px;
    height: 32px;*/
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
        padding: 0;
    }
    /*End Region Ten reasons*/
    /*Region Institute Ranking*/
    .text-style-1 {
        font-size: 24px;
        font-weight: 600;
        line-height: 1.53;
    }

    .text-style-2 {
        font-weight: 600;
    }

    .text-style-subtitle {
        font-size: 18px;
        color: #333;
        font-weight: normal;
    }
    /*End Region Institute Ranking*/
    /*Region Blogs and Articles*/
    card-box {
        height: 318px;
        align-self: stretch;
        flex-grow: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 16px;
        padding: 20px 24px;
    }
    /*End Region Blogs and Articles*/
    /*Region Institute Registration*/
    .Register-card-box {
        align-self: stretch;
        flex-grow: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 40px;
        padding: 28px 40px;
        border-radius: 20px;
        border: solid 1px #d8daee;
    }

    .vector-icon {
        width: 24px;
        height: 24px;
        margin: 0 20px 0 0;
        /*background-color: #528bff;*/
        flex-grow: 0;
        object-fit: contain;
    }

    .text-cardview-title {
        height: 29px;
        align-self: stretch;
        flex-grow: 0;
        font-family: Inter;
        font-size: 24px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #4b5563;
    }

    .check-box-text {
        width: 36px;
        height: 19px;
        flex-grow: 0;
        font-family: Inter;
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #4b5563;
    }

    .accept-the-terms-text {
        width: 634px;
        height: 17px;
        flex-grow: 0;
        font-family: Inter;
        font-size: 14px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #415a77;
    }

    .text-orange {
        color: #ff671f;
    }

    .btn-orange {
        width: 179px;
        height: 51px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 4px;
        margin: 83px 653px 50px 136px;
        padding: 16px 24px;
        border-radius: 8px;
        border: solid 0 #e5e7eb;
        background-color: #ff671f;
    }

    .mb28 {
        margin-bottom: 28px;
    }

    .mr63 {
        margin-right: 63.5px;
        margin-left: 136px;
    }

    .wd100 {
        width: 100%
    }

    .wd10 {
        width: 10% !important;
    }

    .wd70 {
        width: 70% !important;
    }

    .mt5 {
        margin-top: 5px;
    }

    .input-box {
        height: 41px;
        align-self: stretch;
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px;
        border-radius: 4px;
        border: solid 1px #e5e7eb;
        background-color: #fff;
    }

    .input-label {
        height: 17px;
        align-self: stretch;
        flex-grow: 0;
        font-family: Inter;
        font-size: 16px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #4b5563;
    }

    .instituteform-text {
        color: #528bff;
        font-family: Inter;
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        gap: 20px;
        padding: 0;
    }

    .instituteform-checkbox-txt {
        width: 446px;
        height: 19px;
        flex-grow: 0;
        font-family: Inter;
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #4b5563;
    }

    .checkbox-bdr {
        width: 12px;
        height: 12px;
        flex-grow: 0;
        border-radius: 2px;
        border: solid 1px #c3d0e1;
        background-color: #fffefe;
    }
    /*End Region Institute Registration*/
    .wtht30 {
        width: 30px;
        height: 30px;
        angle: 0 deg;
        opacity: 1;
    }

    @media (max-width:992px) {
        .footer ul {
            background: #0e0e0e21;
            padding: 10px;
            border-radius: 15px;
        }
    }
    /* ===========================
search 
=========================== */
    .fa-search {
        cursor: pointer;
    }

    .form-wrapper {
        position: relative;
        width: 60%;
        margin: auto;
        display: flex;
        margin-top: 100px;
    }

        .form-wrapper form {
            width: 100%;
            background: #ffffff;
            padding: 30px;
            border-radius: 60px;
            margin-right: -50px;
            position: relative;
        }

        .form-wrapper .offcanvas-header {
            line-height: 98px;
            background: #ec691f;
            padding: 20px 35px 20px 80px;
            border-radius: 0 60px 60px 0;
            cursor: pointer;
            height: 98px;
        }

            .form-wrapper .offcanvas-header button {
                background: none;
                font-size: 20px;
                color: #fff !important;
                opacity: 1;
                border: 2px solid #fff;
                border-radius: 50%;
                justify-content: center;
            }

        .form-wrapper input,
        .form-wrapper input:focus {
            background: transparent;
            border: none;
            border-bottom: 2px solid #212a4f;
            border-radius: 0;
            padding-left: 0;
            outline: none;
        }



        .form-wrapper button {
            box-shadow: none;
            outline: none;
            background: transparent;
            border: navajowhite;
            display: flex;
            align-items: center;
            color: #000 !important;
            font-weight: 500;
        }


    .bannersection .slick-track {
        -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
        transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    }

    .bannersection .banner-wrapper {
        height: 100%;
        position: relative;
        z-index: 1;
    }

        .bannersection .banner-wrapper img {
            width: 100%;
            -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
            transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
            -webkit-transform: scale(1.2);
            transform: scale(1.2);
        }

    .bannersection .slick-slide.slick-active .banner-wrapper img {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation: cssAnimation 8s 1 ease-in-out forwards;
        animation: cssAnimation 8s 1 ease-in-out forwards;
    }

    @keyframes cssAnimation {
        from {
            -webkit-transform: scale(1) translate(0px);
        }

        to {
            -webkit-transform: scale(1.2) translate(0px);
        }
    }

    @-webkit-keyframes cssAnimation {
        from {
            -webkit-transform: scale(1) translate(0px);
        }

        to {
            -webkit-transform: scale(1.2) translate(0px);
        }
    }

    .offcanvas.offcanvas-top {
        z-index: 999999;
        height: 100vh;
        background: rgba(50, 50, 50, .85);
    }

    .navmenu .heaDright li:hover > a {
        color: #ec691f;
        background-color: transparent;
        border-color: #ec691f;
    }

    .innerbanner {
        padding: 50px 0;
        background-image: url(../image/indian-monument.png);
        background-size: contain;
        opacity: 0.5;
    }

    .inner_breadcrumb {
        background: #fa7e18;
        margin: 0;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
    }

    ul.breadcrumb {
        margin: 0;
    }

    .inner_breadcrumb .breadcrumb li {
        font-weight: 700;
        color: #666;
        float: left;
        display: inline-block;
        line-height: 40px;
    }

        .flag-name,
        .inner_breadcrumb .breadcrumb li.active {
            color: #000;
        }

        .inner_breadcrumb .breadcrumb li + li:before {
            content: ">";
            float: left;
            padding: 0 10px;
            color: #edf4fc;
        }

        .inner_breadcrumb .breadcrumb li:before {
        }

    section.heading_banner {
        background: linear-gradient( 135deg, rgba(255, 240, 221, 0.7) 0%, rgba(239, 246, 254, 0.7) 100% );
        padding-bottom: 0;
        /*z-index:3;*/
    }

    .inner_breadcrumb .breadcrumb li a {
        color: #ffffff;
        font-weight: 400;
    }

    .formbanner {
        border: none;
        border-radius: 0;
    }

    .formbox .form-group,
    .form-check {
        margin-top: 15px;
    }

        .formbox .form-group label {
            margin-bottom: 5px;
        }

    .formbox {
        padding: 50px;
        background: linear-gradient(to bottom, #304fa4, #706078e0);
        height: 100%;
    }

    .studyindian-form {
        padding: 15px;
        background: #ffff;
        border-radius: 15px;
        box-shadow: 0px 0px 11px 0px #00000047;
    }

    .inner-section {
        z-index: 1;
        padding: 30px 0;
    }

    .innerbg-img {
        background: url(../image/innersectionbg.png) repeat;
        position: absolute;
        left: 0;
        bottom: 0;
        opacity: 0.5;
        z-index: 1;
        height: 360px;
        width: 100%;
        right: 0px;
        top: 0px;
    }


    .formbox .form-group .form-control {
        padding: 10px 8px;
        border-radius: 5px;
        border-color: #ccc;
        font-size: 15px;
    }


    .formbox .form-check .form-check-input {
        border-color: #ccc;
    }

    .formbox .form_btn {
        width: 200px;
        border-radius: 5px;
    }

    .form-heading h2 {
        color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: rgb(253 253 253);
        font-size: 40px;
        font-weight: 700;
    }

    .formbox .form-group,
    .form-check {
        color: #ffffff;
    }

    h1.cat_title {
        font-size: 40px;
        font-weight: 600;
    }

    h1.why_title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 700;
        padding-top: 0px;
        text-align: center;
        margin: 0 0 20px 0px;
    }

        h1.why_title span {
            color: #FF671F;
        }


    h6.why_desc {
        font-size: 1.125rem;
        font-family: var(--default-font);
        font-weight: 500;
        color: #4B5563;
        padding-top: 0px;
        padding-bottom: 0px;
        text-align: center;
        width: 70%;
        margin: 0 auto;
        line-height: 1.6;
    }

    .form-headings h2 {
        font-size: 24px;
        line-height: 35px;
        color: #ffffff;
    }

    .student-table button {
        color: #fff;
        background-color: #ec691f;
        cursor: pointer;
        border-color: #ec691f;
    }

    .student-table .table-striped > tbody > tr:nth-of-type(odd) > * {
        background-color: #f5f5f5;
    }

    .student-table .table-striped > tbody > tr > td {
        vertical-align: baseline;
    }

    .student-table .table-striped > thead > tr > th {
        background-color: #337ab7;
    }

    .searchlist .form-control,
    .searchlist .form-control:focus {
        border-color: #5783aa;
        outline: none;
        box-shadow: none;
    }

    .info-card {
        text-align: center;
        background-color: #337ab7;
        padding: 15px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80px;
        position: relative;
        transition: all 0.4s ease-in-out;
        z-index: 1;
        overflow: hidden;
    }

        .info-card::before {
            content: '';
            position: absolute;
            bottom: -10px;
            right: -10px;
            width: 50px;
            height: 50px;
            background: #ededed;
            z-index: -1;
            opacity: 0.3;
            border-radius: 50%;
            transition: all 0.4s ease-in-out;
        }

        .info-card h2 a {
            font-size: 18px;
            color: #fff;
            display: block;
            line-height: 25px;
        }

        .info-card h2 {
            margin: auto;
            position: relative;
        }

        .info-card:hover::before {
            width: 100%;
            height: 100%;
            border-radius: 0%;
            bottom: 0;
            right: 0;
            background-color: #fa7e18;
            opacity: 1;
        }

    .dashboard-section {
        padding: 30px 0 0 0;
    }

    .loginbtn {
        width: auto;
        max-width: 100%;
    }

    .tablebox td {
        font-size: 14px;
    }

    .tablebox th {
        font-size: 15px;
        font-weight: 500;
        vertical-align: top;
        background-color: #337ab7;
        color: #ffffff;
    }

    main.main {
        position: relative;
    }

    .card {
        border-radius: 10px;
        padding: 20px;
    }

    .input-group-text {
        font-weight: bold;
    }

    .dashboard-active {
        background-color: #fa7e18;
    }

    .dashboard-container {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 50px;
    }


    .dashboard-card form {
        width: 250px;
        padding: 30px;
        border-radius: 15px;
        background: linear-gradient(135deg, #4c8bf5, #3561b9);
        color: white;
        display: block;
        height: 100%;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s, box-shadow 0.3s;
    }

        .dashboard-card form:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

    .dashboard-card i {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .dashboard-card .btn {
        color: #fff;
    }

    .student .dashboard-card a {
        width: 250px;
        padding: 30px;
        border-radius: 15px;
        background: linear-gradient(135deg, #4c8bf5, #3561b9);
        color: white;
        display: block;
        height: 100%;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s, box-shadow 0.3s;
    }

        .student .dashboard-card a:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

    .student .dashboard-card i {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .student .dashboard-card a h5 {
        color: #fff;
    }


    .form-control:focus,
    .form-select:focus {
        border-radius: 5px;
        box-shadow: none;
        outline: none;
        border-color: #868686;
    }

    .btn-custom {
        background-color: #fd7e14;
        color: white;
        border-radius: 5px;
        width: 20%;
    }

        .btn-custom:hover {
            background-color: #e76a00;
            color: #fff;
        }

    .info-box {
        padding: 20px;
        border-radius: 10px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.2);
        transition: transform 0.3s;
        display: flex;
    }

        .info-box:hover {
            transform: scale(1.05);
        }

    .icon {
        font-size: 18px;
        color: #337ab7;
        display: inline-block;
    }

    .text-container h4 {
        margin-bottom: 5px;
        font-size: 16px;
        font-weight: 600;
        color: #222;
    }

    .text-container {
        margin-left: 10px;
    }

    .icon-container {
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        background: #fa7e183b;
        text-align: center;
        font-size: 14px;
        flex-shrink: 0;
    }

    .text-heading {
        font-size: 24px;
        color: #222;
        font-weight: 600;
    }

    .kye-statics {
        margin: 5px 0;
        border: 1px solid #ccc;
        border-left: 5px solid #fa7e18;
        border-radius: 5px;
    }

    .statics-title {
        color: #222;
        font-weight: bold;
        font-size: 30px;
    }

    .nav-pills.institute-lists .nav-link.active {
        background-color: #fa7e18;
        color: #fff;
    }


    .nav-pills.institute-lists .nav-link {
        color: #337ab7;
        font-weight: 600;
    }

    .accordion-body .info {
        margin-bottom: 10px;
    }

    .interest-btn {
        background-color: #f37e1c;
        color: #fff;
        padding: 8px 12px;
        color: #fff;
        border-radius: 8px;
    }

    .loading-overlay {
        position: absolute;
        top: 0;
        text-align: center;
        /* inset: 0;*/
        left: 50%;
        width: 100%;
        height: 100%;
        transform: translateX(-50%);
        z-index: 999999;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.8);
        transition: all 0.6s ease-out;
    }

        .loading-overlay:before {
            content: "";
            position: fixed;
            top: calc(50% - 30px);
            left: calc(50% - 30px);
            border: 6px solid #ffffff;
            border-color: var(--accent-color) transparent var(--accent-color) transparent;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: none;
            animation: animate-preloader 1.5s linear infinite;
        }


        .loading-overlay img {
            max-width: 300px;
            margin-top: 10%;
            margin-left: auto;
            margin-right: auto;
        }

        .loading-overlay h5 {
            text-align: center;
            font-size: 24px;
            font-weight: 500;
            margin-top: 20px;
        }

    .lorderbox {
        margin: auto;
    }

    .loading:after {
        content: " .";
        animation: dots 2s steps(5, end) infinite;
    }

    @keyframes dots {

        0%, 20% {
            color: rgba(0, 0, 0, 0);
            text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
        }

        40% {
            color: white;
            text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
        }

        60% {
            text-shadow: 0.25em 0 0 #ff671f, 0.5em 0 0 rgba(0, 0, 0, 0);
        }

        80%, 100% {
            text-shadow: 0.25em 0 0 #ff671f, 0.5em 0 0 #ff671f;
        }
    }


    .dashboardcard {
        background-color: #fde8d7;
        padding: 20px 15px;
        box-shadow: 0px 0px 5px lightgray;
        position: relative;
        overflow: hidden;
        height: 100%;
    }

        .dashboardcard::before,
        .dashboardcard::after {
            content: "";
            width: 0;
            height: 2px;
            position: absolute;
            transition: all .2s linear;
            background: #f37e1c;
            right: 0;
            top: 0;
            transition-delay: .2s;
            border-radius: 4px;
        }

        .dashboardcard::after {
            right: auto;
            left: 0;
            top: auto;
            bottom: 0;
            transition-delay: .6s;
        }

        .dashboardcard:hover::before {
            width: 100%;
            transition-delay: .4s;
        }

        .dashboardcard:hover::after {
            width: 100%;
            transition-delay: 0s;
        }

    .innerbox::before,
    .innerbox::after {
        content: "";
        width: 2px;
        height: 0;
        position: absolute;
        transition: all .2s linear;
        background: #f37e1c;
        transition-delay: 0s;
        left: 0;
        top: 0;
        border-radius: 4px;
    }

    .innerbox::after {
        transition-delay: .4s;
        left: auto;
        right: 0;
        top: auto;
        bottom: 0;
    }

    .dashboardcard:hover .innerbox::after {
        height: 100%;
        transition-delay: .2s;
    }

    .dashboardcard:hover .innerbox::before {
        height: 100%;
        transition-delay: .6s;
    }

    .dashboardcard a h3 {
        font-size: 18px;
        font-weight: 600;
        color: #222;
        margin-bottom: 15px;
        line-height: 30px;
    }

    .dashboardcard a .number {
        font-size: 16px;
        font-weight: 700;
        color: #337ab7;
    }

    .modal-backdrop.fade.show {
        /* z-index: -1;*/
    }

    .modal-backdrop {
        /* z-index: -1;*/
    }

    .stepheading {
        display: flex;
        align-items: end;
    }

    .stepbox-number {
        width: 130px;
        height: 130px;
        background-color: #e76f23;
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 24px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
        font-size: 60px;
        font-weight: bold;
        transition: opacity .3s ease-in-out;
        border: 8px solid #ffbe94;
        outline: 8px solid #ffe2d0;
        position: relative;
        z-index: 1;
    }

    .stepheading-text {
        background-color: #2b2e83;
        border-radius: 0 20px 20px 0;
        color: #fff;
        padding: 10px 50px;
        margin-left: -30px;
        transform: translateY(-14px);
    }

        .stepheading-text h2 {
            margin-bottom: 0;
            font-size: 24px;
            color: #ffffff;
        }

    .stepsimg {
        height: 320px;
    }

        .stepsimg img {
            height: auto;
            width: auto;
            max-width: 100%;
            max-height: 100%;
            margin: auto;
        }

    .steps-content {
        margin-top: 30px;
    }

        .steps-content p {
            font-size: 16px;
            line-height: 28px;
        }

    section.step-section .institute-lists li {
        margin-right: 10px;
    }

        section.step-section .institute-lists li .nav-link {
            border: 2px solid #fa7e18;
            color: #2b2e83;
            padding: 8px 30px;
        }

    section.step-section .institute-lists {
        justify-content: center;
    }

    .Institute-section .container {
        background-color: #ffffff;
    }

    .form-section h4 {
        font-size: 25px;
        color: #33468e;
    }

    .form-section label {
        margin-bottom: 8px;
        font-weight: 500;
        font-size: 15px;
    }

    .form-section .form-control {
        padding: 15px;
        border-color: #9ea4c5;
    }

    .section ol li + li {
        margin-top: 5px;
    }

    .form-section {
        margin: 10px 0;
    }

    label.form-check-label {
        /*color: #33468e;*/
    }

    input#terms {
        border-color: #33468e;
    }

    a.ut-download {
        background: #ec691f;
        border-radius: 8px;
    }

    a.ut-download {
        background: #ec691f;
        border-radius: 8px;
    }

    section.Institute-section {
        color: #222222;
        line-height: 26px;
    }

    ul.list-insti-grade.styled-list {
        margin: 15px 0;
    }

    .full-width {
        position: relative;
        margin: 0 -9999rem;
        padding: 20px 9999rem;
        background: none;
        color: #000000;
        font-size: 35px;
        font-weight: 100;
        text-transform: uppercase;
        margin-bottom: 50px;
    }

    .counter {
        background: #fff;
        text-align: center;
        width: 200px;
        min-height: 215px;
        padding: 10px 15px;
        margin: 0 auto;
        border-radius: 30px;
        box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
        position: relative;
        transition: all 0.4s ease-in-out;
    }

        .counter:before {
            content: '';
            background-color: #9DD662;
            height: 106px;
            width: 100%;
            border-radius: 30px 30px 0 0;
            position: absolute;
            left: 0;
            top: 0;
        }

        .counter .counter-icon {
            color: #fff;
            background: #7CA936;
            font-size: 50px;
            line-height: 90px;
            width: 120px;
            height: 100px;
            margin: 0 auto 10px;
            border-radius: 10px 10px 0 0;
            transform: translateY(-20px);
            position: relative;
            clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
        }

            .counter .counter-icon:before {
                content: "";
                background: #8AC248;
                width: 119px;
                height: 90px;
                border-radius: 10px 10px 0 0;
                transform: translateX(-50%);
                position: absolute;
                top: 0;
                left: 50%;
                z-index: -1;
                clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
            }

        .counter h3 {
            color: #333;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin: 0 0 5px 0;
        }

    .counter-icon img {
        height: 40px;
        margin: auto;
        display: inline-block;
    }


    .counter.blue:before {
        background-color: #3e96c6;
    }

    .counter.blue .counter-icon:before {
        background-color: #3e96c6;
    }

    .counter.blue .counter-icon {
        background-color: #2A70B5;
    }

    .counter.red:before {
        background-color: #FD6D4B;
    }

    .counter.red .counter-icon {
        background-color: #D14026;
    }

        .counter.red .counter-icon:before {
            background-color: #EA5736;
        }

    .counter.gray:before {
        background-color: #3e96c6;
    }

    .counter.gray .counter-icon {
        background-color: #2A70B5;
    }

        .counter.gray .counter-icon:before {
            background-color: #3e96c6;
        }

    .dasboard {
        padding: 30px;
        height: 100%;
        text-align: center;
        background: #2b2e83;
        border-radius: 15px;
    }

    .dasboard-icon img {
        height: 55px;
        margin: auto;
    }

    .dasboard-content h3 {
        color: #ffffff;
        font-size: 20px;
        margin-top: 20px;
        line-height: 30px;
    }

    .loginbox p {
        color: #ffffff;
        font-size: 20px;
        margin: 0;
    }


    .webiste-inner h2 {
        font-size: 36px;
        font-weight: 700;
        line-height: 48px;
        color: #222222;
    }

    .value.dashb-hiform {
        position: relative;
    }

        .value.dashb-hiform i {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 46px;
            width: 40px;
            line-height: 44px;
            text-align: center;
            border-right: 1px solid lightgray;
        }

        .value.dashb-hiform .form-control {
            padding: 10px 15px 10px 50px;
        }

    .list-border {
        list-style: none;
        padding: 0;
    }

    li.mb-20 {
        margin-bottom: 20px;
    }

    .card-dasb.instidasb-box {
        padding: 15px;
        background: #ffffff;
        border: 1px solid lightgray;
        border-radius: 10px;
    }

    .plan-name {
        font-size: 20px;
        padding-bottom: 10px;
    }

    table.table.table-bordered.table-striped th {
        /*font-size: 13px;
    font-weight: 500;*/
    }

    tbody#tableBody td {
        font-size: 13px;
    }



    thead.table-primary th {
        font-size: 14px;
        padding: 4px;
        font-weight: 500;
        vertical-align: middle;
        text-align: center;
    }

    .offertable td {
        text-align: center;
        font-size: 13px;
    }

    a.btn.btn-orange {
        background: #fa7e18;
        color: #ffffff;
        font-size: 13px;
    }

    .dashboardinner-heading {
        margin-top: 25px;
    }

        .dashboardinner-heading a {
            margin-right: 15px;
        }

    .table-heading h4 {
        font-size: 18px;
    }

    tr.table-header th {
        background: #2b2e83;
        text-align: center;
        color: #ffffff;
    }

    .backbtn {
        display: block;
        padding: 8px 15px;
        background-color: #2b2e83;
        color: #ffffff;
        border-radius: 5px;
        margin-left: 15px;
    }

    .wordtext {
        border: none;
        outline: none;
        box-shadow: none;
        width: 100%;
    }

    .instituteform h3 {
        font-size: 24px;
    }

    .instituteform h3 {
        font-size: 16px;
    }

    .entry-content {
        padding: 20px;
        background: #ffffff;
        box-shadow: 0px 0px 5px #bbbbbb;
        border-radius: 20px;
    }

    p.alignright {
        margin-bottom: 8px;
        font-size: 13px;
        color: red;
    }

    .buttonSaveDiv button {
        width: 200px;
        background: #fa7e18;
        border-color: #fa7e18;
        color: #ffffff;
    }

    .container-toggle {
        margin-left: 50px;
    }

    .switch {
        --line: #E8EBFB;
        --dot: #275EFE;
        --circle: #D3D4EC;
        --background: #fff;
        --duration: .3s;
        --text: #9EA0BE;
        --shadow: 0 1px 3px rgba(0, 9, 61, 0.08);
        cursor: pointer;
        position: relative;
    }

        .switch:before {
            content: "";
            width: 33px;
            height: 11px;
            border-radius: 16px;
            background: var(--background);
            position: absolute;
            left: 0;
            top: 12px;
            box-shadow: inset 0px 3px 10px #00000029;
        }

        .switch input {
            display: none;
        }

            .switch input + div {
                position: relative;
            }

                .switch input + div:before {
                    --s: 0;
                    left: 4px;
                    transform-origin: 0 50%;
                    border-radius: 2px 0 0 2px;
                }

                .switch input + div:before,
                .switch input + div:after {
                    --s: 1;
                    content: "";
                    position: absolute;
                    height: 4px;
                    top: 10px;
                    background: var(--line);
                    transform: scaleX(var(--s));
                    transition: transform var(--duration) ease;
                }

                .switch input + div span {
                    padding-left: 60px;
                    line-height: 28px;
                    color: var(--text);
                }

                .switch input + div:after {
                    left: 32px;
                    transform-origin: 100% 50%;
                    border-radius: 0 2px 2px 0;
                }

                .switch input + div span:before {
                    --x: 0;
                    --s: 4px;
                    content: "";
                    position: absolute;
                    left: 0px;
                    top: 9px;
                    width: 16px;
                    height: 16px;
                    border-radius: 50%;
                    box-shadow: inset 0 0 0 var(--s) var(--b);
                    transform: translateX(var(--x));
                    transition: box-shadow var(--duration) ease, transform var(--duration) ease;
                    background-color: #00666a;
                }

    .checkbox__on-toggle {
        right: 100%;
        margin-right: 9px;
        opacity: 1;
    }

    .checkbox__on-toggle,
    .checkbox__off-toggle {
        position: absolute;
        top: 0;
        height: 100%;
        transition: opacity 0.32s linear 0s;
        margin-top: 7px;
    }

    .checkbox__off-toggle {
        left: 100%;
        margin-left: 10px;
        opacity: 0.24;
    }

    .switch input:checked + div span:before {
        --x: 17px;
        --s: 12px;
        background-color: #ed7a1f;
    }

    .rocker-small {
        font-size: 0.90em;
    }

    .rocker {
        display: inline-block;
        position: static;
        font-size: 2em;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        color: #000;
        overflow: hidden;
        box-shadow: 0px 0px 2px #bfbfbf;
    }

        .rocker input {
            opacity: 0;
            width: 0;
            height: 0;
        }

    .switch-left,
    .switch-right {
        cursor: pointer;
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 38px;
        width: 38px;
        font-size: 15px;
        transition: 0.2s;
        box-shadow: 0px 0px 2px #cbb7b7;
    }

    .switch-right {
        right: 0.5em;
        bottom: 0;
        background-color: #ed7a1f;
        color: #fff;
        border-top-right-radius: 8px;
        box-shadow: inset 0px 2px 3px rgb(185 88 12);
    }

    input:checked + .switch-left {
        background-color: #ed7a1f;
        color: #000;
        bottom: -0.85px;
        left: 0.6em;
        height: 2.5em;
        width: 3em;
        transform: rotate(0deg) skewX(0deg);
        box-shadow: inset 0px 2px 3px rgb(185 88 12);
    }

        input:checked + .switch-left + .switch-right {
            background-color: #fff;
            color: #000;
            bottom: 0.1em;
            right: 0.7em;
            height: 2.4em;
            width: 2.75em;
            box-shadow: inset 0px 4px 5px rgb(213 213 213 / 90%);
        }

    .rocker input {
        opacity: 0;
        width: 0;
        height: 0;
        display: none;
    }

    .rocker.rocker-small {
        display: flex;
    }

    .row.rangbox {
        margin: 15px 0;
    }

    .pricebox {
        display: flex;
    }

    .coliving-value {
        margin-left: 30px;
    }

    .row.pricerange .col-md-6 {
        margin: 10px 0;
    }

    form#frmKeyStatistics h3 {
        font-size: 17px;
        margin-bottom: 10px;
        margin-top: 15px;
        /* text-align: center; */
    }

    .mb-10 {
        margin-bottom: 10px !important;
    }

    .pl-0 {
        padding-left: 0 !important;
    }

    .coed-title {
        padding: 2px 31px;
        color: #000;
        font-size: 15px;
    }

    .container-toggle {
        display: flex;
        width: 100%;
        height: 100%;
    }

    .tw-toggle {
        display: inline-block;
        padding: 5px 3px;
        border-radius: 20px;
        position: relative;
        width: 255px;
        box-shadow: inset 0px 3px 10px #00000029;
        height: 11px;
    }

        .tw-toggle input {
            position: absolute;
            z-index: 3;
            opacity: 0;
            cursor: pointer;
        }

        .tw-toggle label {
            text-align: center;
            font-family: sans-serif;
            display: inline-block;
            color: #95A5A6;
            position: relative;
            z-index: 2;
            margin: 0;
            text-align: center;
            padding: 2px 3px;
            font-size: 15px;
            margin-left: 95px;
        }

        .tw-toggle input[value="yellow"]:checked ~ span {
            background: #000000;
            left: 245px;
        }

        .tw-toggle span {
            height: 16px;
            width: 16px;
            line-height: 21px;
            border-radius: 50%;
            background: #009297;
            display: block;
            position: absolute;
            left: 0px;
            top: -2px;
            transition: all 0.6s ease-in-out;
        }

        .tw-toggle input[value="blue"]:checked ~ span {
            background: #00666a;
            left: 0px;
            color: #fff;
        }

        .tw-toggle input[value="gray"]:checked ~ span {
            background: #ed7a1f;
            left: 116px;
        }

.btn-save {
    background-color: #f57c00;
    color: white;
    font-weight: bold;
}

        .btn-save:hover {
            background-color: #e65100;
        }

    .placemnetform .form-select,
    .placemnetform .form-control {
        padding: 10px;
        border-color: #adadad;
    }

    .placement-wrapper {
        padding: 20px;
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0px 0px 5px #959595;
    }

    .image-preview {
        border: 2px dashed #ccc;
        width: 200px;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-size: 14px;
        margin: auto;
        margin-bottom: 30px;
    }

    .note {
        font-size: 12px;
        color: red;
    }

    .form-section {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        align-items: center;
    }

    .form-image-upload,
    .form-inputs {
        flex: 1 1 300px;
    }

    .form-label {
        /*font-size: 14px;*/
    }

    .table.newtable thead th {
        background-color: #0d6efd;
        color: #fff;
        text-align: center;
    }

    .table.newtable tbody td {
        vertical-align: middle;
    }

    .addbtn-box {
        text-align: right;
        margin: 10px 0;
    }

    .tabledetails .table thead th {
        background-color: #1261b2;
        color: white;
        vertical-align: middle;
        text-align: center;
        font-size: 15px;
    }

    .tabledetails .table-bordered td,
    .tabledetails .table-bordered th {
        border: 1px solid #dee2e6;
        font-size: 15px;
    }

    .tabledetails .table tbody tr:nth-child(even) {
        background-color: #f8f9fa;
    }

    .tabledetails .action-icons i {
        cursor: pointer;
    }

    .action-icons button {
        border: none;
        outline: none;
        box-shadow: none;
        text-align: center;
    }

    .tabledetails h4 {
        margin: 15px 0;
        font-size: 24px;
    }

    .bfits-cardp {
        padding: 15px 20px;
        background: #e9e9e9;
        border-radius: 20px;
    }

        .bfits-cardp h3 {
            font-size: 24px;
            color: #2b2e83;
            font-weight: 600;
        }

        .bfits-cardp p {
            color: #222;
            font-size: 15px;
            line-height: 25px;
            margin: 0px;
        }

    .tophdngThree p {
        line-height: 26px;
        text-align: justify;
        color: #222222;
    }

    .tophdngThree h3 {
        font-size: 30px;
        margin-bottom: 10px;
        color: #2b2e83;
        font-weight: 600;
    }

    .list-insti-ranking li {
        color: #222;
    }

    div.dataTables_wrapper div.dataTables_length select {
        width: 50%;
        display: inline-block;
    }

    .information {
        margin: 0;
        padding: 0;
        font-size: 12px;
        color: white;
    }
    /*Benefits of Studing in India start*/
    section.step-section .content-sub-title {
        font-weight: 600;
        font-size: 40px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: left;
        padding-top: 15px;
        margin-bottom: 0px;
    }

    .benefits-container {
        padding: 0px 0px;
        background: #fff;
        margin-bottom: 117px;
    }

    .benefits-row {
        display: flex;
        gap: 30px;
        /*justify-content: center;*/
        flex-wrap: wrap;
    }

    .benefit-card {
        width: calc(33.3% - 30px);
        min-height: 525px;
        border-radius: 16px;
        border: 1px solid #E5E7EB;
        box-shadow: 2px 4px 4px 1px rgba(0, 0, 0, 0.15);
        background: linear-gradient( 180deg, #ffffff 0%, #ffeedb 100% );
    }

        .benefit-card:nth-child(1) {
            background: linear-gradient( 180deg, #ffffff 0%, #ffeedb 100% );
        }

        .benefit-card:nth-child(2) {
            background: linear-gradient( 180deg, #ffffff 0%, #e8f5ff 100% );
        }

        .benefit-card:nth-child(3) {
            background: linear-gradient( 180deg, #ffffff 0%, #edffdb 100% );
        }

    .benefit-image {
        width: 406.67px;
        height: 347px;
        object-fit: cover;
        display: block;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }

    .benefit-title {
        font-size: 28px;
        font-weight: 600;
        color: #1F2937;
        line-height: 100%;
        letter-spacing: 0%;
        font-family: var(--default-font);
        padding: 0px 0px 12px 0px;
        margin: 0px;
    }

    .benefit-desc {
        color: #3A4C66;
        font-size: 18px;
        font-weight: 400;
        line-height: 153%;
        letter-spacing: 0%;
        font-family: var(--default-font);
    }

    .benefit-card div {
        padding: 24px 40px 24px 40px;
    }
    /*
@media (max-width: 1440px) {
    .benefits-row {
        flex-direction: column;
        align-items: center;
    }
}
    */
    /*Benefits of Studing in India end*/


    .defaultbtn {
        color: #fff !important;
        font-size: 16px;
        border-radius: 10px;
        width: 98px;
        height: 39px;
        border-color: #E5E7EB;
        background-color: #FF671F;
        font-weight: 400;
    }

        .defaultbtn:hover {
            background-color: #FF671F;
            border-color: #E5E7EB;
            color: #fff !important;
        }



    .navmenu .dropdown ul a {
        position: relative;
        display: inline-block;
        color: #FF874F;
        font-size: 16px;
        font-weight: 400;
        font-family: var(--nav-font);
        line-height: 16px;
        letter-spacing: 0%;
        text-decoration: none; /* remove default underline */
        padding-bottom: 2px;
        width: 100%;
        /* height: 20px;*/
        angle: 0 deg;
        opacity: 1;
        border-bottom-width: 1px;
        gap: 4px;
    }

    .navmenu .dropdown:hover > a {
        font-weight: 700;
    }

    .navmenu .dropdown:hover > i {
        font-weight: 700;
    }

    .navmenu .dropdown ul a::after {
        border: 1px solid #FF874F;
        width: 46px;
        height: 0px;
        angle: 0 deg;
        opacity: 1;
        border-width: 1px;
    }

    .navmenu li:first-child::before {
        /* right: 0;
    margin: 0 auto;
    height: 2.5px;
    background-color:#FF671F*/
    }

    .Hero-Banner, .HeroSection {
        width: 100%;
        max-height: 500px;
    }

    .banner {
        position: relative;
        min-height: 60vh;
        height: auto;
        width: 100%; /* full width */
        background: url('../image/herobanner.png') no-repeat center center/cover;
    }

.banner-text {
    position: absolute;
    bottom: 15%; /* lower middle */
    left: 50%;
    font-family: 'IBM Plex Sans', Helvetica, sans-serif;
    font-weight: 900;
    transform: translateX(-50%);
    font-size: 80px; /* fixed size */
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    width: 100%;
    padding: 0 15px; /* safe padding for small screens */
    line-height: 1.05;
}

    .highlight {
        background: linear-gradient(to right, #ff9800, #e91e63);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: bold;
    }


    .headRight {
        display: flex;
        gap: 15px;
        padding-left: 193px;
    }

    .dropdown {
        position: relative;
    }

        .dropdown button {
            cursor: pointer;
        }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        border-radius: 6px;
        overflow: hidden;
        min-width: 200px;
        z-index: 999;
    }

        .dropdown-menu a {
            display: block;
            padding: 10px 15px;
            text-decoration: none;
            color: #333;
        }

            .dropdown-menu a:hover {
                background: #f5f5f5;
                color: #ff5722;
            }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .navmenu li {
        position: relative;
    }

        .navmenu li::before {
            position: absolute;
            content: '';
            z-index: 1;
            left: 0;
            width: 40%;
            height: 1px;
            border-bottom: 1px solid var(--nav-hover-color);
            /*background: #FF671F;*/
            opacity: 0;
            bottom: -1px;
        }

        .navmenu li:hover::before {
            opacity: 1;
        }

        .navmenu li.spl::before {
            margin: 0 auto;
            border-bottom: 2.5px solid var(--nav-hover-color);
            height: 2.5px;
            right: 0px;
            bottom: 10px;
        }

        .navmenu li ul li::before {
            opacity: 1 !important;
        }

    .navmenu li {
        display: flex;
    }

    .navmenu .dropdown ul {
        min-width: 300px !important;
    }

    .navmenu .submenu a {
        padding: 0px 0px;
    }

    .navmenu .dropdown ul.submenu li::before {
        opacity: 0 !important;
    }

    .navmenu .dropdown ul.submenu li a::before {
        position: absolute;
        content: '';
        left: 0;
        right: 0;
        bottom: -1px;
        border-bottom: 1px solid var(--nav-hover-color);
        width: 70%;
        height: 1px;
    }


    .navmenu .dropdown ul.submenu li a {
        width: auto;
    }

    .submenu.rgt li {
        margin-bottom: -10px;
    }

    .submenu.rgt li {
        margin-bottom: -10px;
    }

        .submenu.rgt li a::before {
            border-bottom: 0px;
        }

        .submenu.rgt li a {
            color: #4B5563;
        }

    .submenu.rgt {
        min-width: auto !important;
        left: 0px !important;
    }

        .submenu.rgt li a::before {
            display: none;
        }

    .lang-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.4rem 1rem;
        border: none;
        border-radius: 24px;
        background: #E6EBF3;
        cursor: pointer;
        height: 40px;
    }

    .lang-code {
        font-weight: 600;
        font-size: 16px;
        color: #000000;
    }

    .material-symbols-outlined {
        font-size: 16px;
        color: #6b7b94;
        line-height: 1;
    }

    .lang-pill:hover {
        background: #E6EBF3;
    }

    .btn-getstarted.ad-spl {
        width: auto !important;
        background: var(--default-color);
        color: #fff;
        border-color: var(--default-color);
    }

    .heaDright {
        gap: 12px !important;
    }

        .heaDright li:hover::before {
            opacity: 0;
        }
    /* 6 steps */
    .study-title {
        font-size: 36px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .title-underline {
        width: 60px;
        height: 4px;
        background-color: #ff6b35;
        border-radius: 2px;
    }
    /* Step Card Styling */
    .step-card {
        padding: 24px;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        width: calc(33.33% - 24px);
        max-width: 400px;
        text-align: center;
        display:flex;
        flex-direction:column;
    }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
    /* Step Icon Wrapper */
.step-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px !important;
    position: relative;
    opacity: 0.9;
}

    .step-icon {
        font-size: 32px;
        color: white;
    }

    .step-icon1 {
        font-size: 32px;
        color: var(--default-color);
    }

    .step-icon2 {
        font-size: 32px;
        color: #186ad7;
    }

    .step-icon3 {
        font-size: 32px;
        color: #22a853;
    }

    .step-icon4 {
        font-size: 32px;
        color: #711bce;
    }

    .step-icon5 {
        font-size: 32px;
        color: #ce1b81;
    }

    .step-icon6 {
        font-size: 32px;
        color: #1b45d5;
    }
    /* Icon Background Colors */
    .icon-orange {
        background: #ffedd5;
    }

    .icon-blue {
        background: #dbeafe;
    }

    .icon-green {
        background: #dcfce7;
    }

    .icon-purple {
        background: #f3e8ff;
    }

    .icon-pink {
        background: #fce7f3;
    }

    .icon-light-blue {
        background: #e0e7ff;
    }
    /* Step Number Styling */
    .step-number {
        font-size: 14px;
        font-weight: 600;
        color: #ff6b35;
        letter-spacing: 1px;
        margin-bottom: 12px;
        margin-top: 12px;
    }
    /* Step Title Styling */
.step-title {
    font-size: 20px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.2;
    font-family: var(--default-font);
}
    /* Step Description Styling */
    .step-description {
        font-size: 16px;
        color: #bcbed7;
        line-height: 1.2;
        margin-bottom: 0;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    /* Responsive Design */
    @media (max-width: 767.98px) {
        .study-title {
            font-size: 2rem;
        }

        .step-card {
            padding: 1.5rem;
        }

        .step-icon-wrapper {
            width: 70px;
            height: 70px;
        }

        .step-icon {
            font-size: 1.75rem;
        }

        .step-title {
            font-size: 1.3rem;
        }

        .step-description {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 575.98px) {
        .study-title {
            font-size: 1.75rem;
        }

        .step-card {
            padding: 1rem;
        }

        .step-icon-wrapper {
            width: 60px;
            height: 60px;
        }

        .step-icon {
            font-size: 1.5rem;
        }

        .step-title {
            font-size: 1.2rem;
        }

        .step-description {
            font-size: 0.9rem;
        }
    }
    /* Hover Effects */
    .step-icon-wrapper:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }
    /* Print Styles */
    @media print {
        .step-card:hover {
            transform: none;
        }

        .step-icon-wrapper:hover {
            transform: none;
        }
    }

    .main-container {
        width: 100%;
        height: auto;
        opacity: 1;
        background-color: #f5f0e8;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    /* Top Section */
    .top-section {
        flex: 1;
        padding: 63px 0px 34px 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        background: rgba(255, 240, 222,0.97);
    }
    /* Button Container */
    .button-container {
        display: flex;
        gap: 18px;
        margin-bottom: 26px;
        align-items: flex-start;
        justify-content: center;
    }
    /* Buttons */
.explore-btn {
    border-radius: 6px;
    padding: 16px 24px;
    gap: 0px;
    background-color: #ff6b35;
    color: white;
    border: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Smooth transitions */
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Pulse animation */
  animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.6);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 107, 53, 0);
        transform: scale(1.03);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
        transform: scale(1);
    }
}



        .explore-btn:hover {
            background-color: #e55a2b;
            color: white;
        }

    .apply-btn {
        /* width: 131px;
    height: 51px;*/
        border-radius: 6px;
        padding: 15px 24px;
        gap: 4px;
        background-color: transparent;
        color: #ff6b35;
        border: 2px solid #ff6b35;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .apply-btn:hover {
            background-color: #ff6b35;
            color: white;
            /*  transform: translateY(-1px);*/
        }
    /* Navigation and Search Container */
    .nav-search-container {
        width: 100%;
        max-width: 86%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        display:none !important;
    }
    /* Navigation */
    .navigation-group {
        width: 100%;
        height: 24px;
        padding-left: 0px;
        gap: 0px;
        display: flex;
        align-items: center;
    }

    .nav-item {
        font-size: 16px;
        font-weight: 500;
        color: #666;
        cursor: pointer;
        padding: 8px 0;
        margin-right: 28px;
        transition: color 0.3s ease;
        position: relative;
    }

        .nav-item.active {
            color: #ff6b35;
        }

            .nav-item.active::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 100%;
                height: 3px;
                background-color: #ff6b35;
                border-radius: 2px;
            }

        .nav-item:hover {
            color: #ff6b35;
        }
    /* Search Container */
    .search-container {
        width: 100%;
        margin-left: 0px;
    }

    .search-wrapper {
        width: 100%;
        height: 50px;
        position: relative;
    }

    .search-input {
        width: 100%;
        height: 50px;
        border-radius: 25px;
        border: 1px solid #ddd;
        padding: 0 60px 0 20px;
        font-size: 16px;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

        .search-input:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }

    .search-button {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #ff6b35;
        border: none;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .search-button:hover {
            background-color: #e55a2b;
            transform: translateY(-50%) scale(1.05);
        }

        .search-button i {
            font-size: 16px;
        }
    /* Search Dropdown */
    .search-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #ddd;
        border-top: none;
        border-radius: 0 0 10px 10px;
        max-height: 200px;
        overflow-y: auto;
        z-index: 1000;
        display: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

        .search-dropdown.show {
            display: block;
        }

    .dropdown-item {
        padding: 12px 20px;
        cursor: pointer;
        font-size: 14px;
        color: #333;
        border-bottom: 1px solid #f0f0f0;
        transition: background-color 0.2s ease;
    }

        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #ff6b35;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item.no-results {
            color: #999;
            cursor: default;
        }

            .dropdown-item.no-results:hover {
                background-color: transparent;
                color: #999;
            }
    /* Bottom Section */
    .bottom-section {
        background-color: rgba(255,255,255,0.97);
        padding: 75px 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: auto;
    }
    /* Stats Container */
    .stats-container {
        width: 100%;
        height: auto;
        display: flex;
        justify-content:space-evenly;
        align-items: center;
        max-width: 86%;
    }

    .stat-item {
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }

    .stat-number {
        font-size: 58px;
        font-weight: bold;
        line-height: 1;
        margin: 0;
    }

        .stat-number.institutes {
            color: #ff6b35;
        }

        .stat-number.courses {
            color: #4285f4;
        }

        .stat-number.students {
            color: #34a853;
        }

    .stat-label {
        font-size: 24px;
        color: #666;
        font-weight: 500;
        margin: 0;
    }
    /* Study section start*/
    .underline {
        width: 60px;
        height: 4px;
        background: #ff6b35;
        margin: 0 auto;
        border-radius: 2px;
    }

    .card-custom {
        padding: 40px 20px;
        text-align: center;
        border-radius: 15px;
        border: none;
        height: auto;
        width: calc(33.3% - 24px);
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        font-size: 2.5rem;
        color: #fff
    }

    .bg-orange {
        background-color: #ffeee6
    }

    .bg-orange-dark {
        background-color: #ff6b35
    }

    .bg-blue {
        background-color: #e6f3ff
    }

    .bg-blue-dark {
        background-color: #0066cc
    }

    .bg-green {
        background-color: #e6f7e6
    }

    .bg-green-dark {
        background-color: #2d8f47
    }

    .study-content-heading {
        font-family: var(--default-font);
        font-weight: 700;
        font-size: 20px;
        color:#000;
    }

    .study-content {
        font-family: var(--default-font);
        font-weight: 400;
        font-size: 20px;
    }

    .study-content-color {
        color: #06038D;
    }
    /* Study section end*/
    /* Student testimonials start*/



    .success-stories-section {
        padding: 60px 0;
    }

    .section-title {
        font-family: var(--default-font);
        font-weight: 700;
        font-size: 40px;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
    }

    .story-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        border: none;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: auto;
        width: calc(33.3% - 24px);
    }

        .story-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        }

    .image-container {
        position: relative;
        height: 395px;
        overflow: hidden;
    }

    .story-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #2c3e50;
        transition: all 0.3s ease;
        cursor: pointer;
    }

        .play-button:hover {
            background: white;
            transform: translate(-50%, -50%) scale(1.1);
        }

    .card-body {
        padding: 30px 25px;
    }

    .testimonial-text {
        font-family: var(--default-font);
        font-weight: 400;
        font-style: Italic;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0%;
    }

    .student-info {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .student-avatar {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        object-fit: cover;
    }

    .student-details h6 {
        margin: 0;
        font-weight: 600;
        color: #2c3e50;
        font-size: 1rem;
    }

    .student-country {
        font-size: 0.85rem;
        color: #6c757d;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .flag-icon {
        width: 16px;
        height: 12px;
        border-radius: 2px;
    }

    .flag-zimbabwe {
        background: linear-gradient(to bottom, #009639 0%, #009639 14%, #ffffff 14%, #ffffff 28%, #ce1126 28%, #ce1126 42%, #000000 42%, #000000 57%, #ce1126 57%, #ce1126 71%, #ffffff 71%, #ffffff 85%, #009639 85%, #009639 100%);
    }

    .flag-egypt {
        background: linear-gradient(to bottom, #ce1126 0%, #ce1126 33%, #ffffff 33%, #ffffff 66%, #000000 66%, #000000 100%);
    }

    .flag-china {
        background: #de2910;
    }

    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
            margin-bottom: 40px;
        }

        .image-container {
            height: 200px;
        }

        .card-body {
            padding: 20px;
        }
    }
    /* Student Testimonials End*/
    /* New Footer Start*/
.FooterLayout {
    background-image: url('/images/bg/footer-bg-Image.png'); /* Your background image path */
    background-repeat: no-repeat;
    background-size: cover; /* Or 'contain' depending on your image */
    background-position: center;
    background-blend-mode: normal; /* Blends image with bg color */
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    /*min-height: auto;
        background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);*/
    background-color: #1a2c5b;
    color: white;
    font-family: var(--default-font);
    padding: 0px 0px;
}

.footer-subtitle {
    font-size: 20px;
    margin-bottom: 51px;
    opacity: 0.9;
    line-height: 1.6;
    color: #fff;
    font-weight: 300;
    font-family: inherit;
}

.btn-apply {
    background-color: white;
    color: #1e3a5f;
    padding: 12px 27px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

        .btn-apply:hover {
            background-color: #f8f9fa;
            color: #1e3a5f;
            transform: translateY(-2px);
        }

    .btn-counselor {
        background-color: transparent;
        color: white;
        padding: 12px 30px;
        font-weight: 600;
        border: 2px solid white;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

        .btn-counselor:hover {
            background-color: white;
            color: #1e3a5f;
            transform: translateY(-2px);
        }

    .footer-section-new {
        padding: 60px 0px 47px 0px;
        text-align: center;
    }

    .footer-section {
        border-top: 1px solid #fff;
        padding: 58px 0 36px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }

        .footer-logo i {
            font-size: 25px;
            color: #ff6b35;
            margin-right: 10px;
        }

        .footer-logo h5 {
            margin: 0;
            font-weight: 600;
            font-size: 20px;
            font-family: inherit;
            color: #fff;
        }

        .footer-description {
            opacity: 0.8;
            color: #fff;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 14px;
        }

    .social-icons a {
        color: white;
        font-size: 30px;
        margin-right: 15px;
        transition: color 0.3s ease;
    }

        .social-icons a:hover {
            color: #ff6b35;
        }

    .footer-title-new {
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 24px;
        font-family: var(--default-font);
        color: #fff;
    }

.footer-menu-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 34px;
}

    .footer-cnt-head {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 25px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-cnt-box {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-cnt-box li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-cnt-text a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 16px;
        font-weight: 400;
    }

    .footer-links a:hover {
        color: #ff6b35;
    }

    .footer-cnt-text a:hover {
        color: #ff6b35;
    }

    .footer-links-section {
        margin-bottom: 30px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

        .contact-item i {
            color: var(--default-color);
            margin-right: 15px;
            font-size: 25px;
        }

    .contact-text {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
        font-size: 16px;
        font-weight: 400;
    }

    @media (max-width: 768px) {
        .footer-title-new {
            font-size: 25px;
        }

        .btn-apply, .btn-counselor {
            display: block;
            width: 100%;
            margin: 10px 0;
        }
    }
    /* New Footer End*/
    /*Popular locations start*/

    .content-sub-title {
        text-align: center;
        padding: 30px 0;
        position: relative;
    }

        .content-sub-title h2 {
            font-size: 40px;
            font-weight: 700;
            position: relative;
        }

            .content-sub-title h2 span {
                color: var(--accent-color);
            }

    .sub-container {
        width: auto;
        height: auto;
        top: 0px;
        justify-content: space-between;
        padding: 60px 0px 30px 0px;
        opacity: 1;
        background: #F9FAFB;
        display: flex;
    }


    .popular-container {
        width: auto;        
        /*display: flex;
    gap: 40px;*/
        opacity: 1;
    }

        .popular-container .sidebar {
            /*padding: 20px;*/
            /* border-right: 1px solid #e2e8f0;*/
            background: #fafbfc;
            overflow-y: auto;
        }

    .map-container {
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        /*    background: white;*/
        position: relative;        
        opacity: 1;        
    }


    h1 {
        font-size: 1.5rem;
        color: #2d3748;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .accordion {
        /*    border: 1px solid #e2e8f0;*/
        border-radius: 12px;
        /*    margin-bottom: 30px;*/
        overflow: hidden;
        padding: 0px 0px 15px 0px;
        border-radius: 12px;
    }

    .accordion-header {
        background: #ffffff;
        padding: 0px 0px;
        cursor: pointer;
        /*  border-bottom: 1px solid #e2e8f0;*/
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.2s ease;
        font-size: 20px;
        font-weight: 400;
        color: #1F2937;
        border-radius: 12px;
    }
        /*.accordion {
    margin-bottom: 40px;
    overflow: hidden;
    background: #FFFFFF;
    height: 48px;
    padding: 12px 24px 12px 24px;
    border-radius: 12px;
}

.accordion-header {*/
        /*    background: #f7fafc;
    padding: 12px 24px;
    cursor: pointer;
    border-bottom: 1px solid #e2e8f0;
    display: flex;*/
        /*justify-content: space-between;
    transition: all 0.2s ease;
    font-size: 20px;
    font-weight: 400;
    color: #1F2937;
    line-height: 100%;
    font-family: var(--default-font);
    border-radius: 12px;
}*/




        .accordion-header:hover {
            background: #edf2f7;
        }

        .accordion-header.active {
            background: #ffffff;
            color: #FF671F;
            border-bottom-color: #ff6b35;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            border-bottom-left-radius: 0px;
            border-bottom-right-radius: 0px;
            font-family: Inter;
            font-weight: 600;
            font-size: 20px;
            line-height: 100%;
            letter-spacing: 0%;
            box-shadow: none;
            padding-bottom: 7px;
        }

    .accordion-icon {
        font-size: 0.7rem;
        transition: transform 0.2s ease;
    }

    .accordion-header.active .accordion-icon {
        transform: rotate(180deg);
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: white;
    }

        .accordion-content.active {
            max-height: 200px;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            box-shadow: none;
        }

    .destination-card {
        padding: 0px 15px 15px 15px;
        /* border-left: 3px solid #ff6b35;*/
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }


    .destination-description {
        color: #3a4c66;
        line-height: 1.5;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .view-link {
        color: #3182ce;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
    }

        .view-link:hover {
            text-decoration: underline;
        }

    .india-map {
        width: 100%;
        /*    max-width: 400px;*/
        height: auto;
    }

    .state {
        fill: #e8f0fe;
        stroke: rgb(158, 174, 197);
        stroke-width: 1px;
        cursor: auto;
        transition: all 0.2s ease;
    }
        /*    .state:hover {
        fill: #c8e6c9;
        stroke: #4caf50;
        stroke-width: 1;
    }*/

        .state.active {
            fill: #bbc9f3;
        }

    .city-marker {
        fill: url(#cityGradient);
        filter: url(#dropshadow);
        stroke: rgba(255, 255, 255);
        stroke-width: 4.28px;       
        /* transition: all 0.2s ease;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));*/
        display: none;
        /*border: 4.28px solid #FFFFFF59;
            box-shadow: 0px 14.97px 14.97px 0px #00000040;*/
        opacity: 1;
    }

        .city-marker:hover {
            fill: url(#cityGradient);
            r: 6;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
        }

        .city-marker.visible {
            display: block !important;
        }




    .connection-line {
        stroke: rgba(104, 104, 104, 1);
        stroke-width: 2;
        stroke-dasharray: 5,5;
        fill: none;
        opacity: 0;
    }

        .connection-line.active {
            opacity: 1;
        }

    .connection-line1 {
        stroke: rgba(104, 104, 104, 1);
        stroke-width: 2;
        stroke-dasharray: 5,5;
        fill: none;
        opacity: 0;
    }

        .connection-line1.active {
            opacity: 1;
        }
    /* SVG Tooltip */
    .svg-tooltip-group {
        transition: all 0.3s ease;
        transform-origin: center;
        opacity: 0;
        transform: scale(0.8);
    }

        .svg-tooltip-group.visible {
            opacity: 1;
            transform: scale(1);
        }

    section.step-section .sub-container .content-sub-title {
        margin-bottom: 0px;
        margin-left: 0px;
    }

    @media (max-width: 768px) {
        .container {
            grid-template-columns: 1fr;
            height: auto;
        }

        .sidebar {
            order: 2;
            max-height: 500px;
        }
    }
    /*Popular locations end*/
    /*Alumini Success stories start*/

    .Alumini-container {
        width: auto;
        height: 797px;
        top: 1936px;
        padding-top: 46px;
        padding-right: 80px;
        padding-bottom: 46px;
        padding-left: 80px;
        gap: 40px;
        opacity: 1;
        background: #F9FAFB;
    }

        .Alumini-container .card {
            width: 395px;
            height: 615px;
            opacity: 1;
            border-radius: 24px;
            border-width: 1px;
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            box-shadow: 2px 4px 4px 1px #00000026;
            padding: 0px;
        }

        .Alumini-container .img-fluid {
            height: 424px;
            width: 395px;
            left: -1px;
            opacity: 1;
            border-top-left-radius: 24px !important;
            border-top-right-radius: 24px !important;
            border-bottom-left-radius: 0px !important;
            border-bottom-right-radius: 0px !important;
        }

        .Alumini-container p {
            width: auto;
            height: 72px;
            top: 448px;
            left: 32px;
            opacity: 1;
        }

            .Alumini-container p.card-text {
                width: auto;
                height: auto;
                font-family: Inter;
                font-weight: 400;
                font-style: normal;
                font-size: 16px;
                line-height: 100%;
                letter-spacing: 0%;
                color: #4B5563;
                margin-left: 0px;
            }



        .Alumini-container .card-profile-img {
            width: 50px;
            height: 50px;
            top: 532.64px;
            left: 24px;
            opacity: 1;
            border-radius: 204px;
        }
    /*    .card-profile-img {
        width: 56px;
        height: 56px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid #fff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.07);
        margin-right: 12px;
    }*/

    .play-button {
        width: 58px;
        height: 58px;
        background: rgba(255,255,255,0.88);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
        font-size: 2rem;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        cursor: pointer;
    }
    /*Alumini Success stories end*/
    /*Events section Landing Page starts*/
    .events-container {
        height: 460px;
        background-color: #f8f9fa;
        display: flex;
        align-items: center;
        padding: 40px 0;
    }

    .section-title {
        color: #2c3e50;
        font-size: 50px;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }


    .title-underline {
        width: 122px;
        height: 3px;
        background-color: var(--default-color);
        margin: 0 auto;
        border-radius: 3px;
    }


    .event-card {
        background: #fff;
        border-radius: 12px;
        padding: 25px 20px 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        min-height: 250px;
        display: flex;
        flex-direction: column;
        width: calc(33.3% - 24px);
    }

        .event-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }


    .event-date {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .calendar-icon {
        color: #5ba8f7;
        font-size: 16px;
        margin: 0 8px 0 0px;
        padding: 5px 10px;
        border-radius: 8px;
        background-color: #ddf1fe;
    }

    .date-text {
        color: #4B5563;
        font-size: 14px;
        font-weight: 400;
    }


    .event-title {
        color: #2c3e50;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 12px;
        line-height: 1.3;
    }


    .event-description {
        color: #4B5563;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        margin-bottom: 20px;
        flex-grow: 1;
    }


    .register-btn {
        background: var(--default-color);
        color: #fff;
        border: none;
        border-radius: 6px;
        padding: 12px 0;
        font-size: 14px;
        font-weight: 500;
        width: 100%;
        transition: all 0.2s ease;
        cursor: pointer;
    }

        .register-btn:hover {
            background: linear-gradient(135deg, #f55a2c 0%, #e54925 100%);
            /* transform: translateY(-1px);*/
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }

        .register-btn:active {
            transform: translateY(0);
        }
    /* Mobile-first responsive breakpoints */
    @media (max-width: 575.98px) {
        .events-container {
            height: auto;
            min-height: auto;
            padding: 30px 0;
        }

        .section-title {
            font-size: 1.75rem;
        }

        .event-card {
            margin-bottom: 20px;
        }
    }

    @media (min-width: 576px) and (max-width: 767.98px) {
        .events-container {
            height: auto;
            min-height: 460px;
            padding: 35px 0;
        }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
        .events-container {
            height: auto;
            min-height: 460px;
            padding: 40px 0;
        }

        .event-card {
            min-height: 220px;
        }
    }

    @media (min-width: 992px) {
        .events-container {
            height: auto;
        }

        .event-card {
            min-height: 220px;
        }
    }
    /*Events section Landing Page End*/
    /*Things to do in India start*/
    .breadcrumb-nav {
        font-size: 14px;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .breadcrumb-nav a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.2s;
        }

            .breadcrumb-nav a:hover {
                color: white;
            }

    .breadcrumb-separator {
        color: rgba(255, 255, 255, 0.7);
        margin: 0 4px;
    }

    .main-title {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .read-time {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
    }

        .read-time i {
            font-size: 16px;
        }

    .back-arrow {
        color: white;
        font-size: 18px;
        margin-right: 12px;
        cursor: pointer;
    }

    @media (max-width: 768px) {
        .main-title {
            font-size: 36px;
        }

        .header-section {
            padding: 30px 0 40px 0;
        }
    }

    section.heading_banner.spl {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        margin: 64px 0 100px;
        margin-top: 64px;
        padding: 40px 0px;
        background-image: linear-gradient(97deg, #0d2f5e 8%, #3d81b8 108%), linear-gradient(to bottom, #d9d9d9, #d9d9d9);
        margin-top: 0;
        height: 247px;
    }


    .main-title {
        height: 71px;
        flex-grow: 0;
        font-family: IBMPlexSans;
        font-size: 48px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.49;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
    }

    .breadcrumb-nav a.active {
        font-weight: bold;
    }

    .content-section {
        margin-bottom: 56px;

    }

    .content-section p:last-child{
        margin-bottom:0px;
    }

    .content-section .section-title {
        height: auto;
        align-self: stretch;
        flex-grow: 0;
        font-family: Inter;
        font-size: 28px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #1a2c5b;
    }
    /*Things to do in India end*/
    /*Indian higher Education start*/
    .spl-text {
        height: 156px;
        align-self: stretch;
        flex-grow: 0;
        font-family: IBMPlexSans;
        font-size: 40px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.2;
        letter-spacing: normal;
        text-align: left;
        color: #000;
    }

        .spl-text .text-style-1 {
            font-size: 48px;
            line-height: 1.2;
        }

        .spl-text .text-style-2 {
            font-size: 24px;
            font-weight: normal;
            line-height: 1.2;
        }

    .mb-56 {
        margin-bottom: 56px;
    }

    .mb-46 {
        margin-bottom: 56px;
    }

    .Hero-Description {
        align-self: stretch;
        flex-grow: 0;
        font-family: Inter;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.53;
        letter-spacing: normal;
        text-align: left;
        color: #242424;
    }

    .content-wrapper h3.section-sub {
        font-size: 24px !important;
        font-weight: bold !important;
        color: #000 !important;
        margin-bottom: 10px !important;
        margin-top: 20px;
    }

    .section-subtitle {
        font-size: 18px;
        color: #333;
        margin-bottom: 20px;
        font-weight: normal;
    }

    .university-item {
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 1.5;
        color: #333;
    }

        .university-item li{
            margin-bottom:15px;

        }

        .university-number {
            font-weight: bold;
            color: #000;
        }

    .university-name {
        font-weight: bold;
        color: #000;
    }

    .university-description {
        font-weight: normal;
        color: #333;
    }

    .note-section {
        margin-top: 24px;
        font-size: 18px;
        line-height: 1.5;
        color: #333;
    }

    .note-label {
        font-weight: bold;
        color: #000;
    }

    .note-text {
        font-weight: normal;
        color: #333;
    }

    @media (max-width: 768px) {
        .content-wrapper {
            padding: 0 15px;
        }

        .section-title {
            font-size: 16px;
        }

        .university-item {
            font-size: 13px;
        }
    }
    /*Indian higher Education end*/
    /*Explore All courses start*/
    section.heading_banner, .spl-banner {
        height: auto;
        margin: 0px 0px 84px 0px;
        padding: 72px 0px;
        background-image: linear-gradient(105deg, #fff0dd 0%, #eff6fe 100%);
    }

    .innerbg-img.spl-img {
        height: 595px;
        margin: 0 0 29px;
    }
    /*Explore All courses End*/
    /*Region - Ten reasons to study in India*/


    .reasons-to-study-in-India {
        flex-grow: 0;
        background-color: #fff;
    }


    .Home-Scholarships {
        flex-grow: 0;
        padding: 0 147px 0 0;
    }

    .content-flex {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 56px;
        margin: 100px 185px 22px 184px;
        padding: 0;
    }

    .ten-reasons-title-img {
        align-self: stretch;
        flex-grow: 0;
        border-radius: 16px;
        box-shadow: 2px 4px 4px 1px rgba(0, 0, 0, 0.15);
        margin-bottom:30px;
    }

    .ten-reasons-title-img img{
        width:100%;
    }

    .hero-description {
        align-self: stretch;
        flex-grow: 0;
        font-family: Inter;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.53;
        letter-spacing: normal;
        text-align: left;
        color: #242424;
    }

    .hero-description-3 {
        flex-grow: 0;
        font-family: Inter;
        font-size: 20px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
    }

    .hero-description-head {
        align-self: stretch;
        flex-grow: 0;
        font-family: Inter;
        font-size: 28px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #1a2c5b;
    }

    .hero-description-1 {
        align-self: stretch;
        flex-grow: 0;
        font-family: Inter;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.53;
        letter-spacing: normal;
        text-align: left;
        color: #242424;
    }

    .hero-description-2 {
        align-self: stretch;
        flex-grow: 0;
        font-family: Inter;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.53;
        letter-spacing: normal;
        text-align: left;
        color: #242424;
    }

    .Frame-1000004245 {
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
        padding: 0;
    }

    .Frame-1000004246 {
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
        padding: 0;
    }
    /*End Region Ten reasons*/

    .dis-none {
        display: none;
    }
    /* Student Registeration starts*/
    .regContainer {
        padding: 30px;
    }

    .FormHeading {
        font-family: IBMPlexSans;
        font-size: 24px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.17;
        letter-spacing: 0.75px;
        text-align: left;
        color: #415a77;
    }

    label {
        font-family: Inter;
        font-size: 16px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #4b5563;
        margin-bottom: 8px;
    }

    .mb-20 {
        margin-bottom: 20px;
    }

    input::placeholder {
        font-family: Inter;
        font-size: 14px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #dcdcdc;
    }

    .privacyText {
        font-family: Inter;
        font-size: 14px;
        font-weight: 400;
        color: #415a77;
    }

    .form-check-input:checked {
        background-color: var(--default-color);
        border-color: var(--default-color);
    }

    .cs-model {
        background: rgba(0,0,0,0.5);
    }

    .main-container {
        background-image: url('/images/bg/pattern-img.png');
    }
    /* Student Registeration Ends*/


    .cs-container {
        width: 92%;
        max-width: 1500px;
        display: flex;
        margin: 0 auto;
    }

    .cs-pd-b-lg {
        padding: 0px 0px 60px 0px;
    }

    .cs-steps-bg {
        padding: 60px 0px;
    }

        .cs-steps-bg .tt {
            text-align: center;
            margin-bottom: 60px;
        }

        .cs-steps-bg .cnt {
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
            align-items: stretch;
            gap: 36px;
        }

    .card-custom .study-content {
        margin-bottom: 0px;
    }

    .cs-events-bg {
        background-image: linear-gradient(to bottom, #fff 97%, #f0f7ff 0%);
    }


    .cs-fn-bg .bg {
        padding: 47px 40px;
        border-radius: 12px;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        border: solid 0 #e5e7eb;
        background-image: linear-gradient(103deg, #fff0dd 0%, #eff6fe 57%);
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .cs-fn-bg .cnt .img {
        margin: -120px auto -120px;
    }

    .cs-fn-bg .tt, .cs-fn-bg .cnt {
        width: 50%;
    }

        .cs-fn-bg .tt .primary-btn {
            width: auto;
            height: 60px;
            flex-grow: 0;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 4px;
            padding: 20px 24px;
            border-radius: 8px;
            border: solid 0 #e5e7eb;
            background-color: #ff671f;
            color: #fff;
        }

        .cs-fn-bg .tt h2 {
            flex-grow: 0;
            font-size: 32px;
            font-weight: bold;
            font-stretch: normal;
            font-style: normal;
            line-height: 0.94;
            letter-spacing: normal;
            text-align: left;
            color: #1f2937;
        }

        .cs-fn-bg .tt p {
            align-self: stretch;
            flex-grow: 0;
            font-size: 16px;
            font-weight: normal;
            font-stretch: normal;
            font-style: normal;
            line-height: normal;
            letter-spacing: normal;
            text-align: left;
            color: #797f88;
            margin-bottom: 60px;
        }
    /*
.cs-study-bg {
    padding: 60px 0px;
}
.clear-link {
    margin-top: 15px;
    text-decoration: underline;
}
*/



    .view-toggle {
        display: inline-flex;
        align-items: center;
        border: 1px solid #dee2e6;
        border-radius: 50px;
        padding: 6px 12px;
        background-color: #fff;
    }

    .view-option {
        display: flex;
        align-items: center;
        gap: 6px;        
        color: #6c757d;
        cursor: pointer;
        padding: 6px 12px;
        border-radius: 50px;
        transition: all 0.2s ease-in-out;        
    }

        .view-option.active {
            color: var(--default-color); /* Bootstrap orange 
    }*/

            .divider {
                width: 1px;
                height: 24px;
                background-color: #dee2e6;
                margin: 0 6px;
            }
            /* Student Dashboard Starts*/
            .section-rectangle {
                flex-grow: 0;
                padding: 0 0 101px;
                background-color: #d9d9d9;
            }

            .popular-locations-section {
                background: linear-gradient(180deg, #f3f7fb 0%, #eef5fb 100%);
                padding: 60px 15px;
            }

            .cs-calc-bg {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 48px;
                padding: 72px 0px;
                width: 100%;
            }

            .popular-card {
                background: #ffffff;
                border-radius: 16px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
                overflow: hidden;
                padding: 40px 20px;
            }

            .popular-header {
                text-align: center;
                margin-bottom: 30px;
            }

                .popular-header h2 {
                    font-weight: 700;
                    color: #0f1724;
                    font-size: 28px;
                }

            .title-line {
                width: 70px;
                height: 4px;
                background: linear-gradient(90deg, #ff7a2b, #ff5f1f);
                margin: 12px auto 0;
                border-radius: 4px;
            }

            .map-container {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            svg.india-map {
                max-width: 680px;
                width: 100%;
                height: auto;
            }

            .city-marker {
                fill: url(#cityGradient);
                stroke: rgba(255, 255, 255, 0.9);
                stroke-width: 3px;
                filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
                cursor: default;
            }
            /*.connection-line,
.connection-line1 {
    stroke: rgba(104, 104, 104, 0.95);
    stroke-width: 2;
    stroke-dasharray: 5 5;
    fill: none;
    opacity: 1;
}*/
            /*.svg-tooltip-group {
    opacity: 1;
    transform: scale(1);
}*/

            .svg-tooltip-group text {
                font-family: 'Segoe UI', Roboto, sans-serif;
            }

            @media (max-width: 768px) {
                .popular-card {
                    padding: 20px 10px;
                }

                .popular-header h2 {
                    font-size: 22px;
                }

                svg.india-map {
                    max-width: 100%;
                }
            }



            .popular-universities h2 {
                font-weight: 800;
                color: #0f1724;
            }

            .title-line {
                width: 70px;
                height: 3px;
                background: linear-gradient(90deg, #ff7a2b, #ff5f1f);
                border-radius: 3px;
                margin-top: 8px;
            }

            .view-card {
                background-color: #fff;
                border-radius: 20px;
            }

            .card {
                border: none;
                border-radius: 16px;
                transition: all 0.3s ease;
            }

                .card:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
                }

            .btn-outline-warning {
                color: #ff5f1f;
                border-color: #ff5f1f;
            }

                .btn-outline-warning:hover {
                    background-color: #ff5f1f;
                    color: #fff;
                }
            /* Highlight active button */
            .btn-outline-secondary.active {
                background-color: #ff5f1f;
                color: #fff;
                border-color: #ff5f1f;
            }

                .btn-outline-secondary.active:hover {
                    color: #fff;
                }
            /* Responsive tweak */
            @media (max-width: 768px) {
                .view-card {
                    padding: 1.5rem;
                }
            }

            .HeadingContainer {
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                gap: 20px;
                margin-bottom: 0px;
                padding: 40px 80px;
                background-image: linear-gradient(97deg, #0d2f5e 8%, #3d81b8 108%), linear-gradient(to bottom, #d9d9d9, #d9d9d9);
            }

            .pageHeading {
                font-family: var(--heading-font);
                font-size: 48px;
                font-weight: 500;
                text-align: left;
                color: #fff;
            }


            .separator {
                color: white;
                margin: 0 4px;
            }

            .current-page-link {
                font-weight: 500;
                font-size: 17px;
                text-decoration: none;
                color: #fff;
            }

            .home-link {
                font-size: 15px;
                font-weight: 400;
                text-decoration: none;
                color: #fff;
            }


            .cs-col-3 .dts-cnt {
                width: calc(33.3% - 20px);
            }

            .cs-col-2 .dts-cnt {
                width: calc(50% - 20px);
            }

            .cs-col-3, .cs-col-2 {
                display: flex;
                gap: 30px;
                align-items: flex-start;
                justify-content: flex-start;
                flex-wrap: wrap;
            }

            .cs-ls-vw .ls .cnt .dts-cnt p {
                position: relative;
                padding-left: 25px;
            }

                .cs-ls-vw .ls .cnt .dts-cnt p i {
                    position: absolute;
                    left: -2px;
                    top: 5px;
                }




            .ce-rs-bg {
                padding-top: 60px;
                background: #eee;
            }

            .cs-calc-header {
                display: flex;
                flex-direction: column;
                gap: 8px;
                width: 100%;
            }

                .cs-calc-header .tt {
                    font-family: 'IBM Plex Sans', Helvetica, sans-serif;
                    font-weight: 600;
                    font-size: 40px;
                    color: #1f2937;
                    line-height: 1.2;
                }

                .cs-calc-header .sb-tt {
                    font-family: 'Inter', Helvetica, sans-serif;
                    font-weight: 400;
                    font-size: 16px;
                    color: #9f9f9f;
                    line-height: 1.5;
                }

            .cs-calc-bg .cnt {
                display: flex;
                flex-direction: column;
                width: 100%;
                gap: 56px;
            }

            .cs-calc-bg .cities-nav {
                display: flex;
                align-items: center;
                gap: 16px;
                flex-wrap: wrap;
            }

            .cs-calc-bg .city-btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 12px 22px;
                background: #ffffff;
                border: 2px solid rgba(94, 130, 138, 0.2);
                border-radius: 62px;
                font-family: 'Poppins', Helvetica, sans-serif;
                font-size: 20px;
                font-weight: 400;
                color: #415a77;
                letter-spacing: 0.12px;
                cursor: pointer;
                transition: all 0.3s ease;
                position: relative;
            }

                .cs-calc-bg .city-btn:hover {
                    border-color: rgba(94, 130, 138, 0.4);
                }

            .cs-calc-bg .city-btn-active {
                border: none;
                font-weight: 500;
                background: linear-gradient(24deg, rgba(1, 86, 210, 1) 0%, rgba(33, 78, 144, 1) 46%, rgba(55, 132, 244, 1) 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }

                .cs-calc-bg .city-btn-active::before {
                    content: '';
                    position: absolute;
                    inset: 0;
                    padding: 2px;
                    border-radius: 62px;
                    background: linear-gradient(24deg, rgba(1, 86, 210, 1) 0%, rgba(33, 78, 144, 1) 46%, rgba(55, 132, 244, 1) 100%);
                    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
                    -webkit-mask-composite: xor;
                    mask-composite: exclude;
                    pointer-events: none;
                }

            .cs-calc-bg .more-cities-btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                padding: 12px 22px;
                background: #ffffff;
                border: none;
                border-radius: 62px;
                font-family: 'Poppins', Helvetica, sans-serif;
                font-size: 20px;
                font-weight: 500;
                color: #0067ff;
                letter-spacing: 0.12px;
                cursor: pointer;
                transition: opacity 0.3s ease;
            }

                .cs-calc-bg .more-cities-btn:hover {
                    opacity: 0.8;
                }

                .cs-calc-bg .more-cities-btn span {
                    text-decoration: underline;
                }

                .cs-calc-bg .more-cities-btn svg {
                    color: #0067ff;
                }

            .cs-exp-cnt {
                display: flex;
                align-items: flex-start;
                gap: 46px;
            }

            .cs-exp-list {
                display: flex;
                flex-direction: column;
                flex-shrink: 0;
                width: 55%;
            }

            .cs-exp-item {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                padding: 0 12px 0 24px;
                border: 1px solid #cccdf1;
                border-bottom: none;
            }

            .cs-exp-item-top {
                border-radius: 8px 8px 0 0;
            }

            .cs-exp-item-middle {
                margin-top: -1px;
                border-top: 1px solid #cccdf1;
            }

            .cs-exp-item-bottom {
                margin-top: -1px;
                border-radius: 0 0 8px 8px;
                border-bottom: 1px solid #cccdf1;
            }

            .cs-exp-category {
                font-family: 'Inter', Helvetica, sans-serif;
                font-weight: 400;
                font-size: 20px;
                color: #1f2937;
                white-space: nowrap;
            }

            .cs-exp-details {
                display: flex;
                align-items: center;
                gap: 16px;
                padding: 14px 20px;
                border-radius: 16px;
            }

            .cs-exp-description {
                font-family: 'Inter', Helvetica, sans-serif;
                font-weight: 600;
                font-size: 16px;
                color: #788cc1;
                letter-spacing: 0.75px;
                line-height: 28px;
                white-space: nowrap;
            }

            .cs-exp-description-active {
                color: #0067ff;
            }

            .total-card {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 45%;
                height: auto;
                gap: 32px;
                padding: 34px 30px;
                background-color: #f8f9fc;
                border-radius: 16px;
            }

            .total-amount {
                font-family: 'Inter', Helvetica, sans-serif;
                font-weight: 700;
                font-size: 32px;
                color: #ff671f;
                text-align: center;
                width: 100%;
            }

            .total-disclaimer {
                font-family: 'Inter', Helvetica, sans-serif;
                font-weight: 400;
                font-size: 16px;
                color: #9b9b9b;
                text-align: center;
                width: 100%;
            }

            .benefits-row {
                flex-direction: row;
                align-items: stretch;
            }

            .benefit-card {
                width: 100%;
                min-height: auto;
            }

            .alumin-card {
                width: 100%;
                height: auto;
                opacity: 1;
                border-radius: 24px;
                border-width: 1px;
                background: #FFFFFF;
                border: 1px solid #E5E7EB;
                box-shadow: 2px 4px 4px 1px #00000026;
                padding: 24px;
                display: flex;
                flex-direction: column;
            }

                .alumin-card.adj {
                    align-items: flex-start;
                    justify-content: flex-end;
                }

            .cs-alumni-bg .lft .alumin-card .hd {
                margin-bottom: 15px !important;
            }

            .alumin-card .hd {
                margin-bottom: .5rem !important;
                align-items: center !important;
                display: flex !important;
                gap: 15px;
            }


                .alumin-card .hd .tt {
                    font-weight: 600 !important;
                }

                .alumin-card .hd .sb-tt {
                    --bs-text-opacity: 1;
                    color: var(--bs-secondary-color) !important;
                    font-size: .875em;
                }

            .alumin-card .vm-btn {
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }

                .alumin-card .vm-btn .icn {
                    width: 56px;
                    height: 56px;
                    margin: 0 16px 0 0;
                    padding: 12px 11.2px 11.2px 12px;
                    background-color: #1a2c5b;
                    color: #fff;
                    border-radius: 50%;
                    text-align: center;
                    line-height: 33px;
                }

                    .alumin-card .vm-btn .icn .sql-icn {
                        transform: rotate(-25deg);
                        font-size: 20px;
                    }

                .alumin-card .vm-btn .sb-tt {
                    font-size: 24px;
                    font-weight: normal;
                    font-stretch: normal;
                    font-style: normal;
                    line-height: normal;
                    letter-spacing: normal;
                    margin-bottom: 0px;
                }

                    .alumin-card .vm-btn .sb-tt a {
                        color: #1f2937;
                    }


            .alumin-card .cnt {
                width: auto;
                height: auto;
                top: 1.64px;
                font-family: Inter;
                font-weight: 400;
                font-style: normal !important;
                font-size: 16px;
                line-height: 1.5;
                letter-spacing: 0%;
                color: #4B5563;
                margin-left: 0px;
            }

            .cs-alumni-bg {
                display: flex;
                flex-direction: row;
                gap: 30px;
            }

                .cs-alumni-bg .lft {
                    width: 30%;
                }

                .cs-alumni-bg .rgt {
                    display: flex;
                    flex-wrap: wrap;
                    align-items: stretch;
                    gap: 30px;
                    width: calc(70% - 30px);
                    flex-direction: row;
                }

                    .cs-alumni-bg .rgt .alumin-card {
                        width: calc(50% - 15px );
                    }

            .alumin-card .img-hd {
                position: relative;
                margin-bottom: 1rem;
                text-align: center;
            }


            .alumin-card .img-fluid {
                height: auto;
                width: 100%;
                left: -1px;
                opacity: 1;
                border-top-left-radius: 24px !important;
                border-top-right-radius: 24px !important;
                border-bottom-left-radius: 0px !important;
                border-bottom-right-radius: 0px !important;
            }


            .alumin-card .play-button {
                width: 60px;
                height: 60px;
                background: rgba(255,255,255,0.88);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 2px 12px rgba(0,0,0,0.10);
                font-size: 2rem;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%,-50%);
                cursor: pointer;
            }


            .cs-alumni-bg .lft .alumin-card {
                padding: 0;
            }

                .cs-alumni-bg .lft .alumin-card .cnt, .cs-alumni-bg .lft .alumin-card .hd {
                    padding: 0px 24px;
                }


            .cs-alumni-section {
                background: #F9FAFB;
                padding-bottom: 44px;
            }

            .cs-modal .modal-body {
                padding: 10px 35px 20px 35px;
            }

            .cs-modal .modal-header {
                padding: 20px 35px;
                border-bottom: 0px !important;
            }

            #Input_CaptchaCode.form-control {
                padding: 10px 20px;
            }

            #captchaRefresh.input-group-text {
                padding: 14px 10px;
            }

            .cs-modal .modal-body .input-group {
                align-items: flex-start;
            }


            .cs-modal .lg-btn-bg {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

                .cs-modal .lg-btn-bg .fr-tt {
                    text-align: right;
                }

                    .cs-modal .lg-btn-bg .fr-tt .fr-link {
                        flex-grow: 0;
                        font-family: Inter;
                        font-size: 14px;
                        font-weight: normal;
                        font-stretch: normal;
                        font-style: normal;
                        line-height: normal;
                        letter-spacing: normal;
                        text-align: right;
                        color: #ff671f;
                        text-decoration: underline;
                    }

                .cs-modal .lg-btn-bg .reg-tt {
                    font-family: Inter;
                    font-size: 14px;
                    font-weight: normal;
                    font-stretch: normal;
                    font-style: normal;
                    line-height: normal;
                    letter-spacing: normal;
                    text-align: left;
                    color: #415a77;
                }

                    .cs-modal .lg-btn-bg .reg-tt .reg-link {
                        color: #ff671f;
                        text-decoration: underline;
                    }
        }
    /*Student After Login Applied Courses List Section starts*/

    .cs-ac-li .h2 {
        flex-grow: 0;
        font-size: 32px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 0.94;
        letter-spacing: normal;
        text-align: left;
        color: #1f2937;
    }

    .withdraw-button {
        width: 138px;
        height: 43px;
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 12px 32px;
        border-radius: 8px;
        border: solid 1px #ef4444;
        background-color: #fff;
        color: #ef4444;
    }

    .cs-learnmore-link {
        background: none;
        border: none;
        color: #007bff;
        text-decoration: underline;
        cursor: pointer;
    }
    /*Student After Login Applied Courses List Section ends*/

    .cs-modal .lg-btn-bg .btn {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 4px;
        padding: 16px 24px;
        border-radius: 8px;
        border: solid 0 #e5e7eb;
        background-color: #ff671f;
        width: auto;
        margin: 0 auto;
        color: #fff;
    }

    .cs-alumni-section {
        background: #F9FAFB;
        padding-bottom: 44px;
    }

    .pop-city-marker {
        fill: url(#cityGradient);
        filter: url(#dropshadow);
        stroke: rgba(255, 255, 255);
        stroke-width: 4.28px;
        cursor: pointer;
        opacity: 1;
    }

    .cs-ls-vw.spl .ls {
        width: 100% !important;
        margin-bottom: 30px;
    }
    /* Institute Dashboard starts */
    .header-card {
        background: linear-gradient(135deg, rgba(249, 250, 251, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23f9fafb" width="1200" height="400"/><path fill="%23fecaca" opacity="0.3" d="M0,200 Q300,100 600,200 T1200,200 L1200,400 L0,400 Z"/></svg>');
        background-size: cover;
        background-position: center;
        border-radius: 16px;
        padding: 32px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }

        .header-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(249, 168, 212, 0.1) 50%, rgba(254, 202, 202, 0.15) 100%);
            pointer-events: none;
        }

        .header-card > * {
            position: relative;
            z-index: 1;
        }

    .logo-container {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .university-title {
        font-size: 1.875rem;
        font-weight: 600;
        color: #1f2937;
        line-height: 1.2;
    }

    .institute-id {
        font-size: 0.875rem;
        color: #6b7280;
        margin-top: 2px;
    }
    /* Section Title */
    .section-title {
        font-size: 1.875rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 8px;
    }

    .title-underline {
        width: 60px;
        height: 3px;
        background-color: #f97316;
        border-radius: 2px;
    }
    /* Year Cards */
.year-card {
    background-color: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* width: 100%;*/
    width: auto ;
    min-width:300px;
}

        .year-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

    .year-card-active {
        border: 1px solid #e5e7eb;
    }

    .year-card-completed {
        border: 1px solid #e5e7eb;
        background-color: #f9fafb;
    }

    .year-card-inactive {
        border: 1px solid #e5e7eb;
        background-color: #fafafa;
    }
    /* Year Icons */
    .year-icon-container {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 24px;
    }

    .year-icon-active {
        background-color: #f0fdf4;
        color: #16a34a;
    }

    .year-icon-completed {
        background-color: #dbeafe;
        color: #2563eb;
    }

    .year-icon-inactive {
        background-color: #f3f4f6;
        color: #9ca3af;
    }
    /* Year Title */
    .year-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 20px;
    }

    .year-title-muted {
        color: #6b7280;
    }
    /* Participate Button */
    .btn-participate {
        background-color: #16a34a;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        .btn-participate:hover {
            background-color: #15803d;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(22, 163, 74, 0.3);
        }

        .btn-participate:active {
            transform: translateY(0);
        }
    /* Status Badges */
    .status-badge {
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .status-badge-completed {
        background-color: #dbeafe;
        color: #1e40af;
        border: none;
    }

    .status-badge-inactive {
        background-color: #f3f4f6;
        color: #6b7280;
    }
    /* Responsive Design */
    @media (max-width: 991.98px) {
        .university-title {
            font-size: 1.5rem;
        }

        .section-title {
            font-size: 1.5rem;
        }

        .year-title {
            font-size: 1.25rem;
        }
    }

    @media (max-width: 767.98px) {
        .header-card {
            padding: 24px;
        }

        .university-title {
            font-size: 1.375rem;
        }

        .institute-id {
            font-size: 0.8125rem;
        }

        .year-card {
            padding: 24px;
        }
    }

    @media (max-width: 575.98px) {
        body {
            padding: 10px 0;
        }

        .header-card {
            padding: 20px;
        }

        .logo-container {
            width: 40px;
            height: 40px;
        }

            .logo-container svg {
                width: 40px;
                height: 40px;
            }

        .university-title {
            font-size: 1.25rem;
        }

        .section-title {
            font-size: 1.375rem;
        }

        .year-card {
            padding: 20px;
        }

        .year-icon-container {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }

        .year-title {
            font-size: 1.125rem;
        }

        .btn-participate {
            width: 100%;
            justify-content: center;
        }

        .status-badge {
            width: 100%;
            justify-content: center;
        }
    }
    /* Institute Dashboard End*/



    .cs-tab {
        border-radius: 0px;
    }

        .cs-tab .cs-nav .nav-item {
            padding: 0px;
            margin: 4px 0px 4px 4px;
            border-radius: 16px;
        }


    .cs-nav.nav-pills .nav-link.active, .cs-nav.nav-pills .show > .nav-link {
        background: white;
        background: linear-gradient(126deg, rgba(13, 47, 94, 1) 13%, rgba(61, 129, 184, 1) 100%);
        background-clip: border-box;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 600;
    }


    .cs-nav.nav-pills .nav-item:has(.nav-link.active) {
        background: #fff;
    }


    .cs-nav.nav-pills .nav-link {
        padding: 10px 30px;
        border-radius: 16px;
        background: transparent;
        color: #778da9;
        font-size: 18px;
        font-weight: normal;
    }


    .coursetext p {
        color: #5a6c7d;
    }

    .cs-tab .tt {
        font-size: 24px;
        color: #1F2937;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: normal;
        position: relative;
        margin-bottom: 20px;
    }

        .cs-tab .tt::before {
            background-color: #FF671F;
            position: absolute;
            left: 0;
            bottom: -6px;
            content: '';
            z-index: 1;
            width: 85px;
            height: 3px;
        }


    .cs-tab .sb-tt {
        font-family: var(--cs-secondary-font-family);
        font-size: 24px;
        color: #1b263b;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: normal;
    }

    .cs-tab .coursetext.adj {
        margin-bottom: 20px;
    }


    .cs-tab .nav-pills {
        background: #F2F5F9;
        width: auto;
        border-radius: 16px;
        padding: 0px 0px;
        margin: 0px 0px 25px 0px;
    }




    .btn-trans {
        padding: 8px 25px;
        border-radius: 8px;
        color: #ff671f;
        border: 1px solid;
    }

        .btn-trans:hover {
            background: #ff671f;
            color: #fff;
        }

    .cs-card-bg {
        border: 1px solid #d7d7d7;
        border-radius: 16px;
        padding: 32px 36px;
        margin-bottom: 60px;
    }

    .cs-card-dts-bg {
        border: 1px solid #d7d7d7;
        border-radius: 16px;
        padding: 24px;
    }

        .cs-card-dts-bg .tt {
            font-weight: 700;
            font-size: 24px;
            color: #1f2937;
            margin-bottom: 12px;
            position: relative;
        }

            .cs-card-dts-bg .tt::before {
                position: absolute;
                left: 0;
                width: 100px;
                height: 3px;
                background-color: #fff;
                content: '';
            }

        .cs-card-dts-bg .ct-sec {
            margin-bottom: 24px;
            border-bottom: 1px solid #6D6D6D;
        }

            .cs-card-dts-bg .ct-sec .sb-tt {
                font-weight: 500;
                font-size: 20px;
                color: #01214e;
                margin-bottom: 16px;
            }

            .cs-card-dts-bg .ct-sec .ct-item {
                display: flex;
                align-items: first baseline;
                gap: 12px;
                margin-bottom: 16px;
            }

                .cs-card-dts-bg .ct-sec .ct-item .contact-icon {
                    color: #6D6D6D;
                }

                .cs-card-dts-bg .ct-sec .ct-item .ct-text {
                    font-size: 18px;
                    color: #6c6c6c;
                    flex: 1;
                    /* Allow long words (like email addresses) to wrap */
                    white-space: normal;
                    word-break: break-all;
                    overflow-wrap: anywhere;
                }

    .cs-card-dts {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }

        .cs-card-dts.fl-wdt .cs-tab {
            width: 100%;
        }

        .cs-card-dts.spl {
            justify-content: space-between;
        }

            .cs-card-dts.spl .cs-tab {
                width: auto;
            }

        .cs-card-dts .cs-tab {
            width: 75%;
        }

        .cs-card-dts .cs-card-dts-bg {
            width: 25%;
        }


    .cmn-tt {
        font-size: 24px;
        color: #1F2937;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: normal;
        position: relative;
        margin-bottom: 20px;
    }

        .cmn-tt::before {
            background-color: #FF671F;
            position: absolute;
            left: 0;
            bottom: -6px;
            content: '';
            z-index: 1;
            width: 85px;
            height: 3px;
        }

    .tab-pane {
        display: none !important;
    }

        .tab-pane.active,
        .tab-pane.show {
            display: block !important;
        }

    .cs-fa-bg {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
    }

        .cs-fa-bg .ls {
            border: 1px solid #D7D7D7;
            padding: 20px 20px;
            border-radius: 8px;
            width: calc(50% - 12px);
        }

        .cs-fa-bg.col3 .ls {
            width: calc(33.3% - 20px);
        
        }
            .cs-fa-bg .ls i {
                color: #FF671F;
                font-size: 20px;
                margin-right: 10px;
            }

            .cs-fa-bg .ls span {
                color: #4B5563;
                font-size: 20px;
            }


    .cs-lv-bg {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
        margin-top: 30px;
    }

        .cs-lv-bg .ls {
            display: flex;
            gap: 20px;
            width: calc(50% - 12px);
        }

            .cs-lv-bg .ls .lft i {
                color: #ff6b35;
                font-size: 20px;
            }

            .cs-lv-bg .ls .rgt h4 {
                color: #01214E;
                font-size: 16px;
                margin-bottom: 10px;
            }

            .cs-lv-bg .ls .rgt h2 {
                color: #4B5563;
                font-size: 20px;
            }


    .cs-card-dts-bg .ct-sec:last-child {
        border-bottom: 0px;
    }

    .cs-el-bg .ls {
        margin: 0;
        padding: 0;
        color: #202020;
    }

        .cs-el-bg .ls li {
            position: relative;
            list-style: none;
            margin-left: 48px;
            font-size: 18px;
            color: #202020;
            margin-bottom: 15px;
        }

            .cs-el-bg .ls li::before {
                content: attr(data-number);
                position: absolute;
                left: -48px;
                top: -3px;
                background: #F3A34C;
                width: 32px;
                height: 32px;
                line-height: 32px;
                text-align: center;
                border-radius: 50%;
                color: #fff;
                font-weight: 600;
            }

    .cs-Ins-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 20px 36px;
        border-radius: 8px;
        background-color: #f2f5f9;
        flex-grow: 1;
        width: auto;
    }

        .cs-Ins-card i {
            font-size: 35px;
            flex-grow: 0;
            padding: 7.5px 0.3px 7.5px 0.3px;
        }

        .cs-Ins-card p {
            font-size: 20px;
            font-weight: bold;
            color: #000;
            margin-bottom: 0px;
        }

        .cs-Ins-card span {
            color: #4B5563;
            font-size: 14px;
        }

    .cs-Int-card span {
        font-family: var(--default-font);
        font-size: 14px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #4b5563;
    }

.hd-btn-primary, .hd-btn-primary:focus {
    width: auto !important;
    background: var(--default-color);
    color: #fff;
    border-color: var(--default-color);
    font-size: 16px;
    padding: 7px 16px 10px 16px !important;
    margin: 0 0 0 0px;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid var(--default-color);
    font-weight: 400;
    display: flex;
    height: 40px;
    gap: 12px;
    color: #fff !important;
    font-weight: bold;
}

    .hd-btn-trans, .hd-btn-trans:focus {
        font-size: 16px;
        padding: 7px 16px 10px 16px !important;
        margin: 0 0 0 0px;
        border-radius: 10px;
        transition: 0.3s;
        border: 1px solid var(--default-color);
        font-weight: 400;
        display: flex;
        height: 40px;
        gap: 12px;
        color: var(--nav-hover-color) !important;
        background:#fff;
    }

        .hd-btn-trans i, .hd-btn-trans:focus {
            line-height: 1.5 !important;
        }


    .cs-header {
        height: 64px;
        padding-left: 0px;
        padding-right: 0px;
        gap: 0px;
        background-color: rgba(0, 0, 0, 0);
        border-bottom: 1px solid #E5E7EB;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }


        .cs-header .cs-logo {
            align-items: baseline !important;
            margin: 0;
            margin-right: 0 !important;
        }


    .cs-al {
        gap: 12px !important;
        text-align: center;
        justify-content: end;
    }

    .cs-header-bg {
        width: 100%;
        height: 64px;
        background-color: #FFFFFF;
        border-bottom: 1px solid #E5E7EB;
        align-items: center !important;
        display: flex !important;
    }

    .cs-header .navmenu .dropdown ul.submenu li a:hover, .cs-header .navmenu .dropdown ul.submenu li a:focus {
        color: #FF874F;
    }
    /* 23 -10 2025*/

    .lg-btn-bg .fr-tt a {
        color: #FF671F;
        font-size: 14px;
        text-decoration: underline;
    }

    .lg-btn-bg .fr-tt {
        text-align: right;
    }

    .lg-btn-bg .reg-tt {
        font-size: 14px;
        color: #415A77;
        margin-top: 12px;
    }

        .lg-btn-bg .reg-tt a {
            text-decoration: underline;
        }

    #Input_CaptchaCode, #captchaRefresh {
        margin-bottom: 0px;
        height: 45px;
    }

    #studentRegistrationDTO_CaptchaCode {
        margin: 0;
    }

    .cs-modal .modal-title {
        font-size: 24px;
        color: #415A77;
    }

    .cs-modal .modal-header {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .cs-modal .modal-body .form-label {
        color: #4B5563;
        margin-bottom: 0px;
    }

    .cs-modal .modal-body .form-control {
        border-color: #E5E7EB;
        height: 41px;
        padding: 10px;
    }

    .cs-modal .modal-body label.form-check-label {
        font-weight: normal;
        font-size: 14px;
    }




    .ds-header-bg {
        margin: 40px 0px;
    }

        .ds-header-bg .hero-banner {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 16px;
            margin: 0px 0px;
            padding: 40px;
            border-radius: 20px;
            background-image: linear-gradient(103deg, #0d2f5e 23%, #234fd3 50%, #ff671f 96%);
            width: 100%;
            min-height: 191px;
            position: relative;
            z-index: 0;
            overflow: hidden;
        }

            .ds-header-bg .hero-banner::before {
                position: absolute;
                content: '';
                width: 134px;
                height: 134px;
                opacity: 0.1;
                background: #fff;
                border-radius: 50%;
                left: -70px;
                bottom: -80px;
            }

            .ds-header-bg .hero-banner::after {
                position: absolute;
                content: '';
                width: 134px;
                height: 134px;
                opacity: 0.1;
                background: #fff;
                border-radius: 50%;
                right: -60px;
                top: -70px;
            }




            .ds-header-bg .hero-banner .tt {
                flex-grow: 0;
                font-size: 48px;
                font-weight: bold;
                font-style: normal;
                line-height: 1.49;
                text-align: left;
                color: #fff;
                margin-bottom: 0;
            }


            .ds-header-bg .hero-banner .sb-tt {
                flex-grow: 0;
                font-family: Inter;
                font-size: 20px;
                font-weight: normal;
                font-style: normal;
                text-align: left;
                color: #fff;
            }


    .ds-box-bg {
        display: flex;
        gap: 16px;
        margin-bottom: 40px;
        padding: 30px 0px;
        flex-wrap: wrap;
    }

        .ds-box-bg .box {
            align-self: stretch;
            flex-grow: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 32px;
            padding: 32px;
            background: #F4F9FF;
            border-radius: 16px;
            position: relative;
            width: calc(33.3% - 11px);
            margin-bottom: 7px;
        }

            .ds-box-bg .box::before {
                position: absolute;
                left: 0;
                right: 0;
                width: 100%;
                height: 50px;
                border-radius: 120px;
                bottom: -7px;
                background: #e5e7eb;
                content: '';
                margin: 0 auto;
                z-index: -1;
            }

            .ds-box-bg .box::after {
                position: absolute;
                left: 0;
                width: 50%;
                height: 50px;
                border-radius: 120px;
                bottom: -7px;
                background-color: #30cd6a;
                content: '';
                margin: 0 auto;
                z-index: -1;
            }


            .ds-box-bg .box .cnt .lft {
                width: 59px;
                height: 59px;
                flex-grow: 0;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 7.4px;
                padding: 13.3px 12.5px;
                border-radius: 14.8px;
                background-color: #2867ec;
                color: #fff;
            }

        .ds-box-bg .ssb-tt {
            flex-grow: 0;
            font-family: Inter;
            font-size: 20px;
            font-weight: normal;
            font-stretch: normal;
            font-style: normal;
            line-height: normal;
            letter-spacing: normal;
            text-align: left;
            color: #16a34a;
        }

        .ds-box-bg .box.yl-color {
            background: #FFF7ED;
        }

            .ds-box-bg .box.yl-color .cnt .lft {
                background: #FF7722;
            }

        .ds-box-bg .box.gr-color {
            background: #EEFDF5;
        }

            .ds-box-bg .box.gr-color .cnt .lft {
                background: #16A34A;
            }

        .ds-box-bg .box .cnt .lft i {
            font-size: 25px;
        }

        .ds-box-bg .box .cnt .rgt {
            display: flex;
            flex-direction: column;
            width: calc(100% - 80px);
        }

        .ds-box-bg .box .cnt {
            display: flex;
            flex-direction: row;
            gap: 20px;
            width: 100%;
        }

        .ds-box-bg .box.spl {
            width: 100%;
            flex-direction: row;
            justify-content: space-between;
        }

            .ds-box-bg .box.spl .half-col {
                min-width: 40%;
            }

            .ds-box-bg .box.spl::before, .ds-box-bg .box.spl::after {
                display: none;
            }

        .ds-box-bg .box .btn-bg {
            width: 100%;
            display: flex;
        }

        .ds-box-bg .box .cnt .rgt .tt {
            flex-grow: 0;
            font-family: Inter;
            font-size: 20px;
            font-weight: bold;
            font-style: normal;
            letter-spacing: normal;
            text-align: left;
            color: #1a2c5b;
            margin-bottom: 10px;
        }

        .ds-box-bg .box .cnt .rgt .sb-tt {
            width: 100%;
            min-height: 24px;
            flex-grow: 0;
            font-family: Inter;
            font-size: 20px;
            font-weight: normal;
            font-style: normal;
            letter-spacing: normal;
            text-align: left;
            color: #4b5563;
            margin-bottom: 0;
        }

    .ds-btn-primary {
        min-height: 52px;
        align-self: stretch;
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 16px 24px;
        border-radius: 6px;
        border: solid 2px #2767ec;
        width: 100%;
        background: transparent;
        color: #2767ec;
    }

    .ds-btn-secondary {
        height: 52px;
        align-self: stretch;
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 16px 24px;
        border-radius: 6px;
        border: solid 2px #f72;
        width: 100%;
        background: transparent;
        color: #2767ec;
    }

    .cs-btn-green {
        min-width: 144px;
        min-height: 52px;
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 16px 24px;
        border-radius: 6px;
        background-color: #16a34a;
        color: #fff;
        border: 0px solid
    }


    table.dataTable.no-footer.cs-table {
        border-bottom: 0px solid rgba(0, 0, 0, 0.3);
    }

    .table.cs-table > thead {
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ecf2ff+0,fffdfb+100 */
        /*background: linear-gradient(to right, #ecf2ff 0%,#fffdfb 100%);*/ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    }

    .table.cs-table tr th {
        padding: 16px 16px;
        background: transparent;
        color: #73767A;
        font-family: Inter;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.16px;
        /*border-radius: 12px 0px 0px 0px;*/
        border-radius: 0px;
        border: 0px;
        background: #fff;
    }

        .table.cs-table tr th:first-child {
            border-radius: 12px 0px 0px 0px;
            border-left: 1px solid #D9D9D9;
        }

    .cs-table.table > thead > tr > th {
        background: #fff !important;
        border: 1px solid #D9D9D9;
        border-right: 0px;
        border-left: 0px;
    }

    .table.cs-table tr th:last-child {
        border-radius: 0px 12px 0px 0px;
        border-right: 1px solid #D9D9D9;
    }

    .table.cs-table > tbody > tr > td {
        padding: 16px 16px;
        align-items: center;
        background: transparent;
        color: #415a77;
        font-size: 16px;
        border: 1px solid #D9D9D9;
        border-width: 0px 0px 1px 0px;
    }

        .table.cs-table > tbody > tr > td:first-child {
            border-left: 1px solid #D9D9D9;
        }

        .table.cs-table > tbody > tr > td:last-child {
            border-right: 1px solid #D9D9D9;
        }

    .table.cs-table > tbody tr:nth-child(odd) {
        background-color: #f7f7f7;
        border-bottom: 1px solid #e5e5e5;
    }

    .table.cs-table > tbody tr:nth-child(even) {
        background-color: #fff;
        border-bottom: 1px solid #e5e5e5;
    }

    .table.cs-table td .tt {
        font-family: Inter;
        font-size: 18px;
        font-weight: 600;
        color: #3f3f3f;
    }

    .table.cs-table > tbody > tr > * {
        box-shadow: none !important;
        /*border: 0px !important;*/
    }

    .table.cs-table > tbody tr:last-child td:first-child {
        border-radius: 0px 0px 0px 12px;
    }

    .table.cs-table > tbody tr:last-child td:last-child {
        border-radius: 0px 0px 12px 0px;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        min-width: 1.5em;
        padding: 0px 5px;
        margin-left: 0px;
        color: #333 !important;
        border: 0px;
        border-radius: 3px;
        border: 0px;
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
            border: 0px !important;
            background: transparent !important;
        }

    .active > .page-link, .page-link.active {
        background: #FF671F;
    }

    .page-link {
        border-radius: 4px;
        color: #000000;
        border: 0px;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
        border: 0px solid transparent;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button:first-child {
        margin-right: 60px;
        background: transparent;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button:last-child {
        margin-left: 60px;
        background: transparent;
    }

    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        margin: 2px 0;
        white-space: nowrap;
        justify-content: center;
        text-align: center;
        width: auto;
    }

    div.dataTables_wrapper div.dataTables_paginate {
        float: none;
        text-align: center;
    }

    div.dataTables_wrapper div.dataTables_info {
        display: none;
    }

    .cs-modal-bg {
        background: rgba(0, 0, 0, 0.7);
        border-radius: 12px;
        padding-left: 0px;
    }

    .cs-card {
        background: white;
        border-radius: 20px;
    }

    .cs-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .cs-card-title {
        font-size: 24px;
        font-weight: 600;
        color: #4b5563;
    }

    .toggle-switch {
        width: 68px;
        height: 36px;
        background-color: #ff671f;
        border-radius: 40px;
        position: relative;
        cursor: pointer;
        padding: 2px;
        transition: background-color 0.3s;
    }

        .toggle-switch.off {
            background-color: #d1d5db;
        }

    .toggle-knob {
        width: 32px;
        height: 32px;
        background-color: #fcfcfc;
        border-radius: 50%;
        position: absolute;
        top: 2px;
        right: 2px;
        transition: transform 0.3s;
    }

    .toggle-switch.off .toggle-knob {
        transform: translateX(-32px);
    }

    .form-content {
        display: flex;
        flex-direction: column;
        gap: 36px;
    }

    .form-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

        .form-row.full {
            grid-template-columns: repeat(1, 1fr);
        }

    .form-field {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-label {
        font-size: 16px;
        font-weight: 600;
        color: #4b5563;
    }

    .txt-grey {
        color: var(--cs-gray-600);
    }

    .form-select {
        cursor: pointer;
    }

    .form-select,
    .form-input {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        font-family: 'Inter', sans-serif;
        border: 1px solid #d1d5db;
        border-radius: 3px;
        background-color: white;
        color: #4b5563;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234b5563' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 36px;
    }

        .form-select::placeholder,
        .form-input::placeholder {
            color: #dcdcdc;
        }

    .form-input {
        background-image: none;
        padding-right: 16px;
    }

        .form-input[readonly] {
            background-color: #dfffea;
            color: #16a34a;
            cursor: default;
            border: none;
            border-radius: 8px;
        }

    .upload-section {
        display: inline-flex;
        flex-direction: column;
        gap: 6px;
    }

    .upload-button {
        width: 332px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 16px;
        border: 2px dashed #d1d5db;
        border-radius: 8px;
        background: white;
        cursor: pointer;
        transition: border-color 0.2s;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        color: #8195ad;
    }

        .upload-button:hover {
            border-color: #9ca3af;
        }

    .upload-icon {
        width: 18px;
        height: 18px;
    }

    .upload-hint {
        font-size: 14px;
        font-style: italic;
        color: #9f9f9f;
    }

    @@media (max-width: 768px) {
        .form-row {
            grid-template-columns: 1fr;
        }

        .upload-button {
            width: 100%;
        }
    }
    /* --cs---cs---cs---cs---cs---cs-- */

    .form-check {
        display: flex;
        align-items: flex-start;
        gap: 7px;
        margin-bottom: 0.5rem;
    }

    .form-check-input {
        width: 20px;
        height: 20px;
        margin-top: 0;
        border: 1px solid var(--cs-primary-color);
        border-radius: 2px;
        cursor: pointer;
        flex-shrink: 0;
    }

        .form-check-input:checked {
            background-color: var(--cs-primary-color);
            border-color: var(--cs-primary-color);
        }

    .form-check-label {
        font-family: 'Inter', sans-serif;
        font-size: 0.875rem;
        color: var(--cs-text-color);
        cursor: pointer;
        line-height: 1.4;
    }

        .form-check-label a {
            color: var(--cs-primary-color);
            text-decoration: underline;
        }

    .sign-in-text {
        font-family: 'Inter', sans-serif;
        font-size: 0.875rem;
        color: var(--cs-text-color);
        text-align: center;
        margin-top: 0.75rem;
    }

        .sign-in-text a {
            color: var(--cs-primary-color);
            text-decoration: underline;
        }

    .ls-btn-primary {
        background-color: var(--cs-primary-color);
        color: white;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        padding: 1rem 1.5rem;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.2s;
    }

        .ls-btn-primary:hover {
            background-color: #e55a1a;
        }


    .cs-form-field {
        display: flex;
        flex-direction: row;
        gap: 30px;
    }

        .cs-form-field .form-field:first-child {
            width: 150px;
        }

        .cs-form-field .form-field:last-child {
            flex-grow: 1;
        }


    .cs-modal .input-group-text {
        height: 46px;
        border-radius: 0;
    }

    .cs-modal .form-actions {
        text-align: center;
    }
    /* -- 27-10-2025 -- */

    .cs-Ins-card-bg {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 32px;
        margin-top: 30px;
    }

    .cs-Ins-card span {
        color: #4B5563;
        font-size: 14px;
    }

    .cs-custom-sec {
        background: linear-gradient(126deg, rgba(13,47,94,1) 13%, rgba(61,129,184,1) 100%);
        padding: 40px 0px;
        margin-bottom: 36px;
    }

    .cs-breadcrumb-custom {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

        .cs-breadcrumb-custom i {
            color: white;
            font-size: 24px;
        }

        .cs-breadcrumb-custom span {
            color: white;
            font-size: 14px;
        }

    .cs-breadcrumb-light {
        font-weight: 300;
    }

    .cs-breadcrumb-bold {
        font-weight: 600;
    }

    .cs-hero-title {
        font-family: var(--heading-font);
        font-weight: 700;
        color: white;
        font-size: 48px;
        line-height: 71.3px;
    }

    .ds-usr-btn {
        padding: 4px 7px;
        color: #fff;
        border-radius: 24px;
        background: linear-gradient(126deg, rgba(13,47,94,1) 13%, rgba(61,129,184,1) 100%);
    }

        .ds-usr-btn:hover {
            color: #fff;
            background: linear-gradient(126deg, rgba(13,47,94,1) 13%, rgba(61,129,184,1) 100%);
        }

        .ds-usr-btn span {
            border-radius: 30px;
            background: #fff;
            color: #123259;
            width: 30px;
            height: 30px;
            display: inline-block;
            text-align: center;
            line-height: 30px;
            font-weight: bold;
        }


    .cmn-flex {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        width: 100%;
    }
    /* 29-10-2025 */

    .cs-search-grp .form-control {
        height: 50px;
        font-size: 16px;
    }

    .cs-search-grp .hd-btn-primary {
        height: 50px;
        line-height: 30px;
    }

        .cs-search-grp .hd-btn-primary i {
            margin-top: 9px;
            font-size: 18px;
        }

    .cs-ds-bg .btn-bg {
        min-width: 300px;
        display: flex;
        gap: 20px;
    }

    .cs-ds-bg {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        margin-top: 30px;
    }

    .btn.btn-success i {
        margin-right: 5px;
    }

    .cs-ds-bg .sh-entry {
        display: flex;
        justify-content: flex-end;
        align-content: center;
        align-items: center;
        margin-top: 10px;
    }


    .cs-search-grp .form-control {
        height: 50px;
        font-size: 16px;
    }

    .cs-search-grp .hd-btn-primary {
        height: 50px;
        line-height: 30px;
    }

        .cs-search-grp .hd-btn-primary i {
            margin-top: 9px;
            font-size: 18px;
        }

    .cs-ds-bg .btn-bg {
        min-width: 300px;
        display: flex;
        gap: 20px;
    }

    .cs-ds-bg {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        margin-top: 30px;
    }

    .btn.btn-success i {
        margin-right: 5px;
    }

    .cs-ds-bg .sh-entry {
        display: flex;
        justify-content: flex-end;
        align-content: center;
        align-items: center;
        margin-top: 10px;
    }

    .dataTables_length {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    .cs-ds-bg .btn.btn-success {
        height: 40px;
    }


    .cs-ds-bg .btn.btn-success {
        height: 40px;
    }

    .hero-description-bg {
        display: flex;
        flex-flow: column wrap;
        gap: 16px;
    }

    .student-table button {
        text-decoration: none;
    }

        .student-table button:hover {
            background-color: #ec691f;
            border-color: #ec691f;
            color: #fff;
        }

    .page-item.previous, .page-item.next {
        position: relative;
    }

        .page-item.previous::before {
            position: absolute;
            left: -12px;
            top: 4px;
            content: "\f053";
            z-index: 1;
            font: normal normal normal 17px/1 FontAwesome;
            width: 30px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            border: 0px solid #000;
            color: #000;
        }

        .page-item.previous a, .page-item.next a {
            background: transparent !important;
        }

        .page-item.previous a, .page-item.next a {
        }

        .page-item.next::before {
            position: absolute;
            right: -12px;
            top: 4px;
            content: "\f054";
            z-index: 1;
            font: normal normal normal 17px/1 FontAwesome;
            width: 30px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            border: 0px solid #000;
            color: #000;
        }

    .student-table {
        margin-bottom: 30px;
    }

    .cs-ds-bg .form-select {
        height: 50px;
        width: 300px !important;
    }

    .cs-breadcrumb-custom span:hover {
        text-decoration: underline;
    }

    .cs-ds-bg .btn.btn-success {
        height: 50px;
        min-width: 100px;
    }

    .dataTables_wrapper {
        padding-bottom: 30px;
    }

    .content-section ul li {
        margin-bottom: 15px;
        color: #000;
    }


    .cs-alert-bg .alter-bg {
        width: auto;
        display: flex;
        gap: 20px;
    }


    .cs-down-links {
        color: #4583FF;
    }

        .cs-down-links i {
            color: var(--cs-primary-color);
        }

    .cs-del-links {
        color: var(--cs-primary-color);
    }



    .cs-ls-vw .ls.gr-cl .hd, .cs-ls-vw .ls.gr-cl {
        background: linear-gradient(to right, #cfeedb 0%,#effbf2 100%);
    }

    .cs-ls-vw .ls.gr-cl {
        background: #EEFDF5;
    }

        .cs-ls-vw .ls.gr-cl .cnt {
            background: #EEFDF5;
            border-radius: 12px;
        }

    .cs-ls-vw .ls.rd-cl .hd {
        background: linear-gradient(to right, #fbd2d2 0%,#fbd2d2 100%);
    }

    .cs-ls-vw .ls.rd-cl {
        background: #FDEEEE;
    }

        .cs-ls-vw .ls.rd-cl .cnt {
            background: #FDEEEE;
            border-radius: 12px;
        }
    /* 30-10-2025 */

    .offer-card {
        border-radius: 0.75rem;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .offer-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

    .view-toggle .btn.active {
        background-color: var(--bs-primary);
        color: #fff;
    }

    .cs-tabs-li {
        min-height: 48px;
        flex-grow: 1;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        /* padding: 10px 24px; */
        border-radius: 16px;
        background-color: #f2f5f9;
    }

    .cs-tabs-cust {
        min-width: 50%;
        min-height: 56px;
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
        padding: 4px;
        border-radius: 16px;
        background-color: #f2f5f9 !important
    }

        .cs-tabs-cust .nav-link.active {
            flex-grow: 0;
            background-image: linear-gradient(103deg, #0d2f5e 8%, #3d81b8 107%) !important;
            font-family: Poppins;
            font-size: 18px !important;
            font-weight: 600;
            font-stretch: normal;
            font-style: normal;
            line-height: normal;
            letter-spacing: normal;
            text-align: center;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    .cs-tabs-li .nav-link {
        flex-grow: 0;
        font-family: Poppins;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: center;
        color: #778da9 !important;
    }

    .cs-list-head-txt {
        min-width: 59px;
        height: 19px;
        flex-grow: 0;
        opacity: 0.7;
        font-family: Inter;
        font-size: 16px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: 0.16px;
        text-align: left;
        color: #262626;
    }

.cs-down-icon-bg {
    width: 48px;
    height: 48px;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 4.5px;
    border-radius: 84.8px;
    border: solid 1.1px #06038d;
    background-color: #fff;
    color: #06038d;
}

    .cs-down-icon {
        min-width: 18px;
        min-height: 18px;
        flex-grow: 0;
    }

    .cs-up-icon {
        min-width: 24px;
        min-height: 24px;
        flex-grow: 0;
        padding: 1.5px 3px 4.5px;
    }

    .cs-btn-grn {
        min-width: 138px;
        height: 43px;
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 16px 24px;
        border-radius: 6px;
        background-color: #16a34a;
        color: #fff;
    }

        .cs-btn-grn:hover {
            background-color: #16a34a;
            color: #fff;
        }


    .cs-btn-bl {
        min-width: 138px;
        height: 43px;
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 16px 24px;
        border-radius: 6px;
        background-color: #06038D;
        color: #fff;
    }

        .cs-btn-bl:hover {
            background-color: #06038D;
            color: #fff;
        }


    .cs-list-tbl-head {
        min-height: 96px;
        align-self: stretch;
        flex-grow: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 16px;
        border-bottom: solid 1px #bcbcbc;
        background: #F7F7F7;
        background-image: linear-gradient(to right, rgba(101, 152, 253, 0.65), rgba(255, 232, 206, 0.39));
        border-radius: 24px 24px 0px 0px;
    }

    .cs-list-tbl-head-tt {
        box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.25);
        border-radius: 24px;
        gap: 0px;
    }

    .mb12 {
        margin-bottom: 12px;
    }

    .cs-btn-orn {
        min-width: 249px;
        min-height: 48px;
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 12px 32px;
        border-radius: 8px;
        border: solid 0 #e5e7eb;
        background-color: #ff671f;
    }

    .cs-btn-blue {
        min-width: 190px;
        min-height: 48px;
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 12px 32px;
        border-radius: 8px;
        border: solid 0 #e5e7eb;
        background-color: #165baa;
    }

    .cs-remarks-button {
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border-radius: 8px;
        border: solid 0 #e5e7eb;
        background-color: #e6f2ff;
    }

    .cs-remarks-txt {
        flex-grow: 0;
        font-family: Inter;
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #165baa;
    }

    .btn-primary {
    }
    /* 31-10-2025 */


    .cs-st-form {
        padding: 40px;
        gap: 40px;
        border-radius: 10px;
        border: 1px solid #D8DAEE;
        margin-bottom: 28px;
    }

        .cs-st-form .form-control, .cs-st-form .form-select {
            border-radius: 3px;
            border-color: #E5E7EB;
            height: 41px;
            padding: 8px 12px;
            font-size: 14px;
            font-weight: 400;
            color: #4b5563;
        }

        .cs-st-form .form-select {
            line-height: initial;
        }

        .cs-st-form .cs-browse-btns {
            width: 332px;
            margin-right: 20px;
            /* padding-right: 0; */
        }

        .cs-st-form .cs-browse-btn i {
            margin-right: 10px;
        }

        .cs-st-form .cs-browse-btns .cs-browse-btn, .cs-st-form .cs-browse-group-btns .cs-browse-btn {
            width: 100%;
            border: 1px dashed #E5E7EB;
            background: none;
            color: #8196AE;
            font-size: 16px;
            height: 51px;
            padding: 10px;
            border-radius: 8px;
        }

        .cs-st-form .cs-browse-btns .file, .cs-st-form .cs-browse-group-btns .file {
            display: none;
        }

        .cs-st-form .hint {
            font-size: 14px;
            font-style: italic;
            color: #9F9F9F;
        }

        .cs-st-form .mrd .btn {
            min-width: 290px;
            border-radius: 21px;
            border: 1px solid #E5E7EB;
            color: #8196AE;
            margin-right: 8px;
        }

        .cs-st-form .cs-browse-group-btns {
            width: auto;
            margin: 0;
            padding: 0;
        }

    .btn-check:checked + .btn {
        background: #768AA4;
        color: #fff;
    }

    .cs-form {
        padding: 0;
        border: none;
    }


    .cs-dts-form {
        padding-right: 60px;
    }


    .ct-bg .cs-st-form {
        width: 450px;
    }

    .ct-bg .content-section {
        margin-right: 60px;
        margin-bottom: 0px;
    }

    .ct-bg .alert.alert-danger {
        margin-bottom: 0px;
    }

    .ct-bg .content-section .section-title {
        margin-bottom: 15px;
        margin-top: 10px;
    }

    .ct-bg .content-section .section-title {
    }

.navmenu ul.cs-al{
    flex-grow: 1;
    min-width: 320px;
}

.cs-faqs-bg .accordion-body ul{
    list-style:none;
}


.cs-abt-bg {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

    .cs-abt-bg .ls {
        width: 100%;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        text-align: left;
        display: flex;
        flex-direction: column;
        padding: 30px;
    }

.cs-accordion .accordion-header {
    padding:12px 24px;
}

.cs-accordion .destination-card {
    padding: 0px 24px 12px 24px;
}

.cs-accordion {
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
    margin: 15px 15px;
    padding: 0;
}


.view-toggle .divider {
    width: 1px;
    height: 35px;
    background: #E5E7EB;
}


.navmenu .cs-al li.dropdown:hover::before, .navmenu .cs-al li:hover::before {
    opacity: 0 !important;
}


.pl-ds-bg{
    display:flex;
    flex-direction:row;
    gap:120px;
}

.pl-ds-bg .popular-container {
    width:40%;
}

.pl-ds-bg .map-container {
    width: calc(60% - 120px);
}


.Register-card-box .instituteform {
    display: flex;
    justify-content: center;
    align-items: end;
}

.navmenu li:has(.active)::before {
    opacity: 1;
}

.navmenu li:has(.active) a.active {
    font-weight:bold;
}

section.heading_banner.cs-adt {
    padding: 41px 0px 0px 0px;
    margin-bottom: 30px;
}

.footer-section .tel {
    color: #fff;
}

.footer-buttons-container {
    display:none !important;
}

#study-india-chatbot-launcher {
    z-index: 99990;
}


.cs-flex {
    display:flex;
    flex-direction:row;
    justify-content:space-between;
}

.badge {
    color: #2867EC;
    background: #EFF5FE;
    padding: 5px 7px;
}

.cmn-link{
    color:var(--cs-primary-color);
    font-weight:bold;
}


.cs-ds-bg .btn.btn-success.spl {
    line-height: 35px;
}

.wdt-full{
    width:100%;
}

.cs-information {
    margin: 0 0 20px 0px;
    padding: 0;
    font-size: 12px;
    line-height: 20px;
    display: flex;
}


.cs-fr-bg #Input_CaptchaCode, .cs-fr-bg #captchaRefresh {
    margin-bottom: 0px;
    height: 17px;
}


.cs-fr-bg .input-group-text {
    font-weight: bold;
    height: 42px;
    line-height: 25px !important;
}
.cs-ch-pwd .input-group-text {
    font-weight: bold;
    height: 41px !important;
}




.ds-box-bg.spl-bg .box .cnt .lft {
    width: fit-content;
    height: 107px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background-color: #fff;
    color: #FF671F;
    min-width: 170px;
    font-family: var(--heading-font);
}

.ds-box-bg.spl-bg .box .cnt {
    flex-direction: column;
}

    .ds-box-bg.spl-bg .box .cnt .rgt {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

        .ds-box-bg.spl-bg .box .cnt .rgt .sb-tt {
            font-size: 18px;
        }

        .ds-box-bg.spl-bg .box .cnt .rgt .tt {
            font-size: 31px;
        }

.ds-box-bg.spl-bg .box::before, .ds-box-bg.spl-bg .box::after {
    display: none;
}

.ds-box-bg.spl-bg .box .cnt .lft i {
    font-size: 39px;
}
.ds-box-bg.spl-bg .box .cnt .lft span {
    font-size: 54px;
    font-weight: bold;
}


.ds-box-bg .box.bl-cl {
    background: #EFF5FE;
}

.ds-box-bg.spl-bg .box.bl-cl .cnt,
.ds-box-bg.spl-bg .box.bl-cl .cnt * {
    color: #165BAA;
}


.ds-box-bg .box.gr-cl {
    background: #EAFFF2;
}

.ds-box-bg.spl-bg .box.gr-cl .cnt,


.ds-box-bg.spl-bg .box.gr-cl .cnt * {
    color: #16A34A;
}

/*
.ds-box-bg.spl-bg .box.gr-cl .cnt .rgt .sb-tt, .ds-box-bg.spl-bg .box.gr-cl .cnt .rgt .tt, .ds-box-bg.spl-bg .box.gr-cl .cnt .lft {
    color: #16A34A;
}
    */


.ds-box-bg .box.yl-cl {
    background: #FFF0E8;
}

.ds-box-bg.spl-bg .box.yl-cl .cnt,
.ds-box-bg.spl-bg .box.yl-cl .cnt * {
    color: #FF671F;
}

.ds-box-bg .box.spl.yl-cl-tr {    
    border: 2px solid #FFB08B;
    background: #fff;
}

    .ds-box-bg .box.spl.yl-cl-tr .cnt .lft {
        background: #FFAD4E;
    }
.cs-btn-yellow {
    min-width: 144px;
    min-height: 52px;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 6px;
    background-color: #FFAD4E;
    color: #fff;
    border: 0px solid;
}

    .cs-btn-yellow:hover {
        background-color: #FFAD4E;
        color: #fff;
    }


.ds-header-bg.bg-wht .hero-banner {
    flex-direction: row;
    justify-content: space-between;
    background: #fff;
    box-shadow: 3px 3px 7px rgba(0,0,0,0.3);
    min-height: auto;
    align-items: center;
}
/*.ds-header-bg.bg-wht .hero-banner * {
    color:#3B3B3B;
}*/

    .ds-header-bg.bg-wht .hero-banner .tt {
        color: #3B3B3B;
        font-size:32px;
    }

    .ds-header-bg.bg-wht .hero-banner .sb-tt {
        color: #4B5563;
        font-size: 22px;
        margin-bottom:0px;
    }

.ds-box-bg.spl-bg {
    gap: 40px;
}

    .ds-box-bg.spl-bg .box {
        width: calc(33.3% - 27px);
    }

.mr-py {
    margin: 30px 0px 60px 0px;
}
    



.navmenu a.hd-btn-primary{
    font-weight:normal;
}

.sb-tt-bt {
   
    min-height: 24px;
    flex-grow: 0;
    font-family: Inter;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #4b5563;
    margin-bottom: 0;
    border:none;
    background:none;
}



.cs-it-reg{
    flex-direction:row;
    gap:30px;
}

.cs-it-reg .lft{
    width:60%;
}

.cs-it-reg .rgt{
    width:40%;
}


.cs-it-reg .rgt .ls-bg{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.cs-it-reg .rgt .tt{
    align-self: stretch;
    flex-grow: 0;
    font-family: Inter;
    font-size: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #4b5563;
    margin-bottom:40px;
}


.cs-st-form .tt {
    align-self: stretch;
    flex-grow: 0;
    font-family: Inter;
    font-size: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #4b5563;
    margin-bottom: 40px;
}

.instituteform-text i {
    margin-right: 20px;
    width: 10px;
}


.navmenu ul.cs-al li::before{
    opacity:0 !important;
}


.cs-st-form textarea.form-control {
    height: auto;
}


.cs-information.hgt-red{
    margin: 0;
    color: red;
    font-weight: bold;
}


.cs-st-form .cs-tl.mrd .btn {
    min-width: 40px;
    border-radius: 0px;
    border: 1px solid #E5E7EB;    
    margin-right: 0px;
    height: 40px;
    line-height: 25px;
}

.cs-st-form .cs-tl.mrd .form-control {
    width: auto;
    margin-left: 15px;
}

.cs-st-form .cs-tl.mrd{
    display:flex;
}
}

.edit-btn {
    border: 2px solid var(--default-color);
    color: var(--default-color);
    background: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
}

    .edit-btn:hover {
        background: var(--default-color);
        color: #fff;
    }
.edit-btn-sm {
    border: 2px solid var(--default-color);
    color: var(--default-color);
    background: #fff;
    padding: 4px 10px; /* smaller padding */
    border-radius: 8px;
    font-size: 14px; /* smaller text */
    font-weight: 500;
}

    .edit-btn-sm:hover {
        background: var(--default-color);
        color: #fff;
    }

.cs-accordion-blue .accordion-button {
    color: #fff !important;
    background-color: #2E498E !important;
    box-shadow: none;
    border-radius: 10px !important;
    font-size: 28px;
}

.cs-accordion-blue .accordion-item {
    margin-bottom: 32px;
    border: 0px;
}

.cs-accordion-blue .accordion-item {
    margin-bottom: 32px;
    border: 0px;
}

.cs-accordion-blue .accordion-body {
    padding: 30px 3px;
}

.cs-alert-bg .rgt {
    display: flex;
    gap: 15px;
}


.cs-accordion-blue .accordion-button::after {
    content: "\f107";
    font: normal normal normal 14px/1 FontAwesome;
    background-image: none !important;
    font-size: 25px;
    margin-top: -7px;
}

.accordion-button:not(.collapsed)::after {
    background-image: none !important;
    margin-top: 0px;
    font-size: 25px;

}

.toolbar-spl {
    justify-content: flex-end !important;
    align-items: flex-start !important;
    margin-bottom: 32px;
    width: 100%;
}

.toolbar-spl .hd-btn-primary {
    height: 50px;
    margin-top: 0px !important;
    line-height: 33px;
}

    .toolbar-spl .hd-btn-primary i {
        line-height: 35px;
        margin-top: 0;
    }


.ds-vs-bg {
    display: flex;
    justify-content: space-between;
}

    .ds-vs-bg .fl-bg {
        display: flex;
        gap: 20px;
    }
    .ds-vs-bg .fl-bg .form-select{
        width: 200px;
    }

        .ds-vs-bg .fl-bg .select2-container .select2-selection--single {
            height: 52px !important;
            line-height: 50px !important;
            border-radius: 10px !important;
            border-color: #DCDCDC !important;
        }

    .ds-vs-bg .fl-bg .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 52px;
    }

        .ds-vs-bg .fl-bg .select2-container--default .select2-selection--single .select2-selection__rendered {
            line-height: 52px !important;
        }

.btn-trans i{
    margin-right:10px;
}


.student-table .btn.btn-link {
    padding: 3px 7px;
    font-size: 14px;
    border-radius: 7px;
}


.cs-card-spl .cs-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #374151;
}

.cs-card-spl .cs-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.cs-card-spl {
    background: #fff;
    border: 1px solid #d8daed;
    border-radius: 20px;
    padding: 28px;
}

.bg-grey {
    background: #f8f9fa;
}


.bg-grey-align {
    padding: 30px 0px !important;
}


.cs-card-spl .btn-bg {
    display: flex;
    gap: 20px;
}

.mb-null{
    margin-bottom:0px !important;
}


.cs-card-spl .chg-btn {
    padding: 15px 25px;
}

.hero-links {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;

}
    .hero-links.mb-view {
        display: none;
    }

.hero-links a {
    padding: 10px 10px;
    border: 1px solid;
    border-radius: 8px;
}


/* Remove Bootstrap modal spacing */
.image-popup-content {
    background: transparent;
    border: none;
    padding: 0;
}

/* Full-width image */
.image-popup-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Close button overlay */
.image-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1056;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
}

/* Mobile responsiveness */
@media (max-width: 576px) {
    .image-popup-img {
        max-height: 100vh;
        object-fit: contain;
    }
}
.navmenu .dropdown ul.drp-bg {
    width: auto;
    min-width: auto !important;
    padding: 0;
    margin: 0;
    height: auto;
    left: 0px;
}