/* /* =========================================================
   RADIANT EDUCATION / AIM COLLEGE
   MAIN DESKTOP CSS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#0b6b5c;
    --primary-dark:#064c42;
    --secondary:#f5a623;
    --accent:#f3b33d;
    --dark:#172b2a;
    --text:#5d6968;
    --light:#f7faf9;
    --white:#fff;
    --border:#e8eeec;
    --shadow:0 18px 50px rgba(10,55,48,.10);
    --radius:18px;
    --transition:.35s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

button,
input,
textarea{
    font-family:inherit;
}

button{
    cursor:pointer;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* =========================================================
   GLOBAL
========================================================= */

section{
    position:relative;
}

.hero-slider,
.feature-section,
.about-home-section,
.notice-bar,
.about-section,
.courses-section,
.healthcare-section,
.enroll-section,
.collaboration-section,
.testimonial-section{
    width:100%;
}

h1,
h2,
h3,
h4{
    line-height:1.25;
}

::selection{
    background:var(--primary);
    color:#fff;
}


/* =========================================================
   HERO
   AIM COLLEGE STYLE
========================================================= */

.hero-slider{
    width:100%;
    height:650px;
    overflow:hidden;
    position:relative;
    background:#0b6b5c;
}

.hero-slides{
    width:100%;
    height:100%;
    position:relative;
}

.hero-slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    visibility:hidden;
    background:#0b6b5c;
    transition:opacity .7s ease,visibility .7s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

.hero-slide img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
}

.hero-slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(6,76,66,.30),
        rgba(11,107,92,.04)
    );
    pointer-events:none;
}

/* =========================================================
   HERO NAVIGATION
========================================================= */

.hero-prev,
.hero-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    padding:0;
    border:1px solid rgba(255,255,255,.55);
    border-radius:50%;
    background:rgba(11,107,92,.35);
    backdrop-filter:blur(5px);
    -webkit-backdrop-filter:blur(5px);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10;
    transition:var(--transition);
}

.hero-prev{
    left:0px;
}

.hero-next{
    right:0px;
}

.hero-prev:hover,
.hero-next:hover{
    background:var(--secondary);
    border-color:var(--secondary);
    color:#fff;
    transform:translateY(-50%) scale(1.06);
}

/* =========================================================
   HERO DOTS
========================================================= */

.hero-dots{
    position:absolute;
    left:50%;
    bottom:25px;
    transform:translateX(-50%);
    z-index:20;
    display:flex;
    align-items:center;
    gap:8px;
}

.hero-dot{
    width:9px;
    height:9px;
    padding:0;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.65);
    transition:var(--transition);
}

.hero-dot.active{
    width:28px;
    background:var(--secondary);
    border-radius:15px;
}

/* =========================================================
   HERO CONTENT SAFETY
========================================================= */

.hero-slide-content{
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    z-index:5;
}

.hero-slide-content h1,
.hero-slide-content h2,
.hero-slide-content p{
    margin:0;
}

.hero-slide-content .hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:20px;
    padding:13px 24px;
    border:0;
    border-radius:5px;
    background:var(--secondary);
    color:#fff;
    font-size:13px;
    font-weight:600;
    transition:var(--transition);
}

.hero-slide-content .hero-btn:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}

/* =========================================================
   FEATURE CARDS
========================================================= */

.feature-section{
    margin-top:50px;
    position:relative;
    z-index:20;
}

.feature-container{
    width:90%;
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#fff;
    border-radius:18px;
    box-shadow:0 20px 55px rgba(10,45,40,.13);
    overflow:hidden;
}

.feature-card{
    min-height:190px;
    padding:35px 25px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-right:1px solid #e9efed;
    transition:var(--transition);
    position:relative;
    background:#fff;
}

.feature-card:last-child{
    border-right:0;
}

.feature-card::before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:var(--secondary);
    transform:scaleX(0);
    transform-origin:center;
    transition:var(--transition);
}

.feature-card:hover{
    transform:translateY(-7px);
    box-shadow:0 15px 35px rgba(10,55,48,.08);
}

