body {
    background: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: .3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bg-primary {
    background: var(--primary) !important;
}

.bg-secondary {
    background: var(--secondary) !important;
}

.bg-success {
    background: var(--success) !important;
}

.bg-danger {
    background: var(--danger) !important;
}

.bg-warning {
    background: var(--warning) !important;
}

.bg-info {
    background: var(--info) !important;
}

.bg-light {
    background: var(--bg-body) !important;
}

.bg-white {
    background: var(--bg-card) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-info {
    color: var(--info) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.border {
    border-color: var(--border-color) !important;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: .3s ease;
}

.card:hover {
    transform: translateY(-4px);
}

.card-title,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
    font-weight: 700;
}

p,
small,
span {
    color: var(--text-muted);
}

.btn {
    border-radius: 50rem;
    font-weight: 600;
    transition: .3s ease;
}

.btn-primary {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--active);
    padding: .75rem 1.75rem;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--active);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: .75rem 1.75rem;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--active);
    transform: translateY(-2px);
}

/* ===============================
   Uplift Feature Cards
================================= */

.uplift-feature-wrapper {
    margin-top: 2rem;
}

.uplift-feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all .35s ease;
    height: 100%;
}

.uplift-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.uplift-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
}

.uplift-feature-content h5 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.uplift-feature-content small {
    display: block;
    margin-top: 4px;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 576px) {
    .uplift-feature-card {
        padding: 15px;
        gap: 12px;
    }

    .uplift-feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }

    .uplift-feature-content h5 {
        font-size: 1.25rem;
    }

    .uplift-feature-content small {
        font-size: 0.8rem;
    }
}


.navbar {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(255,255,255,.85) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 0px 0px rgba(0, 0, 0, .0) !important;
    padding: .70rem 0;
      transition:
        background .35s ease,
        backdrop-filter .35s ease,
        box-shadow .35s ease,
        padding .35s ease;
}

.navbar.scrolled {
    top: 0;
    padding: .75rem 0;
    background: rgba(255,255,255,.95) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.navbar.scrolled .navbar-brand img {
    height: 45px;
    transform: scale(.95);
}

.navbar-brand img {
    transition: height .35s ease, transform .35s ease;
}

.navbar.scrolled .nav-link {
    padding-top: .55rem !important;
    padding-bottom: .55rem !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.navbar-brand img {
    height: 58px;
    aspect-ratio: 3 / 1;
    width: auto;
    object-fit: contain;
    transition: .3s ease;
}
.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand h5 {
    margin: 0;
    color: var(--secondary);
    font-weight: 700;
}

.navbar-brand small {
    display: block;
    color: var(--text-muted);
    font-size: .75rem;
}

.navbar-nav {
    align-items: center;
    gap: .35rem;
}

.navbar-nav .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--secondary) !important;
    font-weight: 600;
    font-size: .96rem;
    padding: .8rem 1rem !important;
    border-radius: 50rem;
    transition: .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary) !important;
    background: var(--hover);
}

.navbar-nav .nav-link.active {

    color: var(--primary) !important;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: .3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 45%;
}
.dropdown-toggle::after{
    display:none;
}

.dropdown{
    position:relative;
}

.dropdown-icon{
    font-size:.75rem;
    color:var(--primary);
    transition:transform .35s ease,color .3s ease;
}

.dropdown.show .dropdown-icon{
    transform:rotate(180deg);
}

.dropdown-menu{
    display:block;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px) scale(.98);
    transform-origin:top center;
    pointer-events:none;
    background:var(--bg-card);
    border:1px solid var(--border-color);
    border-radius:var(--radius-md);
    padding:.6rem;
    min-width:260px;
    margin-top:.75rem;
    box-shadow:var(--shadow-soft);
    transition:all .3s ease;
}

.dropdown.show>.dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
    pointer-events:auto;
}

