/*==============================
ROOT VARIABLES
==============================*/
:root{
    --primary:#0B2046;
    --primary-dark:#0B2046;
    --secondary:#8a1538;
    --secondary-dark:#8a1538a0;
    --white:#ffffff;
    --light:#F8FAFC;
    --gray:#6B7280;
    --border:#E5E7EB;
    --heading:#111827;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --shadow-lg:0 15px 40px rgba(0,0,0,.15);
    --radius:10px;
    --transition:.35s ease;
    --font-family:'Inter', sans-serif;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f4f4f4;
    font-family: "Inter", sans-serif;
}
/*=================================
KBS HERO
=================================*/

.kbs-hero{
    background:var(--primary);
    position:relative;
    
}

.hero-slide{
    min-height:100vh;
    position:relative;
}
.hero-bg{
    position:absolute;
    inset:0;
}
.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:heroZoom 12s linear infinite alternate;
}

/* .overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(11,32,70,.92) 0%,
        rgba(11, 32, 70, 0.153) 45%,
        rgba(11, 32, 70, 0.119) 100%
    );
} */

/* Content */
.hero-content{
    position:relative;
    z-index:10;
    padding-top:120px;
}
.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#fff;
    letter-spacing:3px;
    font-weight:700;
    margin-bottom:25px;
    font-size:14px;
    border-bottom:2px solid var(--secondary);
    padding-bottom:8px;
}
.hero-title{
    color:#fff;
    font-size:55px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}
.hero-text{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.9;
    max-width:650px;
    margin-bottom:35px;
}
.active-word{
    color:var(--secondary);
}
/* Buttons */
.hero-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}
.btn-primary-custom{
    padding:15px 35px;
    border-radius:10px;
    background:var(--secondary);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}
.btn-primary-custom:hover{
    transform:translateY(-5px);
    color:#fff;
}
.btn-outline-custom{
    padding:15px 35px;
    border-radius:10px;
    background:#fff;
    color:var(--primary);
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}
.btn-outline-custom:hover{
    transform:translateY(-5px);
}
.hero-title{
    font-size:55px;
    font-weight:800;
    color:#fff;
    line-height:1.1;
    margin-bottom:25px;
    min-height:140px;
}

.typing-text{
    display:inline;
}
.typing-cursor{
    color:var(--secondary);
    font-weight:300;
    animation:blinkCursor .7s infinite;
}
@keyframes blinkCursor{
    0%,100%{
        opacity:1;
    }
    50%{
        opacity:0;
    }
}
/* Arrows */
.hero-arrow{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:22px;
    transition:.4s;
    position: relative;
    top: 50px;
}
.prev{
    left: -10px;
}
.next{
    right: 5px;
}
.hero-arrow:hover{
    background:var(--secondary);
}
/* Content Animation */
.hero-content .animate-item{
    opacity:0;
    transform:translateY(80px);
    filter:blur(10px);
}
.carousel-item.active .hero-tag{
    animation:contentReveal .8s ease forwards;
}
.carousel-item.active .hero-text{
    animation:contentReveal .8s ease .6s forwards;
}
.carousel-item.active .hero-btns{
    animation:contentReveal .8s ease .9s forwards;
}
/* Heading Words */
.title-word{
    display:inline-block;
    opacity:0;
    transform:translateY(70px);
}
.carousel-item.active .title-word:nth-child(1){
    animation:wordReveal .7s .2s forwards;
}
.carousel-item.active .title-word:nth-child(2){
    animation:wordReveal .7s .4s forwards;
}
.carousel-item.active .title-word:nth-child(3){
    animation:wordReveal .7s .6s forwards;
}
.carousel-item.active .title-word:nth-child(5){
    animation:wordReveal .7s .8s forwards;
}
.carousel-item.active .title-word:nth-child(6){
    animation:wordReveal .7s 1s forwards;
}
/* Keyframes */
 @keyframes contentReveal{
    from{
        opacity:0;
        transform:translateY(60px);
        filter:blur(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
        filter:blur(0);
    }
}
@keyframes wordReveal{
    from{
        opacity:0;
        transform:translateY(70px) rotateX(90deg);
    }
    to{
        opacity:1;
        transform:translateY(0) rotateX(0);
    }
}
@keyframes heroZoom{
    from{
        transform:scale(1.05);
    }
    to{
        transform:scale(1.15);
    }
}
@keyframes floatShape{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-25px);
    }
} 
 .hero-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
}

.hero-bg img{
    width:100%;
    height:120%;
    object-fit:cover;

    animation:heroFloat 15s ease-in-out infinite alternate;
}

/* =====================================
   RESPONSIVE HERO SECTION
===================================== */

/* Large Devices */
@media (max-width: 1199px){

    .hero-title{
        font-size:48px;
        min-height:auto;
    }

    .hero-text{
        font-size:17px;
        max-width:550px;
    }

}

/* Tablets */
@media (max-width: 991px){

    .hero-slide{
        min-height:85vh;
    }

    .hero-content{
        top:0;
        text-align:center;
        padding:120px 20px 80px;
    }

    .hero-tag{
        justify-content:center;
    }

    .hero-title{
        font-size:42px;
        line-height:1.2;
        min-height:auto;
    }

    .hero-text{
        max-width:100%;
        font-size:16px;
        margin-left:auto;
        margin-right:auto;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero-arrow{
        width:55px;
        height:55px;
        font-size:18px;
        top:0;
    }

    .prev{
        left:15px;
    }

    .next{
        right:15px;
    }

    .hero-bg img{
        height:100%;
    }
}

/* Mobile */
@media (max-width: 767px){

    .hero-slide{
        min-height:80vh;
    }

    .hero-content{
        padding:110px 15px 60px;
    }

    .hero-tag{
        font-size:12px;
        letter-spacing:2px;
        margin-bottom:15px;
    }

    .hero-title{
        font-size:34px;
        line-height:1.2;
        margin-bottom:20px;
    }

    .hero-text{
        font-size:15px;
        line-height:1.8;
        margin-bottom:25px;
    }

    .hero-btns{
        flex-direction:column;
        align-items:center;
        gap:12px;
    }

    .btn-primary-custom,
    .btn-outline-custom{
        width:100%;
        max-width:280px;
        text-align:center;
        padding:14px 20px;
    }

    .hero-arrow{
        width:48px;
        height:48px;
        font-size:16px;
    }

    .prev{
        left:10px;
    }

    .next{
        right:10px;
    }
}

/* Small Mobile */
@media (max-width: 575px){

    .hero-slide{
        min-height:75vh;
    }

    .hero-content{
        padding-top:90px;
    }

    .hero-title{
        font-size:28px;
    }

    .hero-text{
        font-size:14px;
    }

    .hero-tag{
        font-size:11px;
    }

    .hero-arrow{
        width:42px;
        height:42px;
        font-size:14px;
    }
}

/* Extra Small Devices */
@media (max-width: 400px){

    .hero-title{
        font-size:24px;
    }

    .hero-text{
        font-size:13px;
    }

    .btn-primary-custom,
    .btn-outline-custom{
        max-width:100%;
    }
}
.stats-section{
    font-family:var(--font-family);
    overflow:hidden;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:3px solid var(--secondary);
}

.stat-box{
    background:#ffffff;
    padding:45px 20px 40px;
    text-align:center;
    border-right:1px solid rgba(138,21,56,.25);
}
.stat-box:hover{
    background:#eef2f7;
}
.stat-box:last-child{
    border-right:none;
}

/* .stat-box.highlight{
    background:#eef2f7;
} */

.stat-box h2{
    font-size:28px;
    font-weight:800;
    color:var(--secondary);
    margin-bottom:12px;
    line-height:1;
}

.stat-box h2 sup{
    font-size:15px;
    top:-1.2em;
    font-weight:700;
    top: -5px;
    right: -5px;
}

.stat-box p{
    margin:0;
    font-size:16px;
    color:#666;
    font-weight:500;
}

.info-bar{
    background:var(--primary);
    padding:22px 25px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

.info-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--white);
    font-size:15px;
    font-weight:600;
}