.feature-card:hover::before{
    transform:scaleX(1);
}

.feature-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    background:#eaf5f2;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    margin-bottom:17px;
    transition:var(--transition);
}

.feature-card:hover .feature-icon{
    background:var(--primary);
    color:#fff;
    transform:rotateY(180deg);
}

.feature-card h3{
    font-size:15px;
    line-height:1.6;
    font-weight:600;
    color:#263b39;
}

/* =========================================================
   ABOUT HOME
========================================================= */

.about-home-section{
    padding:120px 0 100px;
    background:#fff;
}

.about-home-container{
    width:88%;
    max-width:1240px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

.about-home-images{
    position:relative;
    min-height:500px;
}

.about-image-main{
    width:76%;
    height:430px;
    overflow:hidden;
    border-radius:22px;
    box-shadow:var(--shadow);
}

.about-image-main img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s ease;
}

.about-image-main:hover img{
    transform:scale(1.06);
}

.about-image-second{
    position:absolute;
    right:0;
    bottom:0;
    width:48%;
    height:250px;
    border:10px solid #fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.about-image-second img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.about-home-content{
    max-width:600px;
}

.about-small-title,
.about-label{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    color:var(--primary);
    font-size:18px;
    font-weight:700;
    letter-spacing:1px;
}

.about-small-title img,
.about-label img{
    width:125px;
    height:125px;
    object-fit:contain;
}

.about-home-content h2,
.about-content h2{
    font-size:46px;
    font-weight:700;
    color:var(--dark);
    margin-bottom:25px;
}

.about-home-content h2 span,
.about-content h2 span{
    color:var(--primary);
}

.about-home-content p{
    color:var(--text);
    font-size:15px;
    margin-bottom:16px;
}

.about-home-btn,
.about-btn,
.learn-more-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:var(--primary);
    color:#fff;
    padding:14px 25px;
    border-radius:6px;
    font-size:13px;
    font-weight:700;
    margin-top:12px;
    transition:var(--transition);
}

.about-home-btn:hover,
.about-btn:hover,
.learn-more-btn:hover{
    background:var(--secondary);
    transform:translateY(-3px);
}

/* =========================================================
   NOTICE BAR
========================================================= */

.notice-bar{
    background:var(--primary);
    color:#fff;
    padding:0;
    height:52px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.notice-bar .container{
    display:flex;
    align-items:center;
    width:90%;
    max-width:1280px;
}

.notice-badge{
    flex:0 0 auto;
    background:var(--secondary);
    color:#fff;
    padding:6px 16px;
    font-size:12px;
    font-weight:700;
    letter-spacing:.8px;
    border-radius:4px;
    z-index:2;
}

.notice-bar marquee{
    flex:1;
    margin-left:15px;
    font-size:13px;
}

.notice-bar a:hover{
    color:#ffe4ae;
}

/* =========================================================
   MAIN ABOUT
========================================================= */

.about-section{
    padding:120px 0;
    background:#f8fbfa;
    overflow:hidden;
}

.about-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    right:-220px;
    top:50px;
    border-radius:50%;
    background:rgba(11,107,92,.045);
}