.dropdown-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:var(--text-dark);
    border-radius:var(--radius-sm);
    padding:.85rem 1rem;
    font-weight:500;
    transition:all .25s ease;
}

.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--primary) !important;
}

.dropdown-item::after{
    content:"\f105";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    opacity:0;
    transform:translateX(-8px);
    transition:.25s ease;
    color:var(--active);
}

.dropdown-item:hover,
.dropdown-item:focus{
    background:var(--primary);
    color:var(--active);
    padding-left:1.25rem;
}

.dropdown-item:hover::after{
    opacity:1;
    transform:translateX(0);
}

.dropdown-divider{
    border-color:var(--border-color);
}

@media (min-width:992px){

    .dropdown:hover>.dropdown-menu{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
        pointer-events:auto;
    }

    .dropdown:hover>.nav-link .dropdown-icon{
        transform:rotate(180deg);
    }

}

@media (max-width:991.98px){

    .dropdown-menu{
        position:static!important;
        float:none;
        width:100%;
        min-width:100%;
        margin-top:.5rem;
        background:var(--bg-body);
        border:1px solid var(--border-color);
        box-shadow:none;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        pointer-events:auto;
        padding:.5rem;
    }

    .dropdown.show>.dropdown-menu{
        display:block;
    }

    .dropdown-item{
        border-radius:var(--radius-sm);
    }

}

@keyframes dropdown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-toggler {
    border: none !important;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    transition: .3s ease;
}

.navbar-toggler:hover {
    border-color: var(--primary);
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.hamburger {
    position: relative;
    width: 22px;
    height: 18px;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    border-radius: 50px;
    transform-origin: center;
    transition:
        transform .4s cubic-bezier(.68,-0.55,.27,1.55),
        opacity .25s ease,
        background .3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.navbar-toggler.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler.active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.navbar-toggler.active {
    transform: rotate(180deg);
}

.navbar-toggler:hover .hamburger span {
    background: var(--primary);
}

.collapsing {
    transition: height .15s linear !important;
}
@media (min-width:992px) {

    .navbar-collapse {
        justify-content: flex-end;
    }

    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
    }
}
.hero-slider{
    background: var(--bg-body);
}

.heroSwiper{
    overflow: hidden;
}

.heroSwiper .swiper-slide{
    aspect-ratio:3/1;
    overflow:hidden;
}

.heroSwiper img,
.heroSwiper picture,
.heroSwiper .hero-video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.heroSwiper .hero-video{
    border:0;
}

.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next{
    width:52px;
    height:52px;
    border-radius:50%;
    background:rgba(0,0,0,.35);
    color:#fff;
    transition:.3s;
    opacity:0;
}

.heroSwiper:hover .swiper-button-prev,
.heroSwiper:hover .swiper-button-next{
    opacity:1;
}

.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after{
    font-size:18px;
    font-weight:700;
}

.heroSwiper .swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:.5;
    transition:.3s;
}

.heroSwiper .swiper-pagination-bullet-active{
    width:34px;
    border-radius:20px;
    background:var(--primary);
    opacity:1;
}

@media(max-width:991px){

    .heroSwiper .swiper-slide{
        aspect-ratio:16/9;
    }

    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next{
        width:42px;
        height:42px;
        opacity:1;
    }

    .heroSwiper .swiper-button-prev::after,
    .heroSwiper .swiper-button-next::after{
        font-size:15px;
    }

}

.about-intro{
    background:var(--bg-body);
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    aspect-ratio:5/4;
    object-fit:cover;
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-soft);
}

.experience-card{
    position:absolute;
    right:25px;
    bottom:25px;
    background:var(--primary);
    color:#fff;
    padding:20px 24px;
    border-radius:var(--radius-md);
    text-align:center;
    box-shadow:var(--shadow-soft);
}

.experience-card h2{
    margin:0;
    font-size:2rem;
    color:#fff;
}