.info-item i{
    font-size:1.6rem;
    color:var(--secondary);
}

/* Tablet */
@media (max-width:991px){
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stat-box{
        border-bottom:1px solid rgba(138,21,56,.2);
    }

    .stat-box:nth-child(2){
        border-right:none;
    }

    .stat-box h2{
        font-size:3rem;
    }

    .stat-box p{
        font-size:1.1rem;
    }

    .info-item{
        font-size:1rem;
    }
}

/* Mobile */
@media (max-width:576px){
    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat-box{
        border-right:none;
        padding:30px 15px;
    }

    .stat-box h2{
        font-size:2.5rem;
    }

    .info-bar{
        gap:18px;
        padding:18px 15px;
    }

    .info-item{
        width:100%;
        justify-content:center;
        text-align:center;
        font-size:.95rem;
    }
}

/* ==========================
   ABOUT SECTION
========================== */
.about-section{
    background:white;
    padding:100px 0;
    overflow:hidden;
    position:relative;
}
/* ==========================
   SECTION HEADING
========================== */
.section-tag{
    display:inline-block;
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:10px;
}
.about-title{
    font-size:42px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:30px;
    color:var(--primary);
}
.about-title span{
    color:var(--secondary);
}
/* ==========================
   IMAGE GALLERY
========================== */
.about-gallery{
    position:relative;
    min-height:650px;
}
.about-gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}
/* Large Image */
.img-large{
    width:65%;
    height:500px;
    overflow:hidden;
    border-radius:180px 180px 0 180px;
    box-shadow:var(--shadow-lg);
}
.img-large:hover img{
    transform:scale(1.08);
}
/* Circle Image */
.img-circle{
    position:absolute;
    top:0;
    right:0;
    width:200px;
    height:200px;
    border-radius:50%;
    padding:10px;
    border:2px dashed var(--secondary);
    overflow:hidden;
}
.img-circle img{
    border-radius:50%;
}
.img-circle:hover img{
    transform:scale(1.08);
}
/* Bottom Image */
.img-bottom{
    position:absolute;
    right:0;
    bottom:0;
    width:330px;
    height:380px;
    overflow:hidden;
    border-radius:0 120px 120px 120px;
    box-shadow:var(--shadow-lg);
}
.img-bottom:hover img{
    transform:scale(1.08);
}
/* ==========================
   EXPERIENCE CARD
========================== */
.experience-card{
    position:absolute;
    left:0;
    bottom:137px;
    background:var(--secondary);
    color:var(--white);
    border-radius:50px;
    padding:20px 35px;
    display:flex;
    align-items:center;
    gap:20px;
    box-shadow:var(--shadow-lg);
    z-index:2;
}