.about-container{
    width:88%;
    max-width:1240px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-gallery{
    position:relative;
}

.about-top-images{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:18px;
}

.about-small-image{
    height:220px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.about-small-image img,
.about-large-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s ease;
}

.about-small-image:hover img,
.about-large-image:hover img{
    transform:scale(1.06);
}

.about-large-image{
    height:340px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.about-content{
    position:relative;
    z-index:2;
}

.about-text p{
    color:var(--text);
    font-size:14px;
    margin-bottom:17px;
}

.about-text strong{
    color:#29413e;
}

.about-mission{
    padding:18px 22px;
    border-left:4px solid var(--secondary);
    background:#fff;
    border-radius:8px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.about-actions{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:25px;
}

.about-call{
    display:none;
}

.call-icon{
    display:none;
}


/* =====================================================
   COURSES SECTION
===================================================== */
/* =====================================================
   COURSES SECTION
===================================================== */

.courses-section{
    width:100%;
    padding:90px 0;
    background:#f7faf9;
    overflow:hidden;
}

.courses-container{
    width:92%;
    max-width:1280px;
    margin:0 auto;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.courses-heading{
    max-width:760px;
    margin:0 auto 45px;
    text-align:center;
}

.courses-heading h2{
    margin:0 0 18px;
    color:#102a26;
    font-size:44px;
    line-height:1.2;
    font-weight:800;
}

.courses-heading h2 span{
    color:#0b6b5c;
}

.courses-heading p{
    max-width:720px;
    margin:0 auto;
    color:#687873;
    font-size:16px;
    line-height:1.8;
}


/* =====================================================
   COURSE TABS
===================================================== */

.course-tabs{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-bottom:45px;
}

.course-tab{
    padding:13px 28px;
    border:1px solid #d8e4e0;
    border-radius:5px;
    outline:none;
    background:#ffffff;
    color:#48615b;
    font-size:13px;
    font-weight:700;
    letter-spacing:.4px;
    cursor:pointer;
    transition:all .3s ease;
}

.course-tab:hover{
    border-color:#0b6b5c;
    background:#0b6b5c;
    color:#ffffff;
}

.course-tab.active{
    border-color:#0b6b5c;
    background:#0b6b5c;
    color:#ffffff;
}


/* =====================================================
   SLIDER WRAPPER
===================================================== */

.course-slider-wrapper{
    position:relative;
    width:100%;
    padding:0 58px;
    box-sizing:border-box;
}


/* =====================================================
   SLIDER VIEWPORT
===================================================== */

.course-slider{
    position:relative;
    width:100%;
    overflow:hidden;
}


/* =====================================================
   SLIDER TRACK
===================================================== */

.course-track{
    display:flex;
    align-items:stretch;
    gap:24px;
    width:100%;
    margin:0;
    padding:0;
    transition:transform .6s ease;
    will-change:transform;
}


/* =====================================================
   COURSE CARD
===================================================== */

.course-card{
    position:relative;
    flex:0 0 calc((100% - 48px) / 3);
    width:calc((100% - 48px) / 3);
    min-width:0;
    box-sizing:border-box;
    overflow:hidden;
    background:#ffffff;
    border:1px solid #e2ebe8;
    border-radius:10px;
    box-shadow:0 8px 28px rgba(13,65,57,.07);
    transition:transform .35s ease,
                box-shadow .35s ease;
}

.course-card:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 42px rgba(13,65,57,.14);
}


/* =====================================================
   COURSE IMAGE
===================================================== */

.course-image{
    position:relative;
    width:100%;
    height:230px;
    overflow:hidden;
    background:#e9efed;
}

.course-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .5s ease;
}

.course-card:hover .course-image img{
    transform:scale(1.06);
}


/* =====================================================
   COURSE CONTENT
===================================================== */

.course-content{
    padding:25px 24px 26px;
    box-sizing:border-box;
}

.course-content h3{
    min-height:58px;
    margin:0 0 14px;
    color:#183a34;
    font-size:20px;
    line-height:1.45;
    font-weight:750;
}

.course-content p{
    min-height:108px;
    margin:0;
    color:#687873;
    font-size:14px;
    line-height:1.75;
}

.course-line{
    width:100%;
    height:1px;
    margin:20px 0;
    background:#e5ecea;
}


/* =====================================================
   ENQUIRY BUTTON
===================================================== */

.enquiry-btn{
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    color:#0b6b5c;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:color .3s ease;
}

.enquiry-btn i{
    font-size:13px;
    transition:transform .3s ease;
}

.enquiry-btn:hover{
    color:#084d43;
}

.enquiry-btn:hover i{
    transform:translateX(5px);
}


/* =====================================================
   SLIDER ARROWS
===================================================== */

.slider-btn{
    position:absolute;
    top:50%;
    z-index:20;
    width:46px;
    height:46px;
    padding:0;
    border:1px solid #d7e4e0;
    border-radius:50%;
    outline:none;
    background:#ffffff;
    color:#0b6b5c;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transform:translateY(-50%);
    box-shadow:0 8px 22px rgba(13,65,57,.12);
    transition:all .3s ease;
}

.slider-btn:hover{
    border-color:#0b6b5c;
    background:#0b6b5c;
    color:#ffffff;
    box-shadow:0 10px 25px rgba(11,107,92,.22);
}

.slider-btn:disabled{
    opacity:.45 !important;
    cursor:default !important;
    pointer-events:none;
}

.slider-btn i{
    font-size:14px;
}

.slider-prev{
    left:0;
}

.slider-next{
    right:0;
}


/* =====================================================
   DOTS
===================================================== */

.course-dots{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:10px;
    margin-top:32px;
}

.course-dot{
    width:9px;
    height:9px;
    padding:0;
    margin:0;
    border:0;
    border-radius:50%;
    outline:none;
    background:#c9d8d4;
    cursor:pointer;
    transition:all .3s ease;
}

.course-dot:hover{
    background:#7fa69d;
}

.course-dot.active{
    width:26px;
    border-radius:10px;
    background:#0b6b5c;
}


/* =====================================================
   HIDDEN CARD
===================================================== */

.course-card.course-hidden{
    display:none !important;
}


/* =====================================================
   FOCUS
===================================================== */

.course-tab:focus,
.slider-btn:focus,
.course-dot:focus{
    outline:none;
}



/* =========================================================
   HEALTHCARE
========================================================= */

.healthcare-section{
    padding:115px 0;
    background:#f7faf9;
}

.healthcare-container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

.healthcare-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 50px;
}

.healthcare-heading h2{
    font-size:42px;
    color:var(--dark);
    margin-bottom:15px;
}

.healthcare-heading h2 span{
    color:var(--primary);
}

.healthcare-heading p{
    color:var(--text);
    font-size:14px;
}

.healthcare-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.healthcare-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(15,55,48,.07);
    border:1px solid #e7edeb;
    transition:var(--transition);
}