.experience-card span{
    font-size:.95rem;
    opacity:.9;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    background:rgba(10,124,124,.08);
    color:var(--primary);
    padding:.55rem 1rem;
    border-radius:50px;
    font-weight:600;
}

.section-title{
    font-size:2.4rem;
    font-weight:700;
    color:var(--secondary);
    line-height:1.3;
}

.section-desc{
    color:var(--text-muted);
    line-height:1.9;
    margin-top:1rem;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:15px;
    background:var(--bg-card);
    border:1px solid var(--border-color);
    border-radius:var(--radius-md);
    padding:18px;
    transition:.35s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-soft);
    border-color:var(--primary);
}

.feature-box .icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(10,124,124,.08);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.4rem;
    transition:.35s;
}

.feature-box:hover .icon{
    background:var(--primary);
    color:#fff;
}

.feature-box h5{
    margin:0;
    font-weight:700;
    color:var(--secondary);
}

.feature-box small{
    color:var(--text-muted);
}

@media(max-width:991.98px){

    .section-title{
        font-size:1.9rem;
    }

    .experience-card{
        right:15px;
        bottom:15px;
        padding:16px 18px;
    }

}
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

.section {
    padding: 80px 0;
}


.why-choose-us{
    background:var(--bg-body);
}

.section-tag{
    display:inline-block;
    padding:.55rem 1rem;
    border-radius:50px;
    background:rgba(10,124,124,.08);
    color:var(--primary);
    font-weight:600;
}

.section-title{
    font-size:2.4rem;
    font-weight:700;
    color:var(--secondary);
}

.section-desc{
    max-width:720px;
    color:var(--text-muted);
    line-height:1.8;
}

.feature-card{
    height:100%;
    padding:2rem;
    background:var(--bg-card);
    border:1px solid var(--border-color);
    border-radius:var(--radius-lg);
    text-align:center;
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:var(--shadow-soft);
}

.feature-icon{
    width:80px;
    height:80px;
    margin:0 auto 1.5rem;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(10,124,124,.08);
    color:var(--primary);
    font-size:2rem;
    transition:.35s;
}

.feature-card:hover .feature-icon{
    background:var(--primary);
    color:#fff;
    transform:rotateY(180deg);
}

.feature-card h4{
    color:var(--secondary);
    font-weight:700;
    margin-bottom:1rem;
}

.feature-card p{
    color:var(--text-muted);
    margin:0;
    line-height:1.8;
}

@media(max-width:991.98px){

    .section-title{
        font-size:2rem;
    }

    .feature-card{
        padding:1.75rem;
    }

}

.learning-process{
    position:relative;
    background:var(--bg-card);
    overflow:hidden;
}

.learning-process::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:var(--primary);
    opacity:.05;
    border-radius:50%;
    top:-220px;
    right:-180px;
}

.learning-process::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:var(--primary);
    opacity:.04;
    border-radius:50%;
    bottom:-180px;
    left:-120px;
}

.learning-process .container{
    position:relative;
    z-index:2;
}

.process-card{
    position:relative;
    height:100%;
    background:var(--bg-card);
    border:1px solid var(--border-color);
    border-radius:var(--radius-lg);
    padding:2.5rem 1.5rem 2rem;
    text-align:center;
    transition:all .35s ease;
    overflow:hidden;
}

.process-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--primary);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
    box-shadow:var(--shadow-soft);
}

.process-card:hover::before{
    transform:scaleX(1);
}

.process-number{
    position:absolute;
    top:18px;
    right:20px;
    font-size:2.8rem;
    font-weight:800;
    color:rgba(10,124,124,.08);
    line-height:1;
    user-select:none;
}