.icon-wrap{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--white);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.experience-card h4 span{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.experience-card span{
    font-size:14px;
    opacity:.9;
}

/* ==========================
   TABS
========================== */

.about-tabs{
    border-bottom:1px solid var(--border);
    margin-bottom:25px;
}

.about-tabs .nav-link{
    border:none;
    background:none;
    color:var(--gray);
    font-size:17px;
    font-weight:600;
    padding:12px 25px;
    transition:var(--transition);
}

.about-tabs .nav-link:hover{
    color:var(--secondary);
}

/* .about-tabs .nav-link.active{
    color:var(--secondary);
    background:none;
    border-bottom:3px solid var(--secondary);
} */

/* ==========================
   TAB CONTENT
========================== */

.tab-content p{
    color:black;
    font-size:16px;
    line-height:1.9;
    margin-bottom:15px;
}

/* ==========================
   BUTTON
========================== */

.read-btn{
    display:inline-block;
    background:var(--secondary);
    color:var(--white);
    padding:12px 30px;
    border-radius:var(--radius);
    text-decoration:none;
    font-weight:600;
    transition:var(--transition);
    margin-top:10px;
}

.read-btn:hover{
    background:var(--primary);
    color:var(--white);
    transform:translateY(-3px);
}

/* ==========================
   ANIMATIONS
========================== */
.reveal-left{
    height: 360px;
    width: 250px;
    right: 20px;
}
.reveal-right{
    height: 360px;
    width: 230px;
    bottom: 55px;
}
.reveal-top{
    left: 272px;
}
.reveal-left,
.reveal-right,
.reveal-top{
    opacity:0;
}
.reveal-left.active{
    animation:leftReveal 1s ease forwards;
}
.reveal-right.active{
    animation:rightReveal 1s ease forwards;
}
.reveal-top.active{
    animation:topReveal 1s ease forwards;
}
@keyframes leftReveal{
    from{
        opacity:0;
        transform:translateX(-60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes rightReveal{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes topReveal{
    from{
        opacity:0;
        transform:translateY(-60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* =====================================
   ABOUT SECTION RESPONSIVE
=====================================*/
@media(max-width:1199px){
    .about-section{
        padding:80px 0;
    }
    .about-title{
        font-size:42px;

    }
    .about-gallery{
        min-height:580px;
    }
    .img-large{
        width:65%;
        height:430px;
    }
    .img-circle{
        width:170px;
        height:170px;
    }
    .img-bottom{
        width:280px;
        height:320px;
    }
    .experience-card{
        bottom:110px;
        padding:18px 25px;
    }
    .experience-card h4 span{
        font-size:24px;
    }
}
/* =====================================
   TABLET DEVICES
=====================================*/
@media(max-width:991px){
    .about-section{
        padding:70px 0;
    }
    .about-gallery{
        min-height:600px;
        margin-bottom:30px;
    }
    .about-title{
        font-size:38px;
        margin-bottom:25px;
    }
    /* Main Image */
    .img-large{
        width:70%;
        height:450px;
    }
    /* Circle Image */
    .img-circle{
        width:170px;
        height:170px;
        right:20px;
    }
    /* Bottom Image */
    .img-bottom{
        width:280px;
        height:330px;
        right:20px;
    }
    /* Experience Card */
    .experience-card{
        left:10px;
        bottom:100px;
        padding:18px 22px;
        border-radius:35px;
    }
    .icon-wrap{
        width:60px;
        height:60px;
        font-size:24px;
    }
    .tab-content p{
        font-size:16px;
    }
}
/* =====================================
   MOBILE DEVICES
=====================================*/
@media(max-width:767px){
    .about-section{
        padding:50px 0;
    }
    .row{
        gap:20px;
    }
    /* Gallery */
    .about-gallery{
        min-height:520px;
        width:100%;
    }
    .img-large{
        width:75%;
        height:350px;
        border-radius:100px 100px 0 100px;
    }
    .img-circle{
        width:130px;
        height:130px;
        padding:7px;
        right:5px;
    }
    .img-bottom{
        width:210px;
        height:250px;
        right:0;
        bottom:20px;
        border-radius:0 70px 70px 70px;
    }
    .experience-card{
        bottom:50px;
        left:0;
        padding:12px 18px;
        gap:12px;
        border-radius:25px;
    }
    .icon-wrap{
        width:45px;
        height:45px;
        font-size:18px;
    }
    .experience-card h4 span{
        font-size:20px;
    }
    .experience-card span{
        font-size:12px;
    }
    /* Content */
    .section-tag{
        font-size:12px;
        letter-spacing:3px;
        margin-left: 10px;
    }
    .about-title{
        font-size:30px;
        margin-bottom:20px;
        margin-left: 10px;
    }
    .about-tabs{
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:5px;
        display: flex;
        gap: 50px;
        margin-left: 10px;
    }
    .about-tabs::-webkit-scrollbar{
        display:none;
    }
    .about-tabs .nav-link{
        white-space:nowrap;
        padding:10px 15px;
        font-size:14px;
    }
    .tab-content p{
        font-size:15px;
        line-height:1.7;
        margin-left: 10px;
    }
    .read-btn{
        margin-left: 10px;
        padding:10px 25px;
    }
}
/* =====================================
   SMALL MOBILE
=====================================*/
@media(max-width:480px){
    .about-gallery{
        min-height:450px;
    }
    .img-large{
        height:300px;
        width:50%;

    }
    .reveal-top{
        top: 50px;
    }
    .img-circle{
        width:110px;
        height:110px;
    }
    .img-bottom{
        width:170px;
        height:220px;
    }
    .experience-card{
        bottom:35px;
    }
    .experience-card h4 span{
        font-size:18px;
    }
    .experience-card span{
        font-size:11px;
    }
    .about-title{
        font-size:26px;
    }
    .cta-buttons{
        flex-direction:column;
    }
}
/* =====================================
   EXTRA SMALL DEVICES
=====================================*/
@media(max-width:360px){
    .about-gallery{
        min-height:400px;
    }
    .img-large{
        height:260px;
    }
    .img-circle{
        width:90px;
        height:90px;
    }
    .img-bottom{
        width:150px;
        height:190px;
    }
    .experience-card{
        transform:scale(.85);
        transform-origin:left bottom;
    }
    .about-title{
        font-size:24px;
    }
}
/* =====================================
   LAPTOP RESPONSIVE
===================================== */
@media(max-width:1199px){
.about-gallery{
    min-height:580px;
}
.img-large{
    height:450px;
}
.img-circle{
    width:170px;
    height:170px;
}
.img-bottom{
    width:280px;
    height:330px;
}
.experience-card{
    bottom:100px;
    padding:18px 25px;
}
}
/* =====================================
   TABLET RESPONSIVE
===================================== */
@media(max-width:991px){
.about-gallery{
    width:90%;
    margin:auto;
    min-height:600px;
}
.img-large{
    width:70%;
    height:450px;
}
.img-circle{
    width:160px;
    height:160px;
    right:0;
}
.img-bottom{
    width:280px;
    height:340px;
}
.experience-card{
    bottom:90px;
}
}
/* =====================================
   MOBILE RESPONSIVE
===================================== */
@media(max-width:767px){
.about-gallery{
    width:100%;
    min-height:500px;
}
.img-large{
    width:75%;
    height:350px;
    border-radius:100px 100px 0 100px;
}
.img-circle{
    width:120px;
    height:120px;
    padding:6px;
}
.img-bottom{
    width:210px;
    height:250px;
    bottom:20px;
    border-radius:0 70px 70px 70px;

}
.experience-card{
    bottom:45px;
    padding:12px 18px;
    gap:12px;
    border-radius:25px;
}
}
/* =====================================
   SMALL MOBILE
===================================== */
@media(max-width:480px){
.about-gallery{
    min-height:420px;
}
.img-large{
    height:290px;
}
.img-circle{
    width:100px;
    height:100px;
}

.img-bottom{
    width:170px;
    height:210px;
}
.experience-card{
    transform:scale(.85);
    transform-origin:left bottom;
}
}

/* =====================================
   EXTRA SMALL MOBILE
===================================== */
@media(max-width:360px){
.about-gallery{
    min-height:380px;
}
.img-large{
    height:250px;
}
.img-circle{
    width:85px;
    height:85px;
}
.img-bottom{
    width:140px;
    height:180px;
}
.experience-card{
    transform:scale(.75);
}
}
.specialization-section{
    background:var(--white);
}
.section-tag{
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}
.section-title{
    font-size:42px;
    font-weight:700;
    color:var(--primary);
    margin-top:10px;
}
.section-title span{
    color:var(--secondary);
}
.special-card{
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:32px;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:var(--transition);
    box-shadow:0 5px 15px rgba(0,0,0,.04);
}
.special-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:4px;
    background:var(--secondary);
    transition:var(--transition);
}
.special-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
    border-color:var(--secondary);
}
.special-card:hover::before{
    width:100%;
}
.number{
    display:inline-block;
    color:var(--secondary);
    font-size:28px;
    font-weight:700;
    margin-bottom:18px;
}
.special-card h4{
    color:var(--primary);
    font-size:26px;
    font-weight:700;
    margin-bottom:15px;
    transition:var(--transition);
}
.special-card:hover h4{
    color:var(--secondary);
}
.special-card p{
    color:black;
    line-height:1.8;
    margin:0;
}
/*==========================
Animation
==========================*/

/* .reveal{
    opacity:0;
    transform:translateY(60px);
} */
.reveal.active{
    opacity:1;
    transform:translateY(0);
    transition:.8s ease;
}
/*==========================
Responsive
==========================*/
@media (max-width:1200px){
.special-card{
    padding:28px;
}
.special-card h4{
    font-size:22px;
}
.section-title{
    font-size:38px;
}
}
@media (max-width:991px){
.section-title{
    font-size:34px;
}
.special-card{
    text-align:center;
}
.number{
    font-size:24px;
}
.special-card p{
    font-size:15px;
}
}
@media (max-width:767px){
.specialization-section{
    padding:70px 0;
}
.section-title{
    font-size:30px;
}
.special-card{
    padding:25px;
}
.special-card h4{
    font-size:20px;
}
.number{
    font-size:22px;
}
}
@media (max-width:575px){
.specialization-section{
    padding:60px 0;
}
.section-title{
    font-size:26px;
}
.section-tag{
    font-size:12px;
    letter-spacing:2px;
}
.special-card{
    padding:20px;
}
.special-card h4{
    font-size:18px;
}
.special-card p{
    font-size:14px;
    line-height:1.7;
}
.number{
    font-size:20px;
}
}
/*=========================================
HOW WE TEACH
=========================================*/
.how-teach-section{
    padding:100px 0;
    background:var(--light);
}
/* Heading */
.section-tag{
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}
.section-title{
    font-size:42px;
    font-weight:700;
    color:var(--primary);
    margin:15px 0;
}
.section-title span{
    color:var(--secondary);
}
.section-desc{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}
/*====================================
CARD
====================================*/
.teach-card{
    position:relative;
    background:var(--white);
    border:1px solid var(--border);
    padding:70px 30px 65px;
    text-align:center;
    transition:var(--transition);
    overflow:visible;
    box-shadow:var(--shadow);
    height:100%;
}
/* Fold Corner */
.teach-card::after{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    border-left:45px solid transparent;
    border-top:45px solid transparent;
    border-right:45px solid #ececec;
    border-bottom:45px solid #ececec;
}
/* Floating Icon */
.teach-icon{
    position:absolute;
    top:-34px;
    left:50%;
    transform:translateX(-50%);
    width:82px;
    height:82px;
    border-radius:50%;
    background:var(--primary);
    color:var(--white);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    transition:.5s;
    z-index:5;
}
/* Ribbon */
.teach-title{
    position:relative;
    background:#eef2ff;
    padding:22px 15px;
    margin-bottom:35px;
}
/* Ribbon Arrow */
.teach-title::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-15px;
    border-left:18px solid transparent;
    border-right:18px solid transparent;
    border-top:15px solid #eef2ff;
}
.teach-title h5{
    margin:0;
    color:var(--heading);
    font-size:24px;
    font-weight:700;
}
/* Text */
.teach-content p{
    color:#000000;
    line-height:1.9;
    margin:0;
}
/* Bottom Arrow */
.teach-arrow{
    position:absolute;
    left:50%;
    bottom:-20px;
    transform:translateX(-50%);
    width:56px;
    height:56px;
    background:#eef2ff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--heading);
    font-size:22px;
    text-decoration:none;
    transition:.4s;
}
/*==========================
Hover
==========================*/
.teach-card:hover{
    transform:translateY(12px);
    box-shadow:var(--shadow-lg);
}
.teach-card:hover .teach-icon{
    background:var(--secondary);
    transform:translateX(-50%) rotate(360deg);
}
.teach-card:hover .teach-title{
    background:var(--secondary);
}
.teach-card:hover .teach-title::after{
    border-top-color:var(--secondary);
}
.teach-card:hover h5{
    color:var(--white);
}

.teach-card:hover .teach-arrow{
    background:var(--secondary);
    color:var(--white);
}
/*==========================
Reveal Animation
==========================*/

/* .reveal{

    opacity:0;

    transform:translateY(60px);

} */
.reveal.active{
    opacity:1;
    transform:translateY(0);
    transition:.8s ease;
}
/*=========================================
Large Laptop
=========================================*/
@media (max-width:1400px){
    .teach-card{
        padding:65px 25px 60px;
    }
    .teach-title h5{
        font-size:22px;
    }
}
/*=========================================
Laptop
=========================================*/
@media (max-width:1200px){
    .how-teach-section{
        padding:90px 0;
    }
    .section-title{
        font-size:40px;
    }
    .teach-card{
        padding:60px 22px 60px;
    }
    .teach-icon{
        width:75px;
        height:75px;
        font-size:28px;
    }
    .teach-title{
        padding:18px;
    }
    .teach-title h5{
        font-size:20px;
    }
    .teach-content p{
        font-size:15px;
    }
}
/*=========================================
Tablet
=========================================*/
@media (max-width:991px){
    .how-teach-section{
        padding:80px 0;
    }
    .section-title{
        font-size:34px;
    }
    .section-desc{
        font-size:16px;
    }
    .teach-card{
        margin-top:40px;
        padding:65px 25px 55px;
    }
    .teach-icon{
        top:-36px;
    }
}
/*=========================================
Mobile
=========================================*/
@media (max-width:767px){
    .how-teach-section{
        padding:70px 0;
    }
    .section-tag{
        font-size:12px;
        letter-spacing:2px;
    }
    .section-title{
        font-size:30px;
    }
    .section-desc{
        font-size:15px;
        line-height:1.7;
    }
    .teach-card{
        margin-top:35px;
        padding:60px 20px 50px;
    }
    .teach-title{
        padding:16px;
        margin-bottom:28px;
    }
    .teach-title h5{
        font-size:19px;
    }
    .teach-content p{
        font-size:14px;
        line-height:1.8;
    }
    .teach-arrow{
        width:50px;
        height:50px;
        bottom:-25px;
        font-size:18px;
    }
}
/*=========================================
Small Mobile
=========================================*/
@media (max-width:575px){
    .how-teach-section{
        padding:60px 0;
    }
    .section-title{
        font-size:26px;
    }
    .section-desc{
        font-size:14px;
    }
    .teach-card{
        padding:55px 18px 45px;
    }
    .teach-icon{
        width:68px;
        height:68px;
        font-size:24px;
        top:-34px;
    }
    .teach-title{
        padding:15px;
    }
    .teach-title h5{
        font-size:18px;
    }
    .teach-content p{
        font-size:14px;
    }
    .teach-arrow{
        width:46px;
        height:46px;
        bottom:-23px;
        font-size:17px;
    }
    .teach-card::after{
        border-left:35px solid transparent;
        border-top:35px solid transparent;
        border-right:35px solid #ececec;
        border-bottom:35px solid #ececec;
    }
}

/*==========================
WHY CHOOSE US
===========================*/
/* Section */

.why-choose{
    padding:90px 0;
    background:#fff;
    overflow:hidden;
}

/* Heading */

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:var(--primary);
    font-weight:600;
    font-size:15px;
    letter-spacing:.5px;
}

.section-tag i{
    color:var(--secondary);
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:var(--heading);
    margin-top:15px;
}

/*==================================
Left Side Image
==================================*/

.why-left{
    position:relative;
    width:520px;
    height:520px;
    margin:auto;
}
/* Main Image */

.main-image{
    position:absolute;
    width:490px;
    height:450px;
    right:-26px;
    top:-51px;
    border:3px solid var(--white);
    border-radius:20px;
    overflow:hidden;
    z-index:2;
    box-shadow:var(--shadow-lg);
}

.main-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.main-image:hover img{
    transform:scale(1.08);
}

/* Small Bottom Image */

.small-image{
    position:absolute;
    left:30px;
    bottom:55px;

    width:271px;
    height:175px;

    border-radius:18px;
    overflow:hidden;

    border:6px solid #fff;

    z-index:4;

    box-shadow:0 15px 30px rgba(0,0,0,.18);
}

.small-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.small-image:hover img{
    transform:scale(1.1);
}

/* Floating Animation */

.main-image{
    animation:floatMain 5s ease-in-out infinite;
}

.small-image{
    animation:floatSmall 4s ease-in-out infinite;
}

@keyframes floatMain{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0);
}

}

@keyframes floatSmall{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-8px);
}

100%{
transform:translateY(0);
}

}