.healthcare-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(15,55,48,.13);
}

.healthcare-image{
    height:235px;
    overflow:hidden;
}

.healthcare-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s ease;
}

.healthcare-card:hover .healthcare-image img{
    transform:scale(1.07);
}

.healthcare-content{
    padding:25px;
}

.healthcare-content h3{
    font-size:19px;
    color:#263b38;
    margin-bottom:12px;
}

.healthcare-content p{
    color:var(--text);
    font-size:13px;
    line-height:1.75;
    margin-bottom:22px;
}

.healthcare-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding-top:17px;
    border-top:1px solid #e8eeec;
}

.course-duration{
    font-size:11px;
    color:#657572;
}

.course-duration i{
    color:var(--primary);
    margin-right:5px;
}

.healthcare-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--primary);
    color:#fff;
    padding:9px 15px;
    border-radius:5px;
    font-size:11px;
    font-weight:700;
    transition:var(--transition);
}

.healthcare-btn:hover{
    background:var(--secondary);
}

/* =========================================================
   ENROLL
========================================================= */

.enroll-section{
    padding:120px 0;
    background:
        linear-gradient(
            110deg,
            #075b50,
            #0b7667
        );
    overflow:hidden;
}

.enroll-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    right:-250px;
    top:-200px;
    border-radius:50%;
    border:70px solid rgba(255,255,255,.05);
}

.enroll-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    left:-160px;
    bottom:-160px;
    border-radius:50%;
    border:50px solid rgba(255,255,255,.04);
}