.process-icon{
    width:85px;
    height:85px;
    margin:0 auto 1.5rem;
    border-radius:50%;
    background:rgba(10,124,124,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-size:2rem;
    transition:.35s;
}

.process-card:hover .process-icon{
    background:var(--primary);
    color:#fff;
    transform:rotateY(180deg);
}

.process-card h5{
    margin-bottom:.8rem;
    color:var(--secondary);
    font-weight:700;
}

.process-card p{
    margin:0;
    color:var(--text-muted);
    line-height:1.8;
}

@media (min-width:992px){

    .learning-process .col-lg-3{
        position:relative;
    }

    .learning-process .col-lg-3:not(:last-child)::after{
        content:"";
        position:absolute;
        top:42px;
        right:-18px;
        width:36px;
        height:2px;
        background:var(--primary);
        opacity:.25;
    }

}

@media (max-width:991.98px){

    .process-card{
        padding:2rem 1.25rem;
    }

    .process-number{
        font-size:2.2rem;
    }

    .process-icon{
        width:72px;
        height:72px;
        font-size:1.7rem;
    }

}

.course-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: .35s;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
}

.course-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.course-card .content {
    padding: 25px;
}

.course-card h4 {
    margin-bottom: 15px;
}

.stats {
    background: var(--primary);
    color: #fff;
}

.stats .counter {
    text-align: center;
    padding: 40px 20px;
}

.stats h2 {
    color: #fff;
    font-size: 2.7rem;
    margin-bottom: 10px;
}

.stats p {
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-item img {
    transition: .4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.contact-box {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 35px;
    box-shadow: var(--shadow-soft);
}

.form-control,
.form-select {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: .85rem 1rem;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .12);
}
.footer{
    position:relative;
    background:var(--secondary);
    color:#fff;
    padding:40px 0 30px;
    overflow:hidden;
}

.footer-wave{
    position:absolute;
    top:-40px;
    left:0;
    width:100%;
    line-height:0;
    transform:translateY(-99%);
}

.footer-wave svg{
    display:block;
    width:100%;
    height:130px;
}

.footer .container{
    position:relative;
    z-index:2;
}

.footer::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:var(--primary);
    opacity:.08;
    border-radius:50%;
    top:-180px;
    right:-120px;
}

.footer::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:var(--primary);
    opacity:.05;
    border-radius:50%;
    bottom:-160px;
    left:-120px;
}

.footer h5{
    color:#fff;
    font-size:1.15rem;
    font-weight:700;
    margin-bottom:1.4rem;
    position:relative;
    padding-bottom:.7rem;
}

.footer h5::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:55px;
    height:3px;
    border-radius:20px;
    background:var(--primary);
}

.footer p,
.footer li,
.footer a{
    color:rgba(255,255,255,.78);
    font-size:.95rem;
    line-height:1.8;
    transition:.3s;
}

.footer ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer ul li{
    margin-bottom:.8rem;
}

.footer ul li a{
    display:inline-flex;
    align-items:center;
    text-decoration:none;
}

.footer ul li a i{
    color:var(--primary);
    transition:.3s;
}

.footer ul li a:hover{
    color:#fff;
    transform:translateX(6px);
}

.footer p i{
    width:24px;
    color:var(--primary);
}

.footer .social{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:1rem;
}

.footer .social a{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    transition:.35s;
}

.footer .social a:hover{
    background:var(--primary);
    border-color:var(--primary);
    transform:translateY(-6px) rotate(360deg);
}

.footer hr{
    border-color:rgba(255,255,255,.12);
    margin:3rem 0 1.5rem;
}

.footer-bottom{
    text-align:center;
    color:rgba(255,255,255,.75);
    font-size:.95rem;
}
.footer-logo{
    width:200px;
    /* aspect-ratio:4/1; */
    margin-left: 0;
    margin-bottom:1.5rem;
}

.footer-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}
@media (max-width:991.98px){

    .footer{
        padding:40px 0 25px;
        text-align:left;
    }

    .footer h5::after{
        left:0;
        transform:none;
    }

    .footer p i{
        width:24px;
    }

    .footer .social{
        justify-content:flex-start;
    }

    .footer-logo{
        margin:0 0 1.0rem;
    }

    .footer-bottom{
        text-align:left;
    }

}