/* =====================================
   WHY SECTION IMAGE RESPONSIVE
===================================== */
/* Large Laptop */
@media(max-width:1199px){
    .why-left{
        width:450px;
        height:480px;
    }
    .main-image{
        width:420px;
        height:390px;
        right:-10px;
        top:-30px;
    }
    .small-image{
        width:240px;
        height:160px;
        left:20px;
        bottom:45px;
    }
}
/* Tablet */
@media(max-width:991px){
    .why-left{
        width:420px;
        height:450px;
        margin:0 auto 40px;
    }
    .main-image{
        width:390px;
        height:370px;
        right:0;
        top:0;
    }
    .small-image{
        width:220px;
        height:145px;
        left:10px;
        bottom:35px;
    }
}
/* Mobile */
@media(max-width:767px){
    .why-left{
        width:100%;
        max-width:360px;
        height:380px;
        margin:auto;
    }
    .main-image{
        width:85%;
        height:310px;
        right:0;
        top:0;
        border-radius:15px;
    }
    .small-image{
        width:180px;
        height:120px;
        left:0;
        bottom:25px;
        border-width:4px;
        border-radius:14px;
    }
}
/* Small Mobile */
@media(max-width:480px){
    .why-left{
        max-width:320px;
        height:340px;
    }
    .main-image{
        width:85%;
        height:270px;
    }
    .small-image{
        width:160px;
        height:105px;
    }
}
/* Extra Small Mobile */
@media(max-width:360px){
    .why-left{
        height:300px;
    }
    .main-image{
        height:240px;
    }
    .small-image{
        width:140px;
        height:95px;
    }
}
/*=====================
Cards
======================*/