.enroll-container{
    position:relative;
    z-index:2;
    width:88%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.enroll-form-box{
    background:#fff;
    padding:42px;
    border-radius:18px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.enroll-form-box h2{
    font-size:30px;
    color:var(--dark);
    margin-bottom:8px;
}

.enroll-form-box h2 span{
    color:var(--primary);
}

.enroll-subtitle{
    color:var(--text);
    font-size:13px;
    margin-bottom:25px;
}

.form-group{
    margin-bottom:14px;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:1px solid #dce6e3;
    background:#f9fbfa;
    outline:none;
    border-radius:5px;
    padding:13px 15px;
    color:#263b38;
    font-size:13px;
    transition:var(--transition);
}

.form-group input{
    height:49px;
}

.form-group textarea{
    min-height:115px;
    resize:vertical;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:var(--primary);
    background:#fff;
    box-shadow:0 0 0 3px rgba(11,107,92,.08);
}

.enroll-submit{
    border:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    background:var(--secondary);
    color:#fff;
    padding:14px 25px;
    border-radius:5px;
    font-size:13px;
    font-weight:700;
    margin-top:5px;
    transition:var(--transition);
}

.enroll-submit:hover{
    background:var(--primary);
    transform:translateY(-3px);
}

.enroll-content-box{
    color:#fff;
}

.enroll-content-box h2{
    font-size:46px;
    margin-bottom:22px;
}

.enroll-content-box h2 span{
    color:var(--secondary);
}

.enroll-description{
    font-size:14px;
    color:rgba(255,255,255,.8);
    margin-bottom:30px;
}

.progress-item{
    margin-bottom:24px;
}

.progress-title{
    font-size:13px;
    font-weight:600;
    margin-bottom:9px;
}

.progress-title span{
    font-weight:400;
    color:rgba(255,255,255,.72);
}

.progress-bar{
    width:100%;
    height:7px;
    background:rgba(255,255,255,.15);
    border-radius:10px;
    overflow:hidden;
}

.progress-fill{
    height:100%;
    background:var(--secondary);
    border-radius:10px;
    position:relative;
}

.progress-fill::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    width:12px;
    height:12px;
    transform:translateY(-50%);
    background:#fff;
    border:3px solid var(--secondary);
    border-radius:50%;
}

.learn-more-btn{
    background:#fff;
    color:var(--primary);
    margin-top:12px;
}

.learn-more-btn:hover{
    background:var(--secondary);
    color:#fff;
}






/* =====================================================
   GALLERY SECTION
===================================================== */

.gallery-section{
    width:100%;
    padding:90px 0;
    background:#ffffff;
    overflow:hidden;
}

.gallery-container{
    width:90%;
    max-width:1280px;
    margin:0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.gallery-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 45px;
}

.gallery-label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:15px;
    padding:8px 17px;
    border-radius:50px;
    background:#e5f4ef;
    color:#0b6b5c;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.5px;
}

.gallery-heading h2{
    margin:0 0 15px;
    color:#123b35;
    font-size:44px;
    line-height:1.15;
    font-weight:800;
}

.gallery-heading h2 span{
    color:#0b806d;
}

.gallery-heading p{
    max-width:650px;
    margin:0 auto;
    color:#6b7d78;
    font-size:14px;
    line-height:1.8;
}


/* =====================================================
   GALLERY GRID
===================================================== */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}


/* =====================================================
   GALLERY CARD
===================================================== */

.gallery-card{
    position:relative;
    width:100%;
    height:260px;
    overflow:hidden;
    border:0;
    padding:0;
    border-radius:12px;
    background:#e4f1ed;
    cursor:pointer;
}

.gallery-card img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .5s ease;
}

.gallery-card:hover img{
    transform:scale(1.08);
}


/* =====================================================
   HOVER OVERLAY
===================================================== */