.floating-whatsapp,
.floating-top{
    width:58px;
    height:58px;
    position:fixed;
    right:20px;
    border:none;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:24px;
    overflow:hidden;
    transition:all .35s ease;
}

.floating-whatsapp{
    bottom:20px;
    background:linear-gradient(135deg,#25D366,#128C7E);
    box-shadow:0 15px 35px rgba(37,211,102,.35);
    z-index:9999;
    animation:whatsappPulse 2s infinite;
}

.floating-whatsapp::before,
.floating-top::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    transform:scale(0);
    transition:.35s;
}

.floating-whatsapp:hover::before,
.floating-top:hover::before{
    transform:scale(1);
}

.floating-whatsapp:hover{
    color:#fff;
    transform:translateY(-5px) scale(1.08) rotate(-8deg);
}

.floating-top{
    bottom:90px;
    background:var(--primary);
    box-shadow:0 15px 35px rgba(0,0,0,.22);
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    z-index:9998;
}

.floating-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.floating-top:hover{
    color:#fff;
    transform:translateY(-5px);
}

.floating-whatsapp i,
.floating-top i{
    position:relative;
    z-index:2;
}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.45);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

@media (max-width:767px){

    .floating-whatsapp,
    .floating-top{
        width:52px;
        height:52px;
        font-size:22px;
        right:15px;
    }

    .floating-whatsapp{
        bottom:15px;
    }

    .floating-top{
        bottom:78px;
    }

}

.courses-section{
    background:#f8fafc;
}

.course-card{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:18px;
    overflow:hidden;
    transition:.35s ease;
    height:100%;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.course-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.course-card-body{
    padding:28px;
}

.course-stream{
    display:inline-flex;
    align-items:center;
    padding:6px 14px;
    border-radius:30px;
    background:rgba(var(--bs-primary-rgb),.1);
    color:var(--primary);
    font-size:.85rem;
    font-weight:600;
}

.course-card h4{
    font-size:1.3rem;
    font-weight:700;
    color:#212529;
    line-height:1.5;
    margin-bottom:0;
}

.course-meta{
    margin:0;
    padding:0;
}

.course-meta li{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 0;
    color:#6c757d;
    font-size:.95rem;
    border-bottom:1px dashed #ececec;
}

.course-meta li:last-child{
    border-bottom:none;
}

.course-meta i{
    width:38px;
    height:38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(var(--bs-primary-rgb),.08);
    color:var(--primary);
    font-size:15px;
}

.course-card .btn{
    width:100%;
    padding:12px;
    font-weight:600;
}

.course-navigation{
    display:flex;
    gap:10px;
}

.course-prev,
.course-next{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s ease;
}

.course-prev:hover,
.course-next:hover{
    transform:translateY(-3px);
    opacity:.85;
}

.courseSwiper{
    padding:10px 5px 45px;
}

.courseSwiper .swiper-slide{
    height:auto;
}

.courseSwiper .course-card{
    height:100%;
}

.courseSwiper .swiper-pagination{
    bottom:0;
}

.courseSwiper .swiper-pagination-bullet{
    width:10px;
    height:10px;
    opacity:.5;
}

.courseSwiper .swiper-pagination-bullet-active{
    width:28px;
    border-radius:20px;
    background:var(--primary);
    opacity:1;
}

@media(max-width:991px){

    .course-card-body{
        padding:22px;
    }

    .section-title{
        font-size:1.6rem;
    }

}

@media(max-width:576px){

    .course-header{
        flex-direction:column;
        align-items:flex-start !important;
        gap:15px;
    }

    .course-card h4{
        font-size:1.1rem;
    }

    .course-meta li{
        font-size:.9rem;
    }

    .section-title{
        font-size:1.4rem;
    }

    .course-prev,
    .course-next{
        width:38px;
        height:38px;
    }

}

.course-detail-section{
    background:#f8fafc;
}

.course-detail-card,
.course-info-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    border:1px solid #eee;
}