.why-card{
    position:relative;
    background:#fff;
    padding:65px 25px 28px;
    text-align:center;
    border-radius:18px;
    overflow:hidden;
    transition:var(--transition);
}

.why-card:hover{
    transform:translateY(-10px);
}

/* Half Circle */

.card-top{
    position:absolute;
    width:110px;
    height:55px;
    background:var(--primary);
    border-radius:0 0 90px 90px;
    top:0;
    left:50%;
    transform:translateX(-50%);
}

/* Icon */

.icon-box{
    width:72px;
    height:72px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 18px;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    position:relative;
    z-index:2;
    transition:.4s;
    top: -35px;
}

.icon-box i{
    font-size:30px;
    color:var(--secondary);
}

.why-card:hover .icon-box{
    background:var(--secondary);
    transform:scale(1.08);
}

.why-card:hover .icon-box i{
    color:#fff;
}

/* Text */

.why-card h5{
    font-size:20px;
    font-weight:700;
    color:var(--heading);
    margin-bottom:15px;
    bottom: 29px !important;
    position: relative;
}

.why-card p{
    color:#000000;
    font-size:15px;
    line-height:1.8;
    margin:0;
     bottom: 29px !important;
     position: relative;
}
/*=====================
Animations
======================*/
@keyframes floatImage{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}
/*=====================
Responsive
======================*/
@media(max-width:991px){
.section-title{
    font-size:34px;
}
.circle-bg{
    width:420px;
    height:420px;
}
.why-image{
    margin-bottom:40px;
}
}
@media(max-width:767px){
.why-choose{
    padding:70px 0;
}
.section-title{
    font-size:28px;
}
.circle-bg{
    width:320px;
    height:320px;
}
.why-image{
    max-width:320px;
}
.why-card{
    padding:60px 20px 25px;
}
.icon-box{
    width:65px;
    height:65px;
}
.icon-box i{
    font-size:26px;
}
.why-card h5{
    font-size:18px;
}
.why-card p{
    font-size:14px;
}
}
/*=========================================
CAMPUS LIFE
=========================================*/
.campus-life{
    padding:90px 0;
    background:var(--light);
    overflow:hidden;
}
.campus-heading{
    text-align:center;
    margin-bottom:55px;
}
.campus-subtitle{
    display:inline-block;
    color:var(--secondary);
    font-size:15px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:10px;
}
.campus-heading h2{
    font-size:42px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:18px;
}
.campus-heading h2 span{
    color:var(--secondary);
}
.campus-heading p{
    max-width:650px;
    margin:auto;
    font-size:20px;
    color:#5b6675;
    line-height:1.7;
}
/*=========================
Slider
=========================*/
.campus-slider{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}
.slider-container{
    width:100%;
    overflow:hidden;
}
.slider-track{
    display:flex;
    gap:22px;
    transition:.6s ease;
}
/*=========================
Card
=========================*/
.campus-card{
    min-width:calc(25% - 17px);
    height:180px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:.35s;
    flex-shrink:0;
    cursor:pointer;
}
.campus-card:hover{
    /* transform:translateY(-12px); */
    box-shadow:var(--shadow-lg);
    border-color:var(--secondary);
}
/*=========================
Icon
=========================*/
.icon{
    width:66px;
    height:66px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--secondary),var(--secondary));
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:24px;
    transition:.4s;
}
.icon i{
    color:#fff;
    font-size:30px;
}
.campus-card:hover .icon{
    transform:rotate(12deg) scale(1.1);
}
/*=========================
Text
=========================*/
.campus-card h4{
    color:var(--primary);
    font-size:26px;
    font-weight:700;
    margin:0;
    transition:.3s;
    text-align:center;
}
.campus-card:hover h4{
    color:var(--secondary);
}
/*=========================
Arrow
=========================*/
.slider-btn{
    width:56px;
    height:56px;
    border-radius:50%;
    border:1px solid var(--border);
    background:#fff;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
    transition:.3s;
    cursor:pointer;
}
.slider-btn i{
    color:var(--primary);
    font-size:24px;
}
.prev{
    left:-70px;
}
.next{
    right:-70px;
}
.slider-btn:hover{
    background:var(--primary);
    border-color:var(--primary);
}
.slider-btn:hover i{
    color:#fff;
}
/*=========================
Dots
=========================*/
.slider-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:35px;
}
.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#d9dce3;
    transition:.3s;
    cursor:pointer;
}
.dot.active{
    width:24px;
    border-radius:30px;
    background:var(--secondary);
}
/*=========================
Animation
=========================*/
/*
.campus-heading{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
} */
.campus-heading.show{
    opacity:1;
    transform:translateY(0);
}
/* .campus-card{
    opacity:0;
    transform:translateY(40px);
} */
.campus-card.show{
    opacity:1;
    transform:translateY(0);
    transition:.8s;
}
/*=========================
Responsive
=========================*/
@media(max-width:1199px){
.prev{
left:-20px;
}
.next{
right:-20px;
}
}
@media(max-width:991px){
.campus-card{
    flex:0 0 calc(50% - 12px);
}
}
@media(max-width:767px){
.campus-card{
    flex:0 0 100%;
}
}
@media(max-width:991px){
.campus-heading h2{
font-size:42px;
}
.campus-card{
min-width:calc(50% - 12px);
}
}
@media(max-width:767px){
.campus-life{
padding:70px 0;
}
.campus-heading h2{
font-size:32px;
}
.campus-heading p{
font-size:16px;
}
.campus-card{
min-width:100%;
height:160px;
}
.slider-btn{
display:none;
}
.icon{
width:60px;
height:60px;
}
.icon i{
font-size:26px;
}
.campus-card h4{
font-size:20px;
}
}
/*=========================================
TRACK RECORD SECTION
=========================================*/