.gallery-hover{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    border:0;
    padding:0;
    background:rgba(11,107,92,.72);
    opacity:0;
    visibility:hidden;
    cursor:pointer;
    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.gallery-card:hover .gallery-hover{
    opacity:1;
    visibility:visible;
}


/* =====================================================
   PLUS
===================================================== */

.gallery-plus{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#ffffff;
    color:#0b6b5c;
    font-size:21px;
    transform:scale(.5);
    transition:transform .4s ease;
}

.gallery-card:hover .gallery-plus{
    transform:scale(1);
}


/* =====================================================
   FULL SCREEN LIGHTBOX
===================================================== */

.gallery-lightbox{
    position:fixed;
    inset:0;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 90px;
    background:rgba(0,0,0,.94);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.gallery-lightbox.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}


/* =====================================================
   LIGHTBOX IMAGE
===================================================== */

.lightbox-content{
    position:relative;
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.lightbox-content img{
    display:block;
    max-width:90vw;
    max-height:88vh;
    width:auto;
    height:auto;
    object-fit:contain;
    border-radius:5px;
    box-shadow:0 20px 70px rgba(0,0,0,.5);
    transform:scale(.94);
    transition:transform .3s ease;
}

.gallery-lightbox.active .lightbox-content img{
    transform:scale(1);
}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.lightbox-close{
    position:absolute;
    top:25px;
    right:30px;
    z-index:5;
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;
    background:rgba(255,255,255,.10);
    color:#ffffff;
    font-size:20px;
    cursor:pointer;
    transition:.3s ease;
}

.lightbox-close:hover{
    background:#ffffff;
    color:#0b6b5c;
    transform:rotate(90deg);
}


/* =====================================================
   LEFT / RIGHT BUTTONS
===================================================== */

.lightbox-arrow{
    position:absolute;
    top:50%;
    z-index:5;
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;
    background:rgba(255,255,255,.10);
    color:#ffffff;
    font-size:15px;
    cursor:pointer;
    transform:translateY(-50%);
    transition:.3s ease;
}

.lightbox-arrow:hover{
    background:#ffffff;
    color:#0b6b5c;
}

.lightbox-prev{
    left:25px;
}

.lightbox-next{
    right:25px;
}


/* =====================================================
   COUNTER
===================================================== */

.lightbox-counter{
    position:absolute;
    left:50%;
    bottom:20px;
    transform:translateX(-50%);
    padding:7px 14px;
    border-radius:30px;
    background:rgba(255,255,255,.12);
    color:#ffffff;
    font-size:12px;
    font-weight:600;
    letter-spacing:.5px;
}

/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-section{
    padding:115px 0;
    min-height:650px;
    overflow:hidden;
    background:#123e38;
}

.testimonial-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.testimonial-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(4,45,39,.94),
            rgba(4,45,39,.78)
        );
}

.testimonial-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.testimonial-heading{
    text-align:center;
    color:#fff;
    margin-bottom:45px;
}

.testimonial-heading > span{
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
    color:var(--secondary);
}

.testimonial-heading h2{
    font-size:43px;
    margin-top:10px;
}

.testimonial-heading h2 strong{
    color:var(--secondary);
}

.testimonial-slider{
    position:relative;
    padding:0 45px;
}

.testimonial-window{
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:25px;
    transition:transform .5s ease;
}

.testimonial-card{
    flex:0 0 calc((100% - 25px)/2);
    background:#fff;
    border-radius:15px;
    padding:30px;
    min-height:290px;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,.14);
}

.quote-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e9f5f2;
    color:var(--primary);
    font-size:18px;
    margin-bottom:18px;
}

.testimonial-card p{
    font-size:13px;
    line-height:1.8;
    color:var(--text);
    margin-bottom:25px;
}

.student-info{
    display:flex;
    align-items:center;
    gap:13px;
    border-top:1px solid #e9efed;
    padding-top:18px;
}

.student-avatar{
    width:52px;
    height:52px;
    border-radius:50%;
    overflow:hidden;
    flex:0 0 auto;
}

.student-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.student-info h4{
    color:var(--dark);
    font-size:14px;
}

.student-info span{
    color:#788683;
    font-size:11px;
}

.testimonial-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.4);
    background:rgba(255,255,255,.1);
    color:#fff;
    z-index:5;
    transition:var(--transition);
}

.testimonial-btn:hover{
    background:var(--secondary);
    border-color:var(--secondary);
}

.testimonial-prev{
    left:-5px;
}

.testimonial-next{
    right:-5px;
}

.testimonial-dots{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:30px;
}

.testimonial-dots button{
    width:9px;
    height:9px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.4);
}

.testimonial-dots button.active{
    width:28px;
    background:var(--secondary);
    border-radius:15px;
}

/* =========================================================
   FOOTER SAFETY
========================================================= */

footer{
    position:relative;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(25px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes floatImage{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

.about-image-second{
    animation:floatImage 4s ease-in-out infinite;
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible{
    outline:3px solid rgba(243,179,61,.45);
    outline-offset:3px;
}