.course-detail-card h2{
    font-size:2rem;
    font-weight:700;
    color:#212529;
}


.course-description{
    color:#6c757d;
    line-height:1.8;
    font-size:1rem;
}


.course-info-card h4{
    font-size:1.4rem;
    font-weight:700;
    margin-bottom:25px;
}


.course-info-list{
    list-style:none;
    padding:0;
    margin:0;
}


.course-info-list li{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px 0;
    border-bottom:1px dashed #ddd;
}


.course-info-list li:last-child{
    border-bottom:none;
}


.course-info-list i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(var(--bs-primary-rgb),.1);
    color:var(--primary);
    border-radius:50%;
}


.course-info-list small{
    display:block;
    color:#777;
    margin-bottom:3px;
}


.course-info-list strong{
    color:#212529;
}


@media(max-width:768px){

    .course-detail-card,
    .course-info-card{
        padding:25px;
    }


    .course-detail-card h2{
        font-size:1.5rem;
    }

}
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: .3s;
    z-index: 1000;
}

.scroll-top:hover {
    background: var(--primary-dark);
    color: #fff;
}

.contact-section{
    background:#f8fafc;
}


.contact-info-card,
.contact-form-card{
    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:0 12px 35px rgba(0,0,0,.07);
    border:1px solid #eee;
}


.contact-info-card h2,
.contact-form-card h3{
    font-weight:700;
    margin-bottom:15px;
}


.contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-top:25px;
}


.contact-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(var(--bs-primary-rgb),.1);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}


.contact-item small{
    color:#777;
    display:block;
}


.contact-item p{
    margin:3px 0 0;
    color:#212529;
    font-weight:500;
}


.contact-form-card .form-control{
    padding:15px;
    border-radius:12px;
    border:1px solid #ddd;
}


.contact-form-card textarea{
    resize:none;
}


.contact-form-card .form-control:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(var(--bs-primary-rgb),.15);
}


@media(max-width:768px){

    .contact-info-card,
    .contact-form-card{
        padding:25px;
    }

}

@media (max-width:991.98px) {

    .navbar {
        padding: .75rem 0;
    }

    .navbar-brand img {
        height: 46px;
    }

     .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        z-index: 1040;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

      .navbar-nav{
        gap:.3rem;
    }

    .navbar-nav .nav-item{
        width:100%;
    }

    .navbar-nav .nav-link{
        position:relative;
        display:flex;
        align-items:center;
        justify-content:space-between;
        width:100%;
        padding:1rem 1.1rem!important;
        border-radius:var(--radius-md);
        background:var(--bg-card);
        color:var(--secondary)!important;
        font-weight:600;
        transition:all .3s ease;
        overflow:hidden;
    }

    .navbar-nav .nav-link::before{
        content:"";
        position:absolute;
        left:0;
        top:12%;
        width:4px;
        height:76%;
        background:var(--primary);
        border-radius:0 8px 8px 0;
        transform:scaleY(0);
        transition:.3s ease;
    }

    .navbar-nav .nav-link::after{
        display:none;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus{
        background:var(--hover);
        color:var(--primary)!important;
        padding-left:1.35rem!important;
    }

    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before{
        transform:scaleY(1);
    }

    .navbar-nav .nav-link.active{
        background:var(--primary);
        color:var(--active)!important;
        box-shadow:var(--shadow-soft);
    }

    .navbar-nav .nav-link.active::before{
        background:var(--active);
    }

    .navbar-nav .nav-item+.nav-item{
        margin-top:.25rem;
    }



    .btn-primary,
    .btn-outline-primary {
        width: 100%;
        margin-top: .75rem;
    }

    .hero-section {
        padding: 70px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.3rem;
    }

    .hero-image {
        margin-top: 40px;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width:767.98px) {

    .navbar-brand img {
        height: 40px;
    }

    .navbar-brand h5 {
        font-size: 1rem;
    }

    .navbar-brand small {
        display: none;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .feature-box,
    .course-card,
    .testimonial-card,
    .contact-box {
        padding: 25px;
    }

    .stats .counter {
        padding: 25px;
    }

    .stats h2 {
        font-size: 2rem;
    }

    .navbar-collapse {
        top: 66px;
    }
}

@media (max-width:575.98px) {

    .hero-section {
        padding: 55px 0;
    }

    .hero-section h1 {
        font-size: 1.7rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .navbar-collapse {
        top: 62px;
        padding: 1rem;
    }

    .feature-box i {
        width: 65px;
        height: 65px;
        line-height: 65px;
        font-size: 1.6rem;
    }

    .course-card img {
        height: 180px;
    }

    .scroll-top {
        right: 15px;
        bottom: 15px;
    }
}

.page-header {
    background: #f5f7fb;
    padding: 80px 0;
    border-bottom: 1px solid #e5e7eb;
}

.page-header-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    margin-bottom: 0;
    background: transparent;
}

.page-header .breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: #64748b;
}

@media(max-width:768px){
    .page-header {
        padding: 50px 0;
    }

    .page-header-content h1 {
        font-size: 32px;
    }
}

.placement-partners{
    background:#f8fbff;
}

.partner-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
}

.partner-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(13,110,253,.15);
}