.track-record{
    padding:100px 0;
    background:var(--white);
    overflow:hidden;
}

.track-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    min-height:720px;
}

/*=========================
Left & Right
=========================*/

.track-left,
.track-right{
    width:25%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    gap:45px;
}
/*=========================
Center
=========================*/
.track-center{
    width:50%;
    text-align:center;
    position:relative;
}
.student-image img{
    width:100%;
    max-width:420px;
    display:block;
    margin:auto;
    object-fit:contain;
    height: 450px;
}
/*=========================
Content Box
=========================*/
.track-content{
    width:440px;
    margin:25px auto 0;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    padding:35px;
    border-radius:70px 70px 10px 10px;
    position: relative;
    box-shadow:var(--shadow-lg);
    top: -30px;
}
.track-content h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}
.track-content h2 span{
    color:#FFD166;
}
.track-content p{
    margin:0;
    font-size:16px;
    line-height:1.7;
    color:#ffffff;
}
/*=========================
Circle
=========================*/
.track-circle{
    width:190px;
    height:190px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-shadow:0 18px 40px rgba(11,45,98,.18);
    transition:.4s;
    position:relative;
}
.track-circle:hover{
    transform:translateY(-12px) scale(1.05);
}
/* Small Circle */
.small-circle{
    width:180px;
    height:180px;
}
.small-circle h2{
    font-size:28px;
}
.small-circle p{
    font-size:14px;
}
/*=========================
Icon
=========================*/
.circle-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:10px;
}
.circle-icon i{
    color:#fff;
    font-size:28px;
}
/*=========================
Text
=========================*/
.track-circle h2{
    font-size:28px;
    font-weight:700;
    margin-bottom:8px;
}
.track-circle p{
    font-size:17px;
    line-height:1.4;
    margin:0;
    font-weight:500;
}
/*=========================
Floating
=========================*/
.circle1{
    animation:float1 5s ease-in-out infinite;
}
.circle2{
    animation:float2 6s ease-in-out infinite;
}
.circle3{
    animation:float3 5.5s ease-in-out infinite;
}
.small-circle{
    animation:float4 4.5s ease-in-out infinite;
}
.circle5{
    animation:float5 6s ease-in-out infinite;
}
/*========================
Animations
=========================*/
@keyframes float1{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-18px);}
}
@keyframes float2{
0%,100%{transform:translateY(0);}
50%{transform:translateY(18px);}
}
@keyframes float3{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-16px);}
}
@keyframes float4{
0%,100%{transform:translateY(0);}
50%{transform:translateY(15px);}
}
@keyframes float5{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-20px);}
}
/*=========================================
RESPONSIVE
=========================================*/
/* Large Laptop */
@media(max-width:1199px){
    .track-wrapper{
        min-height:650px;
    }
    .track-left,
    .track-right{
        width:23%;
        gap:35px;
    }
    .track-center{
        width:54%;
    }
    .student-image img{
        max-width:350px;
        height:400px;
    }
    .track-content{
        width:380px;
        padding:30px;
    }
    .track-content h2{
        font-size:36px;
    }
    .track-circle{
        width:160px;
        height:160px;
    }
    .small-circle{
        width:150px;
        height:150px;
    }
}
/* Tablet */
@media(max-width:991px){
    .track-record{
        padding:70px 0;
    }
    .track-wrapper{
        display:flex;
        flex-direction:column;
        min-height:auto;
        gap:40px;
    }
    .track-left,
    .track-right{
        width:100%;
        flex-direction:row;
        justify-content:center;
        flex-wrap:wrap;
        gap:25px;
    }
    .track-center{
        width:100%;
        order:-1;
    }
    .student-image img{
        width:320px;
        height:360px;
    }
    .track-content{
        width:80%;
        max-width:420px;
        margin:20px auto 0;
        padding:30px;
        top:0;
        border-radius:50px 50px 10px 10px;
    }
    .track-content h2{
        font-size:34px;
    }
    .track-circle{
        width:170px;
        height:170px;
    }
}
/* Mobile */
@media(max-width:767px){
    .track-record{
        padding:50px 0;
    }
    .track-wrapper{
        gap:30px;
    }
    .track-left,
    .track-right{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        width:100%;
        gap:20px;
    }
    .track-center{
        width:100%;
    }
    .student-image img{
        width:260px;
        height:300px;
    }
    .track-content{
        width:90%;
        padding:25px 20px;
        border-radius:40px 40px 10px 10px;
    }
    .track-content h2{
        font-size:28px;
    }
    .track-content p{
        font-size:14px;
    }
    .track-circle{
        width:140px;
        height:140px;
        margin:auto;
    }
    .small-circle{
        width:130px;
        height:130px;
    }
    .circle-icon{
        width:30px;
        height:30px;
    }
    .circle-icon i{
        font-size:20px;
    }
    .track-circle h2{
        font-size:22px;
    }
    .track-circle p{
        font-size:13px;
    }
    .circle5{
        display: none;
    }
}
/* Small Mobile */
@media(max-width:480px){
    .track-left,
    .track-right{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }
    .student-image img{
        width:220px;
        height:260px;
    }
    .track-content{
        width:95%;
        padding:22px 15px;
    }
    .track-content h2{
        font-size:24px;
    }
    .track-circle{
        width:120px;
        height:120px;
    }
    .small-circle{
        width:115px;
        height:115px;
    }
    .track-circle h2{
        font-size:20px;
    }
    .track-circle p{
        font-size:12px;
    }
}
/* Extra Small Mobile */
@media(max-width:360px){
    .track-left,
    .track-right{
        grid-template-columns:1fr;
    }
    .student-image img{
        width:200px;
        height:230px;
    }
    .track-content h2{
        font-size:22px;
    }
}
/*=====================================
TESTIMONIAL SECTION
=====================================*/
.testimonial-section{
    padding:100px 0;
    background:var(--light);
    overflow:hidden;
    position:relative;
}
/*==========================
Heading
==========================*/
.section-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--secondary);
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}
.section-tag i{
    font-size:15px;
}
.section-title{
    font-size:46px;
    font-weight:700;
    color:var(--heading);
    margin-bottom:15px;
}
.section-title span{
    color:var(--secondary);
}
.section-subtitle{
    max-width:700px;
    margin:auto;
    color:#000000;
    font-size:17px;
    line-height:1.8;
}
/*==========================
Slider
==========================*/
.testimonial-slider{
    overflow:hidden;
    position:relative;
    margin-top:55px;
}
.testimonial-track{
    display:flex;
    gap:30px;
    transition:.6s ease;
}
/*==========================
Card
==========================*/
.testimonial-card{
    min-width:calc((100% - 60px)/3);
    display:flex;
    flex-direction:column;
    align-items:center;
}
/*==========================
Content Box
==========================*/
.testimonial-content{
    width:100%;
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:30px 25px;
    position:relative;
    box-shadow:var(--shadow);
    transition:var(--transition);
    min-height:230px;
}
.testimonial-content:hover{
    /* transform:translateY(-8px); */
    box-shadow:var(--shadow-lg);
    border-color:var(--secondary);
}
/* Quote */
.quote-icon{
    position:absolute;
    top:20px;
    right:20px;
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(11,45,98,.08);
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.4s;
}
.quote-icon i{
    color:var(--primary);
    font-size:18px;
}
.testimonial-content:hover .quote-icon{
    background:var(--secondary);
    transform:rotate(360deg);
}
.testimonial-content:hover .quote-icon i{
    color:#fff;
}
/* Rating */
.rating{
    margin-bottom:18px;
}
.rating i{
    color:#FDBA12;
    font-size:15px;
    margin-right:2px;
}
/* Text */
.testimonial-content p{
    color:#000000;
    line-height:1.8;
    margin:0;
    font-size:15px;
}
/*==========================
User
==========================*/
.testimonial-user{
    text-align:center;
    margin-top:25px;
}
.testimonial-user img{
    width:75px;
    height:75px;
    border-radius:50%;
    border:4px solid #fff;
    box-shadow:var(--shadow);
    object-fit:cover;
    margin-bottom:12px;
}
.testimonial-user h5{
    color:var(--heading);
    margin-bottom:5px;
    font-size:17px;
    font-weight:600;
}
.testimonial-user span{
    color:#000000;
    font-size:14px;
}
/*==========================
Pagination
==========================*/
.testimonial-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:45px;
}
.testimonial-pagination span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#d5d5d5;
    cursor:pointer;
    transition:.4s;
}
.testimonial-pagination span.active{
    width:36px;
    border-radius:50px;
    background:var(--secondary);
}
/*==========================
Reveal Animation
==========================*/
.testimonial-card{
    opacity:0;
    transform:translateY(60px);
}
.testimonial-card.show{
    opacity:1;
    transform:translateY(0);
    transition:.8s ease;
}
/*==========================
Responsive
==========================*/
@media(max-width:991px){
.testimonial-card{
min-width:calc((100% - 30px)/2);
}
.section-title{
font-size:36px;
}
}
@media(max-width:767px){
.testimonial-section{
padding:70px 0;
}
.testimonial-card{
min-width:100%;
}
.section-title{
font-size:30px;
}
.section-subtitle{
font-size:15px;
}
.testimonial-content{
min-height:auto;
padding:25px 20px;
}
.quote-icon{
width:40px;
height:40px;
}
}
@media(max-width:576px){
.section-title{
font-size:26px;
}
.testimonial-user img{
width:65px;
height:65px;
}
.testimonial-user h5{
font-size:16px;
}
.testimonial-content p{
font-size:14px;
}
}
/*================================
TOP RECRUITERS
=====================================*/
.recruiters-section{
    padding:100px 0;
    background:var(--white);
    overflow:hidden;
    position:relative;
}
/* Heading */
.recruiters-section .section-tag{
    display:inline-block;
    color:var(--secondary);
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}
.recruiters-section .section-title{
    font-size:42px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:18px;
}
.recruiters-section .section-title span{
    color:var(--secondary);
}
.recruiters-section .section-desc{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.8;
}
/*=====================================
SLIDER
=====================================*/
.recruiter-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    
}
.recruiter-slider{
    width:90%;
    max-width:1200px;
    margin:auto;
    overflow:hidden;
}
/* Left & Right Fade */
.recruiter-slider::before,
.recruiter-slider::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:10;
    pointer-events:none;
}
.recruiter-slider::before{
    left:0;
    background:linear-gradient(to right,var(--light),transparent);
}
.recruiter-slider::after{
    right:0;
    background:linear-gradient(to left,var(--light),transparent);
}
/*=====================================
TRACK
=====================================*/
.recruiter-track{
   display:flex;
    align-items:center;
    gap:25px;
    width:fit-content;
    animation:recruiterSlide 28s linear infinite;
}
/* Pause on Hover */
.recruiter-slider:hover .recruiter-track{
    animation-play-state:paused;
}
/*=====================================
LOGO CARD
=====================================*/
.logo-card{
    width:180px;
    height:110px;
    flex:0 0 auto;
    background:#fff;
    border-radius:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    border:1px solid rgba(11, 44, 98, 0.384);
    /* box-shadow:var(--shadow); */
    transition:.35s ease;
}
.logo-card:hover{
    /* transform:translateY(-8px); */
    box-shadow:var(--shadow-lg);
    border-color:var(--secondary);
}
.logo-card img{
    max-width:120px;
    max-height:55px;
    width:100%;
    height:auto;
    object-fit:contain;
    filter:grayscale(100%);
    transition:.35s;
}
.logo-card:hover img{
    filter:grayscale(0);
    transform:scale(1.08);
}
/*=====================================
ANIMATION
=====================================*/
@keyframes recruiterSlide{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(calc(-50% - 15px));
    }
}
/*=====================================
RESPONSIVE
=====================================*/
@media(max-width:991px){
.logo-card{
    width:150px;
    height:95px;
}
.logo-card img{
    max-width:95px;
}
.recruiters-section .section-title{
    font-size:34px;
}
}
@media(max-width:767px){
.recruiters-section{
    padding:70px 0;
}
.logo-card{
    width:130px;
    height:85px;
    padding:15px;
}
.logo-card img{
    max-width:80px;
    max-height:40px;
}
.recruiter-track{
    gap:18px;
    animation-duration:20s;
}
.recruiters-section .section-title{
    font-size:28px;
}
.recruiters-section .section-desc{
    font-size:15px;
}
.recruiter-slider::before,
.recruiter-slider::after{
    width:50px;
}
}
/*=====================================
    KBS CTA SECTION
=====================================*/
.kbs-cta{
    padding:90px 0;
    background:#f8fafc;
    overflow:hidden;
}
.cta-wrapper{
    background:
    linear-gradient(135deg,#0B2D62,#08244F);
    border-radius:25px;
    padding:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    position:relative;
}

/* CONTENT */
.cta-content{
    width:55%;
    color:white;
}
.cta-tag{
    display:inline-block;
    font-size:14px;
    letter-spacing:1px;
    color:var(--white);
    font-weight:600;
    margin-bottom:15px;
}
.cta-content h2{
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:20px;
}
.cta-content h2 span{
    color:var(--white);
}
.cta-content p{
    font-size:17px;
    line-height:1.8;
    color:#e5e7eb;
    max-width:600px;
    margin-bottom:35px;
}
/* BUTTONS */
.cta-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
.cta-primary{
    background:#8a1538;
    color:white;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}
.cta-primary:hover{
    background:white;
    color:#8a1538;
}
.cta-outline{
    border:2px solid white;
    color:white;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}
.cta-outline:hover{
    background:white;
    color:#0B2D62;
}
/* IMAGE */
.cta-image{
    width:40%;
    position:relative;
    text-align:center;
}
.cta-image img{
    width:330px;
    height:330px;
    object-fit:cover;
    border-radius:50%;
    border:8px solid rgba(255,255,255,.2);
    position:relative;
    z-index:2;
}
.circle-bg{
    width:350px;
    height:350px;
    background:#8a1538;
    border-radius:50%;
    position:absolute;
    top:-10px;
    right:20px;
    opacity:.4;
}
/* EXPERIENCE CARD */
.cta-card{
    position:absolute;
    bottom:20px;
    left:20px;
    background:white;
    padding:15px 25px;
    border-radius:15px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    z-index:3;
}
.cta-card i{
    font-size:30px;
    color:#8a1538;
}
.cta-card h4{
    margin:0;
    font-size:28px;
    color:#0B2D62;
}
.cta-card p{
    margin:0;
    color:#555;
    font-size:14px;
}
/*=====================================
    RESPONSIVE
=====================================*/
@media(max-width:991px){
    .cta-wrapper{
        flex-direction:column;
        padding:45px 30px;
        text-align:center;
    }
    .cta-content,
    .cta-image{
        width:100%;
    }
    .cta-content p{
        margin-left:auto;
        margin-right:auto;
    }
    .cta-buttons{
        justify-content:center;
    }
}
@media(max-width:576px){
    .kbs-cta{
        padding:50px 0;
    }
    .cta-content h2{
        font-size:30px;
    }
    .cta-wrapper{
        border-radius:15px;
    }
    .cta-image img{
        width:230px;
        height:230px;
    }
    .circle-bg{
        width:250px;
        height:250px;
    }
    .cta-card{
        left:0;
        bottom:0;
        padding:10px 15px;
    }
    .cta-card h4{
        font-size:22px;
    }
}


/* Mobile Bottom Action Bar */

.mobile-action-bar{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    display: flex;
    box-shadow: 0 -5px 20px rgba(0,0,0,.15);
}

.action-btn{
    flex: 1;
    text-decoration: none;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 16px 10px;
    font-size: 18px;
    font-weight: 700;

    transition: .3s ease;
}

.call-btn{
    background: var(--primary);
}

.whatsapp-btn{
    background: var(--secondary);
}

.action-btn:hover{
    color: #fff;
    filter: brightness(1.05);
}

.action-btn i{
    font-size: 20px;
}

/* Hide on Desktop */
@media(min-width:992px){
    .mobile-action-bar{
        display: none;
    }
}

/* Mobile */
@media(max-width:576px){

    .action-btn{
        font-size: 15px;
        padding: 14px 8px;
    }

    .action-btn i{
        font-size: 18px;
    }
}


/* Floating WhatsApp */

.desktop-whatsapp{
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 75px;
    height: 75px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;
    text-decoration: none;

    border: 5px solid #fff;

    box-shadow: 0 10px 30px rgba(0,0,0,.25);

    z-index: 9999;

    transition: all .35s ease;
}

.desktop-whatsapp:hover{
    color: #fff;
    transform: translateY(-5px) scale(1.08);
}

/* Desktop Only */
@media(max-width:991px){
    .desktop-whatsapp{
        display: none;
    }
}

/* KBS POP UP FORM *7
/*=====================================
KBS POPUP
======================================*/
/*=========================
   KBS Popup
==========================*/

.modal-backdrop {
    z-index: 10000;
}

.modal {
    z-index: 10001;
}

.kbs-popup{
    border:none;
    border-radius:18px;
    overflow:hidden;
}

/* Left */

.popup-left{

    background:linear-gradient(135deg,#0B2046,#173A70);

    color:#fff;

    min-height:470px;

    display:flex;

    align-items:center;
}

.popup-content{

    padding:40px;
}

.popup-badge{

    display:inline-block;

    background:#8a1538;

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:20px;

    font-size:14px;
}

.popup-content h2{

    font-size:36px;

    font-weight:700;

    margin-bottom:20px;
}

.popup-content p{

    line-height:1.8;
}

.popup-content ul{

    margin-top:20px;

    padding-left:20px;
}

.popup-content li{

    margin-bottom:12px;
}

/* Right */

.popup-right{

    padding:45px;

    background:#fff;
}

.popup-right h3{

    color:#0B2046;

    margin-bottom:25px;

    font-weight:700;
}

.form-control,
.form-select{

    height:50px;

    border-radius:8px;

    box-shadow:none;
}

.form-control:focus,
.form-select:focus{

    border-color:#8a1538;

    box-shadow:none;
}

.popup-btn{

    width:100%;

    height:50px;

    border:none;

    border-radius:8px;

    background:#8a1538;

    color:var(--white);

    font-weight:600;

    transition:.3s;
}

.popup-btn:hover{

    background:#0B2046;
}

/* Close */

.popup-close{
    position:absolute;
    top:15px;
    right:15px;
    z-index:999;
    background:#000000;
    border:2px solid #e5e7eb;
    border-radius:50%;
    opacity:1;
    width:40px;
    height:40px;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 12px rgba(0,0,0,0.12);
}
.popup-close i{
    color: white;
}
.popup-close i:hover{
    color: white;
}
.popup-close:hover,
.popup-close:focus{
    background:black;
    box-shadow:0 6px 16px rgba(0,0,0,0.16);
    opacity:1;
}

.popup-close:focus{
    outline:2px solid #8a1538;
    outline-offset:2px;
}

/* Mobile */

@media (max-width: 991px) {
    .modal .popup-left {
        display: none !important;
    }

    .modal .popup-right {
        padding: 30px;
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .modal .popup-content {
        padding: 30px;
    }

    .modal .popup-content h2 {
        font-size: 28px;
    }
}