main{
    overflow-x: hidden;
}

body{
    font-family: "Poppins", sans-serif;
    font-style: normal;
    /* overflow-x: hidden !important; */
}

#page-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-logo img {
    width: 140px;
    animation: logoPulse 1.6s ease-in-out infinite;
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.header {
    padding: 20px 0;
    position: sticky;
    top: 0px;
    z-index: 999;
    /*backdrop-filter: saturate(180%) blur(8px);*/
    background: linear-gradient(180deg, #FFFFFF 0%, #f4fbff 100%);
}

.primary-btn {
    roud: color;
    color: #fff;
    transition: all 0.5s ease;
    position: relative;
    outline: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-animation: shiny-btn 2s infinite linear;
    animation: shiny-btn 2s infinite linear;
    background: linear-gradient(130deg, #E15625  0%, #E15625  45%, #fb9874 50%, #E15625  55%, #E15625  100%);
    background-color: #E15625 ;
    background-repeat: no-repeat;
    -webkit-background-position: 0px;
    background-position: 0px;
    background-size: 300%;
}

@keyframes shiny-btn {
    0% {
        background-position: -600px center;
    }
    100% {
        background-position: 0px center;
    }
}


.header .logo img{
    width: 200px;
}

.header .phone-button {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    animation-fill-mode: both;
}

@keyframes fadeInScale{
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.header .phone-number{
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    color: #FFFFFF;
    padding: 0 25px 0 15px;
}

.header .phone-icon-container {
    width: 45px;
    height: 45px;
    background: #FFDBCF;
    color: #EA6A38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse{
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(233, 30, 99, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

.header .slots{
    font-size: 12px;
    line-height: 24px;
    color: #575757;
    margin-right: 10px;
    margin-top: 2px;
}

.footer-section {
    background: #504B49;
    padding: 50px 0 25px;
}

.footer-section img{
    width: 200px;
}

.footer-section .footer-main{
    display: flex;
    justify-content: center;
}

.footer-section .footer-menu{
    display: flex;
    flex-direction: column;
}

.footer-section .footer-menu h4{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-left: -20px;
}

.footer-section .footer-menu a{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: #FFFFFF;
    text-decoration: none;
    display: list-item;
}

.footer-section .social-title {
    font-weight: 400;
    font-size: 22px;
    line-height: 25px;
    font-variant: all-small-caps;
    color: #FFFFFF;
    text-align: end;
}

.footer-section .social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

.footer-section .social-link {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-section .social-link:hover{
    background: #FF794A;
    border: 1px solid #FF794A;
}

.footer-section .footer-bottom {
    animation: fadeIn 1s ease;
    animation-delay: 0.4s;
    animation-fill-mode: both;
    text-align: center;
    margin-top: 90px;
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
}

@keyframes fadeIn{
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.footer-section .copyright-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-section .address-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 0;
    max-width: 785px;
    text-align: center;
}

.footer-section .address-text:last-child{
    margin-top: 10px;
}

.footer-section .address-text span{
    font-size: 12px;
}

.sticky-bar.is-mobile-sticky{
    background: #fff;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    bottom: 0;
    z-index: 999;
}


.sticky-bar .apply-now button{
    padding: 10px 50px;
    border: 1px solid transparent;
    border-radius: 50px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}

#backToTopBtn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
}

#backToTopBtn div{
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#backToTopBtn button{
    padding: 12px 20px;
    border: 1px solid transparent;
    background-color: #E15625;
    border-radius: 50px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}

#backToTopBtn button:hover {
    background: #fff;
    color: #E15625;
    border: 1px solid #E15625;
}

#backToTopBtn p{
    margin-bottom: 0;
}

#backToTopBtn.scrolled-90 p {
    color: #FFFFFF;
}

.hero-section {
    background: linear-gradient(180deg, #EFFAFF 0%, #FFFFFF 100%);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    margin-top: -90px;
}

.hero-title{
    font-weight: 900;
    font-size: 28px;
    line-height: 40px;
    color: #2356A5;
    text-align: center;
    margin-bottom: 10px;
}

.career-title{
    font-weight: 600;
    font-size: 24px;
    line-height: 48px;
    text-align: center;
    color: #E15625;
    margin-bottom: 0;
}

.content-wrapper {
    position: relative;
    max-width: 1200px;
    margin-top: -30px;
}

.left-features {
    position: relative;
    z-index: 2;
}

.feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.feature-box.one {
    background: url(images/hero-point-back-one.png);
    padding: 25px 30px 45px;
    border-radius: 25px;
    background-repeat: no-repeat;
    background-size: contain;
}

.feature-box.two{
    background: url(images/hero-point-back-two.png);
    padding: 50px 30px 25px;
    border-radius: 25px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: -10px;
}

.feature-box h3 {
    font-weight: 700;
    font-size: 17px;
    line-height: 25px;
    color: #2356A5;
    margin: 0;
}

.feature-box .highlight {
    color: #E15625;
}

.center-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
}

.orange-blob {
    position: absolute;
    width: 370px;
    height: 100%;
    background: url(images/hero-back-img.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translate(-50%, -50%);
    top: 80%;
    left: 53%;
    animation: wiggleLR 4s ease-in-out infinite alternate;
    z-index: 9;
}

@keyframes wiggleLR {
    0% {
        transform: translate(calc(-50% - 10px), -50%);
    }
    100% {
        transform: translate(calc(-50% + 10px), -50%);
    }
}

.vr-person-img {
    max-width: 100%;
    height: 520px;
    position: relative;
    z-index: 99;
    animation: topBottom 3s ease-in-out infinite;
}

@keyframes topBottom{
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.cta-section {
    background:
        linear-gradient(rgba(35, 86, 165, 0.9), rgba(35, 86, 165, 0.9)),
        url(images/hero-cta-bar.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 30px 10px 10px;
    margin-top: -50px;
    position: relative;
}


.enroll-btn{
    width: 325px;
    padding: 10px 60px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    animation-fill-mode: both;
    z-index: 999;
    font-weight: 300;
    font-size: 20px;
    line-height: 25px;
    color: #FFFFFF;
}

.batch-info {
    font-weight: 300;
    font-size: 14px;
    line-height: 33px;
    color: #FFFFFF;
    margin-top: 15px;
    margin-bottom: 0;
}

.upskill-section{
    margin: 70px 0;
}

.upskill-section .form-box{
    background: rgb(254, 246, 243);
    border-radius: 15px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: left;
    color: #575757;
    animation: fadeInLeft 1s ease forwards;
}

.upskill-section .form-box h5{
    color: #E15625;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
}
.title{
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 28px;
    line-height: 35px;
    color: #2356A5;
}

.title span{
    color: #E15625;
}

.upskill-section .title{
    margin-bottom: 25px;
}

.upskill-section .description{
    margin-bottom: 35px;
}

.description{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #575757;
}

.upskill-section .upskill-items{
    display: flex;
    align-items: center;
    gap: 15px;
}

.upskill-section .upskill-items img{
    width: 45px;
}

.upskill-section .upskill-items p{
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #575757;
    margin-bottom: 0;
}

.upskill-section .upskill-items p span{
    color: #E15625;
    font-weight: 500;
}

.upskill-sec, .upskill-items{
    padding-left: 20px;
}

.course-section {
    margin-top: 140px;
    background: #E1F5FF;
    position: relative;
}

.image-section {
    position: relative;
}

.girl-image {
    width: 100%;
    height: 575px;
    object-fit: contain;
    margin-top: -100px;
    position: relative;
    z-index: 4;
    margin-left: -70px;
}

.circle-background {
    position: absolute;
    top: 48%;
    right: 40px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: none;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 1s ease-out;
    z-index: 1;
}

.progress-ring {
    fill: none;
    /* stroke: rgba(35, 86, 165, 0.75); */
    stroke-width: 55px;
    stroke-linecap: round;
    stroke-dasharray: 1036;
    stroke-dashoffset: 1036;
    transform-origin: center;
    transform-origin: 150px 230px;
    transform: rotate(-150deg);
}

.ring-mask {
    transform-origin: center;
    transform: rotate(-150deg);
}

.circle-animation {
    position: absolute;
    left: 110px;
    top: 50%;
    width: 420px;
    height: 420px;
    transform: translateY(-50%);
    z-index: 2;
}

.ring-svg {
    width: 100%;
    height: 100%;
}

.progress-ring,
.ring-mask {
    transform-origin: center;
    transform: rotate(-150deg);
}

.course-section.visible .ring-mask {
    animation: ringProgress 3s ease-out forwards;
}

@keyframes ringProgress {
    from { stroke-dashoffset: 879; }
    to   { stroke-dashoffset: 0; }
}

.accordion-container {
    position: relative;
    padding: 60px 0;
}

.custom-accordion-item {
    margin-bottom: 18px;
    background: #F3FBFF;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 3;
    transition: margin-left 0.6s ease;
}

@media (min-width: 992px) {
    .custom-accordion-item:nth-child(1) { margin-left: -15px !important; width: 485px; }
    .custom-accordion-item:nth-child(2) { margin-left: -40px; }
    .custom-accordion-item.active:nth-child(2) { margin-left: -15px !important }
    .custom-accordion-item:nth-child(3) { margin-left: -80px; margin-bottom: 0; width: 410px; }
    /* .custom-accordion-item.active:nth-child(3) { margin-left: -15px !important } */
}

@media (min-width: 992px) and (max-width: 1199px){
    .accordion-container{
        padding: 40px 0;
    }

    .girl-image{
        height: 500px;
        margin-top: -47px;
        margin-left: -60px;
    }

    .circle-animation{
        left: 40px;
    }

    .salary-chart .chart-area{
        width: 100%;
    }

    .salary-chart .x-axis{
        width: 100%;
    }
}

@media (max-width: 991px){
    .image-section{
        display: none;
    }

    .accordion-container{
        padding: 30px 0;
    }
}

.accordion-header-custom {
    padding: 16px 20px;
    background: #BBE8FF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
}

.accordion-title {
    font-family: 'Montserrat';
    font-size: 17px;
    font-weight: 600;
    color: #2356A5;
    margin: 0;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: 0.3s ease;
}

.custom-accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content-custom {
    height: 0;
    overflow: hidden;
    background: #F3FBFF;
    border-radius: 0 0 10px 10px;
    transition: height 0.8s ease-in-out;
}

.accordion-body-custom {
    padding: 18px 20px;
}

.content-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.content-list li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #575757;
    margin-bottom: 8px;
}

.content-list li img {
    width: 18px;
    height: 18px;
}

.accordion-arc {
    position: absolute;
    top: 50%;
    left: -60px;
    width: 120px;
    height: 120px;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.accordion-arc svg circle {
    fill: none;
    stroke: rgba(30,76,157,0.65);
    stroke-width: 18px;
    stroke-linecap: round;
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
}

@keyframes arcOpen {
    0%   { stroke-dashoffset: 220; opacity: 0; transform: rotate(-140deg); }
    100% { stroke-dashoffset: 0; opacity: 1; transform: rotate(0deg); }
}

@keyframes arcClose {
    0%   { stroke-dashoffset: 0; opacity: 1; transform: rotate(0deg); }
    100% { stroke-dashoffset: 220; opacity: 0; transform: rotate(140deg); }
}

.arc-open circle { animation: arcOpen 0.8s ease-out forwards; }
.arc-close circle { animation: arcClose 0.6s ease-in forwards; }



.program-highlights-section {
    background: url("images/program.png") center/cover no-repeat;
    padding: 80px 0;
    position: relative;
    color: #ffffff;
}

.program-highlights-section .overlay {
    background: rgba(35, 86, 165, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.section-title {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 28px;
    line-height: 40px;
    z-index: 5;
    position: relative;
}

.section-title span {
    color: #ff7a3d;
}

.highlight-box {
    text-align: left;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.highlight-icon {
    width: 18px;
    object-fit: contain;
    margin-bottom: 12px;
}

.highlight-title {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 17px;
    line-height: 15px;
    color: #FF794A;
}

.highlight-text {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
    max-width: 250px;
}

.learn-btn {
    background: #FF794A;
    border: 0px solid #FF794A;
    border-radius: 30px;
    padding: 8px 35px;
    font-weight: 300;
    font-size: 17px;
    color: #FFFFFF;
    margin-top: 40px;
    z-index: 5;
    position: relative;
    transition: 0.3s;
}

.learn-btn:hover {
    background-color: #fff;
    color: #FF794A;
    font-weight: 500;
}

.learn-btn:hover::before{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.learn-btn::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid #FF794A;
    border-radius: 50px;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: clip-path 0.6s ease;
}


.objective{
    margin: 70px 0;
}

.objective .swiper.mySwiper{
    padding: 10px;
}

.objective .card-item{
    background: #FFFFFF;
    border: 1px solid #D3D3D3;
    border-radius: 15px;
    overflow:hidden;
    position:relative;
    transition:.3s;
}

.objective .card-item:hover{
    background: #FFFFFF;
    box-shadow: 4px 4px 12px 2px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
}

.objective .card-item::after{
    content:"";
    position:absolute;
    bottom:0; 
    left:0;
    width:0%; 
    height:8px;
    background:#2356A5;
    transition:width 2.5s;
}

.objective .card-item:hover::after{ 
    width:100%; 
}

.objective .card-img img{
    width:100%;
    object-fit:cover;
}

.objective .icon{
    width: 55px;
    height: 55px;
    border-radius: 50px;
    background: #2356A5;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
    position: relative;
    z-index: 9;
    margin-bottom: 15px;
}

.objective .icon img{
    width: 20px;
}

.objective .card-body{ 
    padding:20px; 
}

.objective .card-title{
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #E15625;
    margin-bottom: 10px;
}

.objective .card-body p{
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #575757;
    margin-bottom: 0;
}

.objective .swiper-buttons{
    margin-top:40px;
    text-align:center;
}

.objective .arrow-btn{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 0;
    background: #2356A5;
    cursor:pointer;
    margin:0 5px;
    transition:.3s;
    color: #fff;
    transition-property: background, transform;
    transition-duration: 0.9s;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.objective .arrow-btn:hover{
    background:#FF794A;
    color:#fff;
}

.objective .arrow-btn.swiper-button-disabled{
    background: #D3F0FF;
    pointer-events: none;
    cursor: not-allowed;
}


.curricululm .curriculum-card {
    padding:28px;
    height:100%;
    background: #E1F5FF;
    box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
}

.curricululm .bg-n5 { background:#E1F5FF; }
.curricululm .bg-n4 { background:#ffeee1; }
.curricululm .bg-n3 { background:#FFEAF0; }
.curricululm .bg-n2 { background:#FEF6F3; }
.curricululm .bg-n1 { background:#e1ebff; }

.curricululm .curriculum-title {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #2356A5;
    margin-bottom: 25px;
}

.curricululm .curricululm-points {
    display:flex;
    gap:12px;
    margin-bottom: 15px;
    cursor: pointer;
}

.curricululm .curricululm-points:last-child{
    margin-bottom: 0;
}

.curricululm .bullet-icon {
    width: 35px;
    height: 35px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2356A5;
    color: #fff;
    flex-shrink: 0;
    transition-property: background, transform;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.curricululm .curricululm-points:hover .bullet-icon{
    background: #FF794A;
}

.curricululm .curricululm-points .content{
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #575757;
}

.curricululm .swiper-wrapper { 
    align-items:stretch; 
    padding: 10px 0;
}

.curricululm .swiper-pagination {
    position:relative !important;
    margin-top:40px !important;
}

.curricululm .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #D9D9D9;
    border-radius: 50%;
    opacity: 1;
}

.curricululm .swiper-pagination-bullet-active {
    background:#2356A5;
}



.chart-bar{
    margin: 70px 0 60px;
}

.chart-bar .title{
    margin-bottom: 20px;
}

.chart-bar .description{
    margin-bottom: 50px;
}

/*.chart-bar .chart-container {*/
/*    background: #F7F7F7;*/
/*    border-radius: 15px;*/
/*    padding: 20px;*/
/*    width: 100%;*/
/*}*/

.chart-bar .chart-title {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: #575757;
    margin-bottom: 25px;
    margin-top: 10px;
}

/*.chart-bar .chart-area {*/
/*    position: relative;*/
/*    height: 400px;*/
/*    margin: 0 auto;*/
/*    max-width: 550px;*/
/*}*/

/*.chart-bar .y-axis {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    bottom: 60px;*/
/*    width: 50px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: space-between;*/
/*    font-size: 0.9rem;*/
/*    color: #666;*/
/*    border-right: 1px solid #B1B1B1;*/
/*}*/

/*.chart-bar .y-axis-label {*/
/*    font-family: 'Montserrat';*/
/*    font-weight: 400;*/
/*    font-size: 12px;*/
/*    line-height: 20px;*/
/*    color: #575757;*/
/*}*/

/*.chart-bar .x-axis-line {*/
/*    position: absolute;*/
/*    bottom: 60px;*/
/*    left: 50px;*/
/*    right: 20px;*/
/*    height: 0.5px;*/
/*    background: #B1B1B1;*/
/*}*/

/*.chart-bar .bars-container {*/
/*    position: absolute;*/
/*    left: 70px;*/
/*    right: 20px;*/
/*    top: 0;*/
/*    bottom: 60px;*/
/*    display: flex;*/
/*    align-items: flex-end;*/
/*    justify-content: space-around;*/
/*}*/

/*.chart-bar .bar-wrapper {*/
/*    flex: 1;*/
/*    max-width: 150px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    position: relative;*/
/*    height: 100%;*/
/*}*/

/*.chart-bar .bar-inner {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: flex-end;*/
/*    align-items: center;*/
/*}*/

/*.chart-bar .bar {*/
/*    width: 50%;*/
/*    background: #2356A5;*/
/*    position: relative;*/
/*    height: 0;*/
/*    transition: height 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);*/
/*}*/

/*.chart-bar .bar.animate {*/
/*    height: var(--bar-height);*/
/*}*/

/*.chart-bar .bar-value {*/
/*    position: absolute;*/
/*    bottom: 100%;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    opacity: 0;*/
/*    transition: opacity 0.5s ease 1.5s;*/
/*    margin-bottom: 5px;*/
/*    font-family: 'Montserrat';*/
/*    font-weight: 600;*/
/*    font-size: 14px;*/
/*    line-height: 20px;*/
/*    color: #EA6A38;*/
/*}*/

/*.chart-bar .bar.animate .bar-value {*/
/*    opacity: 1;*/
/*}*/

/*.chart-bar .center-circle {*/
/*    position: absolute;*/
/*    width: 94px;*/
/*    height: 55px;*/
/*    background: #D2E4FF;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    opacity: 0;*/
/*    transition: opacity 0.3s ease;*/
/*    z-index: 10;*/
/*    pointer-events: none;*/
/*    font-family: 'Montserrat';*/
/*    font-weight: 400;*/
/*    font-size: 11px;*/
/*    line-height: 15px;*/
/*    color: #575757;*/
/*}*/

/*.chart-bar .center-circle.animate {*/
/*    opacity: 1;*/
/*}*/

/*.chart-bar .cagr-text {*/
/*    font-size: 9px;*/
/*    line-height: 12px;*/
/*}*/

/*.chart-bar .x-axis {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 70px;*/
/*    right: 20px;*/
/*    height: 60px;*/
/*    display: flex;*/
/*    justify-content: space-around;*/
/*}*/

/*.chart-bar .x-label {*/
/*    flex: 1;*/
/*    max-width: 150px;*/
/*    font-family: 'Montserrat';*/
/*    font-weight: 400;*/
/*    font-size: 15px;*/
/*    line-height: 24px;*/
/*    text-align: center;*/
/*    color: #575757;*/
/*    margin-top: 15px;*/
/*}*/

/*.chart-bar .legend {*/
/*    text-align: center;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 10px;*/
/*    margin-bottom: 5px;*/
/*}*/

/*.chart-bar .legend-box {*/
/*    width: 14px;*/
/*    height: 14px;*/
/*    background: #2356A5;*/
/*}*/

/*.chart-bar .legend-text {*/
/*    font-family: 'Montserrat';*/
/*    font-weight: 400;*/
/*    font-size: 14px;*/
/*    line-height: 24px;*/
/*    color: #575757;*/
/*}*/

/*.chart-bar .connector-line {*/
/*    position: absolute;*/
/*    border: 1px solid #B7B7B7;*/
/*    opacity: 0;*/
/*    transition: opacity 0.3s ease;*/
/*    z-index: 5;*/
/*}*/

/*.chart-bar .connector-line.animate {*/
/*    opacity: 1;*/
/*}*/

/*.chart-bar .connector-line:last-child:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: -2px;*/
/*    top: -2.5px;*/
/*    height: 5px;*/
/*    border-top: 2px solid #B7B7B7;*/
/*    border-right: 2px solid #B7B7B7;*/
/*    transform: rotate(-130deg);*/
/*}*/

.chart-container {
  background: #F7F7F7;
  border-radius: 15px;
  padding: 25px 20px 30px;
}

.chart-bar h2.chart-title{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #2356A5;
    margin-bottom: 0px;
}
.chart-bar #chart_0{
    height: 420px !important;
}
@media (max-width: 768px){
    .chart-bar #chart_0{
        height: 290px !important;
    }
}
.chart-year{
  font-family: 'Montserrat';
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #575757;
  margin-top: 20px;
  margin-bottom: 0;
}



.chart-bar .chart-bar-details{
    padding-left: 35px;
}

.chart-bar .chart-bar-details .description{
    margin-bottom: 35px;
}

.chart-bar .chart-bar-point{
    margin-bottom: 15px;
}

.chart-bar .chart-bar-point .point{
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.chart-bar .chart-bar-point .point .icon{
    min-width: 6px;
    height: 18px;
    background: #2356A5;
    margin-top: 4px;
    transition-property: background, transform;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.chart-bar .chart-bar-point .point:hover .icon{
    background: #FF794A;
}

.chart-bar .chart-bar-point .point .content{
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #575757;
}


.salary-chart .title{
    text-align: center;
    margin-bottom: 50px;
}

.salary-chart .chart-container {
    padding: 40px;
    box-sizing: border-box;
    background: #FEF6F3;
    border-radius: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.salary-chart .chart-area {
    position: relative;
    height: 390px;
    display: flex;
    width: 800px;
}

.salary-chart .y-axis {
    width: 70px;
    border-right: 1px solid #B8B8B8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #575757;
}

.salary-chart .y-axis-line {
    position: absolute;
    left: 70px;
    right: 20px;
    height: 0.5px;
    background: #A9A9A9;
    width: 15px;
}

.salary-chart .y-1 { top: 10px; }
.salary-chart .y-2 { top: 85px; }
.salary-chart .y-3 { top: 159px; }
.salary-chart .y-4 { top: 233px; }
.salary-chart .y-5 { top: 307px; }
.salary-chart .y-6 { top: 390px; }

.salary-chart .bars-container {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-left: 30px;
    padding-right: 20px;
    margin-left: 5px;
    height: 100%;
    border-bottom: 1px solid #B8B8B8;
}

.salary-chart .bar-group {
    display: flex;
    align-items: flex-end;
    gap: 0;
    max-width: 115px;
}

.salary-chart .bar {
    width: 40px;
    height: 0;
    background: #2356A5;
    transition: height 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.salary-chart .bar.orange {
    background: #E15625;
}

.salary-chart .bar.animate {
    height: var(--bar-height);
}

.salary-chart .x-axis {
    display: flex;
    justify-content: space-between;
    padding-left: 85px;
    margin-top: 12px;
    width: 800px;
}

.salary-chart .x-label {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #575757;
    max-width: 115px;
    white-space: normal;
    word-break: break-word;
    margin-left: 15px;
}

.salary-chart .legend {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #575757;
    padding-left: 50px;
}

.salary-chart .legend-box {
    width: 15px;
    height: 17px;
}

.salary-chart .legend-blue {
    background: #2356A5;
}

.salary-chart .legend-orange {
    background: #E15625;
}

.salary-chart .note-text {
    margin-top: 25px;
    padding-left: 20px;
    max-width: 700px;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #E15625;
}


.excellence{
    margin: 70px 0;
}

.excellence .title:first-child{
    text-align: center;
    background: linear-gradient(rgba(35, 86, 165, 0.9), rgba(35, 86, 165, 0.9)), url(images/bhrighu-apart.png);
    border-radius: 25px;
    padding: 50px 50px 100px;
}

.excellence .title .description{
    color: #fff;
    margin-top: 15px;
    margin-bottom: 0;
}

.excellence .title .label{
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #FFFFFF;
}

.excellence .description{
    font-size: 14px;
}

.excellence .title span{
    color: #FFF;
}

.excellence .features-grid{
    width: 1174px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    padding: 50px;
    margin-top: -50px;
    margin-left: 50px;
    margin-right: 50px;
}

.excellence .feature-item{
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.excellence .feature-icon {
    width: 38px;
    height: 38px;
    background: #2356A5;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    transition-property: background, transform;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.excellence .feature-icon i{
    color: #fff;
}

.excellence .feature-item:hover .feature-icon {
    background: #EA6A38;
    transition: transform 0.6s ease;
}

.excellence .feature-item:hover .feature-icon i{
    color: #fff;
}

.excellence .feature-content h5 {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    color: #2356A5;
}

.excellence .feature-content p{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #575757;
}

/* .excellence .cta-button {
    background: #FF794A;
    border: 0px solid #FF794A;
    border-radius: 30px;
    padding: 8px 35px;
    font-weight: 300;
    font-size: 17px;
    color: #FFFFFF;
    margin-top: 40px;
    z-index: 5;
    position: relative;
    transition: 0.3s;
}

.excellence .cta-button:hover {
    background-color: #2356A5;
    color: #FFF;
    font-weight: 500;
}

.excellence .cta-button:hover::before{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.excellence .cta-button::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid #FF794A;
    border-radius: 50px;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: clip-path 0.6s ease;
} */

.excellence .cta-button{
    border: 1px solid #FF794A;
    border-radius: 40px;
    padding: 7px 35px;
    font-weight: 300;
    font-size: 18px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    color: #FFFFFF;
    background: #FF794A;
    transition: 0.5s ease-in-out;
    text-transform: capitalize;
    overflow: hidden;
    z-index: 2;
    text-align: center;
}

.excellence .cta-button:hover{
    border-color: #2356A5;
}

.excellence .cta-button::before,
.excellence .cta-button::after {
    content: "";
    position: absolute;
    background: #2356A5;
    width: 50%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.excellence .cta-button::before {
    top: 0;
    left: 0;
    transform-origin: top left;
}

.excellence .cta-button::after {
    bottom: 0;
    right: 0;
    transform-origin: bottom right;
}

.excellence .cta-button:hover::before,
.excellence .cta-button:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.excellence .cta-button:hover {
    color: #fff;
    border-color: #2356A5;
}




.faq-section {
    margin: 70px 0;
}

.faq-section .title{
    text-align: center;
    margin-bottom: 50px;
}

.faq-section .accordion-item{
    background: #FFFFFF;
    box-shadow: 0px 0px 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 18px 22px;
    border: 0;
    margin-bottom: 15px;
}

.faq-section .accordion-item:hover .accordion-header .accordion-button{
    color: #E15625;
}

.faq-section .accordion-button {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #2356A5;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.faq-section .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: #E15625;
    background: transparent;
}

.faq-section .accordion-button .icon {
    transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) .icon{
    transform: rotate(180deg);
}

.faq-section .accordion-button .icon{
    color: #FF794A;
}

.faq-section .accordion-body {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #575757;
    padding: 0;
    margin-top: 15px;
}

.faq-section .accordion-button::after {
    display: none;
}

.faq-section .accordion-button:focus{
    border: 0;
    box-shadow: none;
}

.faq-section .load-more-accordion{
    text-align: center;
    margin-top: 50px;
}

.faq-section .load-more-accordion .load-more-btn{
    background: #fff;
    border: 1px solid #2356A5;
    border-radius: 40px;
    padding: 8px 35px;
    font-weight: 500;
    font-size: 17px;
    color: #2356A5;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    transition: 0.5s ease-in-out;
    text-transform: capitalize;
    overflow: hidden;
    z-index: 2;
    text-align: center;
}

.faq-section .load-more-accordion .load-more-btn:hover{
    border-color: #2356A5;
}

.faq-section .load-more-accordion .load-more-btn::before,
.faq-section .load-more-accordion .load-more-btn::after {
    content: "";
    position: absolute;
    background: #2356A5;
    width: 50%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.faq-section .load-more-accordion .load-more-btn::before {
    top: 0;
    left: 0;
    transform-origin: top left;
}

.faq-section .load-more-accordion .load-more-btn::after {
    bottom: 0;
    right: 0;
    transform-origin: bottom right;
}

.faq-section .load-more-accordion .load-more-btn:hover::before,
.faq-section .load-more-accordion .load-more-btn:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.faq-section .load-more-accordion .load-more-btn:hover {
    color: #fff;
    border-color: #2356A5;
}

.faq-section .load-more-accordion .load-more-btn:hover{
    background: #2356A5;
    color: #fff;
}

.partners{
    margin: 100px 0 50px;
}

.partners .description{
    margin-top: 10px;
}

.partners .our-partner h5{
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #BC002D;
    margin-bottom: 40px;
}

.partners .our-partner{
    text-align: end;
    transition: all 0.3s 
ease;
}

.partners .our-partner img:hover{
    transform: scale(1.03);
    transition: transform 0.6s 
ease;
}

.partners .our-partner img{
    width: auto;
    height: 200px;
    cursor: pointer;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 10px;
}

.partners .our-partner .img-title{
    margin-top: 20px;
    text-align: center;
}

.partners .image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.partners .image-modal .modal-content {
    display: block;
    margin: auto;
    max-width: 50%;
    max-height: 60%;
}

.partners .image-modal .close-modal {
    position: absolute;
    top: 0px;
    right: 10px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.partners #image-modal .modal-content{
    height: 100%;
    top: 80px;
}

.accordion-item {
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    transform 0.3s ease,
    margin 0.3s ease,
    padding 0.3s ease;
}

/* Hidden = ZERO SPACE */
.accordion-item.hidden {
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: 0 !important;
}

/* Visible */
.accordion-item.visible {
  max-height: 1000px; /* large enough */
  opacity: 1;
  transform: translateY(0);
}


@media (min-width: 1530px) and (max-width: 1540px){
    .hero-title{
        margin-bottom: 5px;
    }

    .hero-section{
        padding-top: 90px;
    }

    .vr-person-img{
        height: 453px;
    }

    .orange-blob{
        width: 345px;
    }
}

@media (min-width: 1200px) {
    .container{
        max-width: 1130px;
    }
}

@media (min-width: 992px) and (max-width: 1199px){
    .feature-box h3{
        font-size: 14px;
    }

    .feature-box.two{
        padding: 35px 30px 25px;
        margin-top: -25px;
    }
}

/*@media (min-width: 992px) and (max-width: 1100px){
    .chart-bar .bar{
        width: 35%;
    }
}*/

@media (min-width: 992px){
    .hero-section .mobile{
        display: none;
    }
}

@media (min-width: 768px){
    .sticky-bar{
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px){
    .hero-section .desktop{
        display: none !important;
    }

    .hero-section .feature-box{
        border-radius: 10px;
    }

    .hero-section .content-wrapper .row .col-12.col-lg-6.col-md-12{
        order: 1;
    }

    .hero-section .mobile{
        margin-top: 15px;
    }

    .hero-section .mobile .left-features{
        display: flex;
        flex-direction: column;
        align-items: end;
    }

    .course-section {
        margin-top: 70px;
        background: #E1F5FF;
    }

    .course-section .girl-image{
        height: auto;
        margin-top: 0;
    }
    
    .course-section .col-12.col-md-6{
        width: 100%;
    }

    .course-section .custom-accordion-item:nth-child(2),
    .course-section .custom-accordion-item:nth-child(3){
        margin-left: 0 !important;
    }

    .course-section .custom-accordion-item:nth-child(3){
        margin-bottom: 0;
    }

    .excellence .features-grid{
        margin-left: 20px;
        margin-right: 20px;
        padding: 25px;
    }

    .excellence .feature-item{
        padding-bottom: 0;
    }

    .upskill-section .upskill-sec{
        margin-top: 20px;
    }

    .chart-bar .chart-bar-details{
        padding-left: 0px;
    }

    /*.chart-bar .bar {
        width: 25%;
    }

    .chart-bar .center-circle{
        width: 70px;
        height: 45px;
        font-size: 10px;
    }

    .chart-bar .cagr-text{
        font-size: 8px;
    }*/

    .content-wrapper,
    .left-features, 
    .right-features{
        margin-top: 0;
    }

    .hero-section .content-wrapper .align-items-center{
        justify-content: center;
    }

    .hero-section .content-wrapper .align-items-center .col-md-6{
        width: 40%;
    }

    .vr-person-img{
        height: 420px;
    }

    .orange-blob{
        width: 320px;
    }

    .salary-chart .chart-area{
        width: 100%;
    }

    .salary-chart .x-axis{
        width: 100%;
    }

    .salary-chart .chart-container{
        padding: 20px;
    }

    .salary-chart .x-label:nth-child(4){
        margin-left: 0;
    }

    .salary-chart .x-label:last-child{
        margin-left: 0;
    }

    .salary-chart .legend{
        padding-left: 100px;
    }

    .salary-chart .note-text{
        padding-left: 70px;
    }
}

@media (max-width: 767px){
    .desktop{
        display: none !important;
    }

    .loader-logo img{
        width: 250px;
    }

    .header {
        padding: 15px 0;
    }

    .header .logo img {
        width: 130px;
    }

    .header .phone-number {
        font-size: 12px;
        line-height: 22px;
        padding: 0 18px 0 10px;
    }

    .header .phone-icon-container {
        width: 35px;
        height: 35px;
    }

    .footer-section{
        padding: 30px 0 25px;
    }

    .footer-section .logo-icon{
        text-align: center;
    }

    .footer-section .footer-main{
        margin-top: 35px;
    }

    .footer-section .social-title{
        font-size: 20px;
        line-height: 24px;
        text-align: center;
        margin-top: 35px;
    }

    .footer-section .social-links{
        justify-content: center;
    }

    .footer-section .footer-bottom{
        margin-top: 40px;
    }

    .footer-section .copyright-text{
        margin-bottom: 10px;
    }

    .footer-section img{
        position: relative;
        left: -14px;
    }

    .footer-section .footer-menu h4{
        margin-left: 0;
        margin-bottom: 5px;
        text-align: center;
    }

    .footer-section .footer-menu a{
        display: inline-table;
    }

    .footer-section .footer-menu .menu span{
        color: #fff;
    }

    #backToTopBtn {
        display: none !important;
    }
    
    #backToTopBtn.show {
        display: block;
    }

    .hero-section .hero-title{
        font-size: 18px;
        line-height: 26px;
    }

    .hero-section .career-title{
        font-size: 15px;
        line-height: 24px;
    }

    .hero-section .feature-box{
        padding: 15px 25px;
        border-radius: 10px;
        margin-bottom: 0;
        margin-top: -5px;
    }

    .hero-section .feature-box h3{
        font-size: 11px;
        line-height: 15px;
    }

    .hero-section .right-features .feature-box:first-child h3{
        line-height: 14px;
    }

    .hero-section .content-wrapper .row .col-12.col-lg-6.col-md-12{
        order: 1;
    }

    .hero-section .vr-person-img{
        height: 350px;
        animation: none;
    }

    .hero-section .orange-blob{
        width: 270px;
        height: 100%;
        top: 77%;
        animation: none;
    }

    .hero-section .mobile{
        margin-top: 15px;
    }

    .hero-section .mobile .left-features{
        display: flex;
        align-items: end;
        flex-direction: column;
    }

    .hero-section .mobile .right-features{
        margin-left: -5px;
    }

    .hero-section .mobile .row.align-items-center{
        justify-content: center;
    }

    .enroll-btn{
        width: 240px;
    }

    .hero-section .center-image-wrapper{
        padding: 0;
    }

    .cta-section{
        margin-top: -60px;
    }

    .upskill-section,
    .course-section,
    .objective,
    .excellence,
    .faq-section,
    .chart-bar,
    .partners{
        margin: 40px 0;
    }

    .title{
        font-size: 22px;
        line-height: 30px;
    }
    .objective.animate-section .title,
    .curricululm.animate-section .title{
        text-align: center;
    }
    
    .objective.animate-section .swiper.mt-5,
    .curricululm.animate-section .swiper.mt-5{
        margin-top: 20px !important;
    }

    .description{
        font-size: 14px;
    }

    .upskill-section .upskill-items p{
        font-size: 14px;
    }

    .course-section {
        padding: 30px 0;
    }

    .course-section .girl-image{
        height: auto;
        margin: 0;
    }

    .course-section .accordion-container{
        padding: 0;
    }

    .course-section .custom-accordion-item:nth-child(2),
    .course-section .custom-accordion-item:nth-child(3){
        margin-left: 0 !important;
    }

    .course-section .custom-accordion-item:nth-child(3){
        margin-bottom: 0;
    }

    .course-section .accordion-title{
        font-size: 16px;
    }

    .course-section .content-list li{
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .course-section .content-list li img{
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

    .program-highlights-section{
        padding: 30px 0;
    }

    .program-highlights-section .highlight-icon{
        margin-top: 3px;
    }

    .program-highlights-section .highlight-icon{
        width: 16px;
    }

    .program-highlights-section .highlight-box{
        justify-content: left;
        padding-left: 40px;
    }

    .objective .swiper-buttons{
        margin-top: 20px;
    }

    .objective .arrow-btn{
        width: 40px;
        height: 40px;
    }

    .curricululm .swiper-pagination{
        margin-top: 30px !important;
    }

    .upskill-section .title{
        margin: 15px 0;
    }

    .excellence .title:first-child{
        padding: 25px 25px 70px;
    }

    .excellence .title .label{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 5px;
    }

    .excellence .features-grid{
        width: 100%;
        padding: 20px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .excellence .feature-item{
        padding: 10px 0;
    }

    .excellence .feature-content h5{
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 0;
    }

    .excellence .feature-content p{
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 0;
    }

    .excellence .features-grid .text-center{
        margin-bottom: 20px;
    }

    .cta-button{
        padding: 15px 30px;
        font-size: 14px;
        line-height: 22px;
    }

    .chart-bar .chart-container{
        padding: 15px;
    }

    .chart-bar .chart-title{
        font-size: 14px;
    }

    /*.chart-bar .bar{
        width: 35%;
    }

    .chart-bar .center-circle{
        width: 70px;
        height: 45px;
        font-size: 10px;
    }

    .chart-bar .cagr-text{
        font-size: 8px;
    }

    .chart-bar .x-axis{
        bottom: 25px;
        height: auto;
    }

    .chart-bar .x-label{
        margin-top: 0;
    }

    .chart-bar .legend{
        margin-top: -20px;
    }*/

    .chart-bar .chart-bar-details{
        padding-left: 0;
        margin-top: 20px;
    }

    .chart-bar .chart-bar-details .description{
        margin-bottom: 20px;
    }

    .salary-chart .chart-container{
        padding: 15px;
    }

    .salary-chart .title{
        margin-bottom: 30px;
    }

    .salary-chart .y-axis-line{
        left: 35px;
    }

    .salary-chart .chart-area{
        width: 100%;
        height: 320px;
    }

    .salary-chart .bar{
        width: 20px;
    }

    .salary-chart .bars-container{
        padding-left: 15px;
        padding-right: 0;
    }

    .salary-chart .y-axis{
        font-size: 10px;
        line-height: 14px;
        width: 35px;
    }

    .salary-chart .y-6{
        top: 320px;
    }

    .salary-chart .y-5 {
        top: 255px;
    }

    .salary-chart .y-4 {
        top: 195px;
    }
    
    .salary-chart .y-3 {
        top: 135px;
    }

    .salary-chart .y-2 {
        top: 70px;
    }

    .salary-chart .x-axis{
        gap: 5px;
        padding-left: 36px;
        width: 100%;
    }

    .salary-chart .x-label{
        font-size: 8px;
        line-height: 12px;
        margin-left: 0px;
    }

    .salary-chart .x-label:nth-child(4),
    .salary-chart .x-label:last-child{
        margin-left: 0;
    }

    .salary-chart .legend{
        padding-left: 40px;
        margin-top: 20px;
        font-size: 11px;
        line-height: 15px;
    }

    .salary-chart .note-text{
        margin-top: 20px;
        padding-left: 39px;
        font-size: 12px;
    }

    .faq-section .title{
        margin-bottom: 25px;
    }

    .faq-section .accordion-item{
        padding: 18px;
    }

    .faq-section .accordion-button{
        font-size: 16px;
        line-height: 24px;
    }

    .faq-section .accordion-body{
        font-size: 12px;
        margin-top: 10px;
    }

    .partners .image-modal .modal-content{
        max-width: 100%;
        object-fit: contain;
    }

    .partners .our-partner img{
        width: 100%;
        height: 100%;
    }

    .partners .our-partner{
        margin-top: 15px;
    }

    .partners .our-partner h5{
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 30px;
    }

    .content-wrapper,
    .left-features, 
    .right-features{
        margin-top: 0;
    }
}

@media (max-width: 512px){
    .hero-section .feature-box h3{
        font-size: 10px;
    }
}

@media (max-width: 456px){
    .hero-section .feature-box h3 {
        font-size: 9px;
    }
}

@media (max-width: 425px){
    .hero-section .feature-box h3 {
        font-size: 8px;
    }
}

@media (max-width: 399px){

    .hero-section .feature-box {
        padding: 15px 23px;
    }
}

@media (min-width: 344px) and (max-width: 365px){
    .feature-box h3{
        font-size: 7px !important;
        line-height: 13px !important;
    }
}

@media (max-width: 343px) {
    .hero-section .feature-box h3 {
        font-size: 7px !important;
        line-height: 10px !important;
    }
}


.form-box .form-control,
.form-box .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
}
.form-box .form-control:focus, .form-select:focus {
    box-shadow: none !important;
    outline: none;
    border-color: #E15625;
}
.form-box .form-control::placeholder {
    color: #6c757d;
    opacity: 0.8;
}
.form-box .input-group-text {
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: 12px 0 0 12px;
    background: #fff;
    color: #333333;
    font-weight: 600;
    padding: 8px 16px;
}
.form-box .input-group .form-control {
    border-left: none;
    border-radius: 0 12px 12px 0;
    margin-bottom: 0;
}
.form-box .input-group:focus-within .input-group-text {
    border-color: #E15625;
}
.form-box .input-group:focus-within .form-control {
    border-color: #E15625;
}
.form-box .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234E0E0D' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 31px;
}
.form-box .form-select option:disabled {
    color: #6c757d;
}
.form-box .form-check {
    margin: 1.5rem 0;
}
.form-box .form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.1em;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
}
.form-box .form-check-input:checked {
    background-color: #e91e63;
    border-color: #e91e63;
}
.form-box .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    border-color: #e91e63;
}
.form-box .form-check-label {
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.5;
    margin-left: 0.5rem;
}
.form-box .btn-submit {
    width: 325px;
    cursor: pointer;
    animation-fill-mode: both;
    z-index: 999;
    font-weight: 300;
    font-size: 20px;
    line-height: 25px;
    color: rgb(255, 255, 255);
    padding: 10px 60px;
    border-radius: 50px;
    text-decoration: none;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
}
.form-box .btn-submit:hover {
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, #BC002D, #EFB7C6) border-box;
    color: #BC002D;
}
@media (max-width: 768px) {
    .form-box .form-control,
    .form-box .form-select {
        padding: 8px 12px;
    }
    .form-box .input-group-text {
        padding: 8px 12px;
    }
    .form-box .btn-submit {
        padding: 10px;
        font-size: 1rem;
    }
}
.form-box .info-box{
    padding: 50px 20px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: left;
    animation: fadeInRight 1s ease forwards;
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(+30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.form-error{
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.error {
    color: #ff091f;
    padding: 3px 20px 5px 10px;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
}

/*countdown*/
    #countdown.countdown-container {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
      margin: 20px 0;
    }

    #countdown .unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 80px;
    }

    #countdown .unit-label {
      margin-top: 12px;
      font-size: 0.8rem;
      opacity: 0.9;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: white;
    }

    #countdown .flip-card {
      width: 70px;
      height: 80px;
      position: relative;
      perspective: 300px;
    }

    #countdown .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.6s;
      transform-style: preserve-3d;
    }

    #countdown .flip-card.flipping .flip-card-inner {
      transform: rotateX(-180deg);
    }

    #countdown .flip-card-front,
    #countdown .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.0rem;
      font-weight: bold;
      border-radius: 12px;
      /*background: linear-gradient(145deg, #1e40af, #3b82f6);*/
      background: #cdedfe;
      color: #2356A5;
      box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    }

    #countdown .flip-card-front {
      /*background: linear-gradient(145deg, #1e3a8a, #3b82f6);*/
      background: #cdedfe;
    }

    #countdown .flip-card-back {
      transform: rotateX(180deg);
      /*background: linear-gradient(145deg, #1e40af, #60a5fa);*/
       background: #cdedfe;
    }


    @media (max-width: 600px) {
      #countdown .flip-card { width: 55px; height: 70px; }
      #countdown .flip-card-front, #countdown .flip-card-back { font-size: 25px; }
      #countdown.countdown-container { gap: 12px; }
      #countdown .unit-label { font-size: 0.7rem; }
    }