.partner-card img{
    max-width:140px;
    max-height:60px;
    width:auto;
    height:auto;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.75;
    transition:.35s;
}

.partner-card:hover img{
    filter:none;
    opacity:1;
}

.course-categories{
    background:#ffffff;
}

.category-card{
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    border:1px solid #eef2f7;
    transition:.35s;
    height:100%;
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    border-color:var(--primary);
}

.category-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:20px;
    background:#eef5ff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.category-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.category-card p{
    color:#6c757d;
    line-height:1.7;
    margin-bottom:20px;
}

.course-count{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}
.blog-section{
    background:#f8fbff;
}

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
    height:100%;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(13,110,253,.15);
}

.blog-image{
    position:relative;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

.blog-category{
    position:absolute;
    top:20px;
    left:20px;
    background:var(--primary);
    color:#fff;
    padding:7px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.blog-content{
    padding:30px;
}

.blog-meta{
    display:flex;
    justify-content:space-between;
    color:#6c757d;
    font-size:14px;
    margin-bottom:18px;
}

.blog-content h4{
    font-size:22px;
    margin-bottom:15px;
    line-height:1.4;
}

.blog-content h4 a{
    color:#222;
    text-decoration:none;
    transition:.3s;
}

.blog-content h4 a:hover{
    color:var(--primary);
}

.blog-content p{
    color:#6c757d;
    line-height:1.8;
    margin-bottom:25px;
}

.read-more{
    color:var(--primary);
    font-weight:600;
    text-decoration:none;
}

.read-more:hover{
    color:var(--primary);
}
.cta-section{
    background:#f8fbff;
}

.cta-box{
    position:relative;
    padding:100px 40px;
    border-radius:24px;
    overflow:hidden;
    background:url("/assets/img/customer.jpg") center center/cover no-repeat;
    color:#fff;
}

.cta-box::before{
    content:"";
    position:absolute;
    inset:0;
}

.cta-box>*{
    position:relative;
    z-index:2;
}

.cta-badge{
    display:inline-block;
    padding:8px 20px;
    border-radius:50px;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(8px);
    color:var(--bg-body);
    font-weight:600;
}

.cta-box h2{
    font-size:42px;
    font-weight:700;
    color: var(--bg-body);
}

.cta-box p{
    max-width:650px;
    margin:auto;
    font-size:17px;
    opacity:.95;
}

.btn-outline-light:hover{
    color:var(--primary);
}

@media(max-width:991px){

    .cta-box{
        padding:80px 30px;
    }

    .cta-box h2{
        font-size:34px;
    }

}

@media(max-width:576px){

    .cta-box{
        padding:60px 20px;
    }

    .cta-box h2{
        font-size:28px;
    }

    .cta-box .btn{
        width:100%;
    }

}
.about-modern{
    background:#fff;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.experience-box{
    position:absolute;
    bottom:30px;
    right:-20px;
    background:var(--primary);
    color:#fff;
    padding:22px 28px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(13,110,253,.35);
}

.experience-box h2{
    font-size:42px;
    font-weight:700;
    margin:0;
    line-height:1;
    color:var(--bg-body);
}

.experience-box span{
    font-size:15px;
}

.about-feature{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:28px;
}

.feature-icon{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:18px;
    background:#eef4ff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

.about-feature h5{
    font-weight:700;
    margin-bottom:8px;
}

.about-feature p{
    color:#6c757d;
    margin:0;
    line-height:1.7;
}


@media(max-width:991px){

    .experience-box{
        right:20px;
        bottom:20px;
    }

}

@media(max-width:576px){

    .experience-box{
        position:static;
        margin-top:20px;
        display:inline-block;
    }

    .feature-icon{
        width:55px;
        height:55px;
        min-width:55px;
        font-size:22px;
    }

}

.values-section{
    background:#f8fbff;
}

.value-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    border:1px solid #eef2f7;
    transition:.35s;
}

.value-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
    box-shadow:0 20px 45px rgba(13,110,253,.12);
}

.value-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#eef5ff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    transition:.35s;
}

.value-card:hover .value-icon{
    background:var(--primary);
    color:#fff;
    transform:rotateY(180deg);
}

.value-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.value-card p{
    color:#6c757d;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

    .value-card{
        padding:35px 25px;
    }

}

@media(max-width:576px){

    .value-card{
        padding:30px 20px;
    }

    .value-card h4{
        font-size:22px;
    }

}

.vision-mission{
    background:#fff;
}

.vm-card{
    background:#f8fbff;
    padding:45px 35px;
    border-radius:20px;
    border-left:5px solid var(--primary);
    height:100%;
    transition:.35s;
}

.vm-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(13,110,253,.12);
}

.vm-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.vm-card h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.vm-card p{
    color:#6c757d;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

    .vm-card{
        padding:35px 25px;
    }

    .vm-card h3{
        font-size:26px;
    }

}

@media(max-width:576px){

    .vm-card{
        text-align:center;
        border-left:0;
        border-top:5px solid var(--primary);
        padding:30px 20px;
    }

    .vm-icon{
        margin:0 auto 20px;
    }

    .vm-card h3{
        font-size:24px;
    }

}

.faq-section{
    background:#f8fbff;
}

.custom-accordion .accordion-item{
    border:none;
    border-radius:16px;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.custom-accordion .accordion-button{
    background:#fff;
    padding:22px 25px;
    font-size:18px;
    font-weight:600;
    color:#222;
    box-shadow:none;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:var(--primary);
    color:#fff;
}

.custom-accordion .accordion-button::after{
    filter:brightness(0);
}

.custom-accordion .accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
}

.custom-accordion .accordion-body{
    padding:22px 25px;
    font-size:16px;
    color:#6c757d;
    line-height:1.8;
    background:#fff;
}

@media(max-width:576px){

    .custom-accordion .accordion-button{
        font-size:16px;
        padding:18px;
    }

    .custom-accordion .accordion-body{
        padding:18px;
    }

}


.blogSwiper .swiper-slide{
    height: auto;
}

.blogSwiper .blog-card{
    height: 100%;
}

.blogSwiper{
    padding-bottom: 50px;
}

.partnerSwiper {
    padding: 15px 0;
}

.partnerSwiper .swiper-slide {
    height: auto;
}

.partner-card {
    height: 120px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: .35s;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.partner-card img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .75;
    transition: .35s;
}

.partner-card:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}