/* =========================================================
   PREMIUM COURSE PROGRAMMES SECTION
   MATCHING MASTER WEBSITE THEME
========================================================= */

.course-program-section{
    position: relative;
    padding: 100px 0;
    background: var(--bg);
    overflow: hidden;
}

/* BACKGROUND EFFECTS */

.course-program-section::before{
    content: "";
    position: absolute;
    top: -180px;
    left: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(29,98,216,.08);
    filter: blur(40px);
}

.course-program-section::after{
    content: "";
    position: absolute;
    bottom: -180px;
    right: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(230,46,45,.08);
    filter: blur(40px);
}

/* =========================================================
   SECTION HEADING
========================================================= */

.course-program-heading{
    text-align: center;
    max-width: 900px;
    margin: auto auto 70px;
    position: relative;
    z-index: 2;
}

.course-program-heading .eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: rgba(230,46,45,.1);
    color: var(--accent);

    padding: 8px 18px;

    border-radius: 999px;

    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;

    margin-bottom: 18px;

    animation: pulseGlow 2.5s infinite;
}

.course-program-heading h2{
   

   
}

.course-program-heading h2::after{
   
}

.course-program-heading p{
    margin-top: 34px;

    color: var(--muted);

    font-size: 1.08rem;
    line-height: 1.9;
}

/* =========================================================
   GRID
========================================================= */

.course-program-grid{
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;

    align-items: stretch;
}

/* =========================================================
   CARD
========================================================= */

.course-box{
    position: relative;

    display: flex;
    flex-direction: column;

    height: 100%;

    background: var(--surface);

    border-radius: 26px;

    border: 1px solid var(--border);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition: .45s ease;
}

.course-box:hover{
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* TOP BORDER */

.course-box::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 5px;

    background: var(--grad-accent);

    transform: scaleX(0);
    transform-origin: left;

    transition: .4s ease;
}

.course-box:hover::before{
    transform: scaleX(1);
}

/* INNER */

.course-box-inner{
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 40px 34px;
}

/* =========================================================
   ICON
========================================================= */

.course-icon{
    width: 74px;
    height: 74px;

    border-radius: 18px;

    background: var(--grad);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 30px;

    margin-bottom: 24px;

    box-shadow: 0 12px 24px rgba(10,44,107,.18);

    transition: .4s ease;
}

.course-box:hover .course-icon{
    transform: rotate(-8deg) scale(1.08);
}

/* =========================================================
   TITLE
========================================================= */

.course-box h3{
   
}

.course-box h3::after{
   
}

.course-box:hover h3::after{
    width: 90px;
}

/* =========================================================
   DURATION
========================================================= */

.course-duration{
    display: inline-block;

    margin-top: 12px;
    margin-bottom: 28px;

    padding: 8px 16px;

    border-radius: 999px;

    background: rgba(230,46,45,.08);

    color: var(--accent);

    font-size: .92rem;
    font-weight: 700;
}

/* =========================================================
   LIST
========================================================= */

.course-list{
    list-style: none;

    display: grid;
    gap: 14px;

    flex: 1;

    margin-bottom: 36px;
}

.course-list li{
    position: relative;

    padding-left: 30px;

    color: var(--text);

    font-size: .97rem;
    font-weight: 500;
    line-height: 1.7;

    transition: .3s ease;
}

.course-list li::before{
    content: "✓";

    position: absolute;

    left: 0;
    top: 4px;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: rgba(230,46,45,.1);

    color: var(--accent);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: .7rem;
    font-weight: 700;
}

.course-list li:hover{
    color: var(--accent);
    transform: translateX(6px);
}

/* =========================================================
   BUTTON
========================================================= */

.course-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: auto;

    align-self: flex-start;

    padding: 14px 28px;

    border-radius: 999px;

    background: var(--grad-accent);

    color: #fff;

    font-size: .92rem;
    font-weight: 700;

    box-shadow: 0 10px 24px rgba(230,46,45,.2);

    transition: .35s ease;
}

.course-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(230,46,45,.32);
}

/* =========================================================
   CARD HOVER GLOW
========================================================= */

.course-box:hover{
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,1),
            rgba(248,251,255,1)
        );
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes gradientMove{

    0%{
        background-position: 0% center;
    }

    100%{
        background-position: 300% center;
    }
}

@keyframes fadeZoom{

    from{
        opacity: 0;
        transform: scale(.85);
    }

    to{
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeUp{

    from{
        opacity: 0;
        transform: translateY(25px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow{

    0%,100%{
        box-shadow: 0 0 0 0 rgba(230,46,45,.35);
    }

    50%{
        box-shadow: 0 0 0 14px rgba(230,46,45,0);
    }
}

@keyframes lineGlow{

    0%{
        width: 70px;
    }

    50%{
        width: 160px;
    }

    100%{
        width: 70px;
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .course-program-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px){

    .course-program-section{
        padding: 75px 0;
    }

    .course-program-grid{
        grid-template-columns: 1fr;
    }

    .course-program-heading{
        margin-bottom: 50px;
    }

    .course-program-heading h2{
       
    }

    .course-program-heading p{
        font-size: .98rem;
    }

    .course-box-inner{
        padding: 30px 24px;
    }

    .course-box h3{
        font-size: 1.6rem;
    }

    .course-icon{
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
}

@media(max-width:480px){

    .course-program-heading h2{
       
    }

    .course-program-heading p{
        font-size: .92rem;
        line-height: 1.8;
    }

    .course-btn{
        width: 100%;
    }

    .course-box-inner{
        padding: 28px 20px;
    }

    .course-list li{
        font-size: .92rem;
    }
}

/* client -section */

/* ==========================================
   CLIENT SECTION CSS
========================================== */

.client-section {
    background: #f5f7fc;
    padding: 80px 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.client-section-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.client-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.client-section-subtitle {
    display: inline-block;
    color: #f4b400;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.client-section-header h2 {
   
   
}

.client-section-header p {
    font-size: 18px;
    color: #555;
    max-width: 850px;
    margin: auto;
    line-height: 1.7;
}

/* SLIDER */

.client-section-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.client-section-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: client-section-scroll 25s linear infinite;
}

.client-section-card {
    background: #ffffff;
    min-width: 280px;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.client-section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.client-section-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.client-section-card h3 {
    
    color: #0a2c6d;
    margin-bottom: 10px;
    font-weight: 700;
}

.client-section-card p {
    font-size: 17px;
    color: #666;
}

/* ANIMATION */

@keyframes client-section-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .client-section-header h2 {
        font-size: 38px;
    }

    .client-section-card {
        min-width: 240px;
    }
}

@media (max-width: 768px) {

    .client-section {
        padding: 60px 0;
    }

    .client-section-header h2 {
        font-size: 30px;
    }

    .client-section-header p {
        font-size: 16px;
    }

    .client-section-card {
        min-width: 220px;
        padding: 30px 20px;
    }

    .client-section-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {

    .client-section-header h2 {
        font-size: 26px;
    }

    .client-section-card {
        min-width: 200px;
    }
}


/* super star title */

/* =====================================
   SUPER STYLE TITLE ANIMATION
===================================== */

.super-title-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 15px;
    overflow:hidden;
   
}

/* MAIN TITLE */

.super-title{
    position:relative;
    font-size:75px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:4px;
    margin:0;
    line-height:1.2;
    text-align:center;
}

/* GRADIENT TEXT */

.super-title span{
    background:linear-gradient(
        90deg,
        #e30349,
        #001a4b,
        #e30349,
        #e30349,
        #001a4b
    );

    background-size:400% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:
        titleShine 6s linear infinite,
        titleFloat 3s ease-in-out infinite;

    display:inline-block;

    text-shadow:
        0 0 20px rgba(255,255,255,0.4),
        0 0 40px rgba(255,204,0,0.5);
}

/* GLOW LINE */

.super-title::before{
    content:'';
    position:absolute;
    left:0;
    bottom:-15px;
    width:100%;
    height:6px;
    border-radius:10px;

    background:linear-gradient(
        90deg,
        transparent,
        #ffcc00,
        #ff3300,
        #00e5ff,
        transparent
    );

    animation:lineMove 4s linear infinite;
}

/* ANIMATIONS */

@keyframes titleShine{
    0%{
        background-position:0% center;
    }
    100%{
        background-position:400% center;
    }
}

@keyframes titleFloat{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
}

@keyframes lineMove{
    0%{
        opacity:0.5;
        transform:scaleX(0.7);
    }
    50%{
        opacity:1;
        transform:scaleX(1);
    }
    100%{
        opacity:0.5;
        transform:scaleX(0.7);
    }
}

/* RESPONSIVE */

@media(max-width:992px){

    .super-title{
        font-size:55px;
    }
}

@media(max-width:768px){

    .super-title{
        font-size:40px;
        letter-spacing:2px;
    }
}

@media(max-width:480px){

    .super-title{
        font-size:28px;
        letter-spacing:1px;
    }

    .super-title::before{
        height:4px;
    }
}

/* feature ino */

/* SECTION */

.features-info-section{
    width:100%;
    padding:100px 20px;
    overflow:hidden;
}

/* HEADING */

.features-info-heading-wrap{
    text-align:center;
    margin-bottom:70px;
}

.features-info-mini-title{
    display:inline-block;
    padding:12px 28px;
    background:#ffe6e6;
    color:#ff2e2e;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.features-info-main-title{
    font-size:1.6rem;
    color:#0f3479;
    font-weight:800;
    margin-bottom:20px;
}

.features-info-subtitle{
    font-size:1.17em;
    color:#666;
    font-weight:500;
}

/* SLIDER */

.features-info-slider-container{
    position:relative;
    max-width:1400px;
    margin:auto;
    overflow:hidden;
}

.features-info-slider-track{
    display:flex;
    gap:30px;
    transition:transform 0.6s ease;
}

/* CARD */

.features-info-card{
    min-width:calc(33.333% - 20px);
    background:#fff;
    border-radius:30px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    border:1px solid #edf0f5;
    transition:0.4s;
    position:relative;
}

.features-info-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.features-info-icon{
    width:75px;
    height:75px;
    border-radius:22px;
    background:linear-gradient(135deg,#ff4d4d,#ff1f1f);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
    color:#fff;
}

.features-info-card-title{
    font-size:1.7em;
    color:#0f3479;
    line-height:1.4;
    margin-bottom:20px;
    font-weight:800;
}

.features-info-card-desc{
    font-size:20px;
    line-height:1.9;
    color:#333333;
    margin-bottom:35px;
    font-weight: 600;
}

.features-info-readmore{
    color:#ff2d2d;
    text-decoration:none;
    font-size:21px;
    font-weight:700;
    transition:0.3s;
}

.features-info-readmore:hover{
    letter-spacing:1px;
}

/* ARROWS */

.features-info-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    cursor:pointer;
    z-index:99;
    font-size:24px;
    transition:0.4s;
}

.features-info-arrow:hover{
    background:#0f3479;
    color:#fff;
}

.features-info-prev{
    left:0;
}

.features-info-next{
    right:0;
}

/* TABLET */

@media(max-width:991px){

    .features-info-main-title{
        font-size:42px;
    }

    .features-info-subtitle{
        font-size:18px;
    }

    .features-info-card{
        min-width:calc(50% - 15px);
    }

    .features-info-card-title{
        font-size:26px;
    }

    .features-info-card-desc{
        font-size:17px;
    }

}

/* MOBILE */

@media(max-width:767px){

    .features-info-section{
        padding:70px 15px;
    }

    .features-info-main-title{
        font-size:32px;
    }

    .features-info-subtitle{
        font-size:15px;
    }

    .features-info-card{
        min-width:100%;
        padding:28px;
    }

    .features-info-card-title{
        font-size:22px;
    }

    .features-info-card-desc{
        font-size:15px;
        line-height:1.8;
    }

    .features-info-readmore{
        font-size:17px;
    }

    .features-info-arrow{
        width:50px;
        height:50px;
        font-size:20px;
    }

}


/* banner -animation */ 

.banner-animation-section{
    width:100%;
    min-height:100vh;
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(135deg,#071c4d 0%,#0f3479 50%,#174aa8 100%);
    padding:120px 20px;
}

/* SHAPES */

.banner-animation-shape{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
    animation:banner-animation-float 8s infinite linear;
}

.banner-animation-shape-1{
    width:350px;
    height:350px;
    top:-100px;
    left:-100px;
}

.banner-animation-shape-2{
    width:250px;
    height:250px;
    bottom:50px;
    right:-80px;
    animation-duration:10s;
}

.banner-animation-shape-3{
    width:180px;
    height:180px;
    top:50%;
    left:45%;
    animation-duration:7s;
}

/* CONTAINER */

.banner-animation-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    position:relative;
    z-index:10;
}

/* LEFT */

.banner-animation-left{
    flex:1;
    animation:banner-animation-slideLeft 1.2s ease;
}

.banner-animation-mini-title{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(12px);
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:28px;
    border:1px solid rgba(255,255,255,0.1);
}

.banner-animation-main-title{
    font-size:78px;
    line-height:1.15;
    color:#fff;
    font-weight:800;
    margin-bottom:30px;
}

.banner-animation-main-title span{
    color:#ffcf3c;
    position:relative;
}

.banner-animation-main-title span::after{
    content:'';
    position:absolute;
    left:0;
    bottom:8px;
    width:100%;
    height:14px;
    background:rgba(255,207,60,0.2);
    z-index:-1;
}

.banner-animation-description{
    color:rgba(255,255,255,0.85);
    font-size:22px;
    line-height:1.9;
    margin-bottom:40px;
    max-width:700px;
}

/* BUTTON */

.banner-animation-btn-wrap{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.banner-animation-btn{
    padding:18px 38px;
    border-radius:60px;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    transition:0.4s ease;
}

.banner-animation-primary-btn{
    background:#ff3c3c;
    color:#fff;
    box-shadow:0 15px 35px rgba(255,60,60,0.35);
}

.banner-animation-primary-btn:hover{
    transform:translateY(-6px);
    background:#ff1e1e;
}

.banner-animation-secondary-btn{
    border:2px solid rgba(255,255,255,0.25);
    color:#fff;
    backdrop-filter:blur(10px);
}

.banner-animation-secondary-btn:hover{
    background:#fff;
    color:#0f3479;
    transform:translateY(-6px);
}

/* COUNTER */

.banner-animation-counter-wrap{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.banner-animation-counter-box{
    min-width:170px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    padding:30px;
    border-radius:24px;
    transition:0.4s;
}

.banner-animation-counter-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.12);
}

.banner-animation-counter-box h3{
    color:#fff;
    font-size:42px;
    margin-bottom:10px;
}

.banner-animation-counter-box p{
    color:#d7def0;
    font-size:18px;
}

/* RIGHT */

.banner-animation-right{
    flex:1;
    position:relative;
    animation:banner-animation-slideRight 1.2s ease;
}

.banner-animation-image-wrap{
    position:relative;
}

.banner-animation-main-image{
    width:100%;
    border-radius:40px;
    object-fit:cover;
    box-shadow:0 30px 80px rgba(0,0,0,0.35);
    animation:banner-animation-imageFloat 5s ease-in-out infinite;
}

/* FLOATING CARD */

.banner-animation-floating-card{
    position:absolute;
    background:#fff;
    padding:18px 28px;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    font-weight:700;
    color:#0f3479;
    animation:banner-animation-cardFloat 4s ease-in-out infinite;
}

.banner-animation-card-1{
    top:40px;
    left:-40px;
}

.banner-animation-card-2{
    top:45%;
    right:-50px;
    animation-delay:1s;
}

.banner-animation-card-3{
    bottom:40px;
    left:-20px;
    animation-delay:2s;
}

/* ANIMATION */

@keyframes banner-animation-slideLeft{

    from{
        opacity:0;
        transform:translateX(-80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

@keyframes banner-animation-slideRight{

    from{
        opacity:0;
        transform:translateX(80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

@keyframes banner-animation-imageFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes banner-animation-cardFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes banner-animation-float{

    0%{
        transform:translateY(0px) rotate(0deg);
    }

    50%{
        transform:translateY(-20px) rotate(180deg);
    }

    100%{
        transform:translateY(0px) rotate(360deg);
    }

}

/* TABLET */

@media(max-width:1100px){

    .banner-animation-container{
        flex-direction:column;
    }

    .banner-animation-main-title{
        font-size:60px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .banner-animation-section{
        padding:90px 15px;
    }

    .banner-animation-main-title{
        font-size:40px;
    }

    .banner-animation-description{
        font-size:17px;
    }

    .banner-animation-btn{
        width:100%;
        text-align:center;
    }

    .banner-animation-counter-wrap{
        gap:15px;
    }

    .banner-animation-counter-box{
        width:100%;
    }

    .banner-animation-floating-card{
        position:relative;
        margin-top:15px;
        left:0 !important;
        right:0 !important;
        top:0 !important;
        bottom:0 !important;
    }

}


/* course-info */

.course-card-details-section{
    width:100%;
    padding:100px 20px;
    overflow:hidden;
}

/* CONTAINER */

.course-card-details-container{
    max-width:1400px;
    margin:auto;
}

/* HEADING */

.course-card-details-heading{
    text-align:center;
    margin-bottom:70px;
}

.course-card-details-badge{
    display:inline-block;
    background:#fff1e7;
    color:#ff6b00;
    padding:12px 26px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.course-card-details-title{
    font-size:60px;
    font-weight:800;
    color:#0f3479;
    margin-bottom:20px;
}

.course-card-details-title span{
    color:#ff6b00;
}

.course-card-details-line{
    width:120px;
    height:5px;
    background:linear-gradient(to right,#ff6b00,#ffb347);
    margin:20px auto;
    border-radius:50px;
}

.course-card-details-desc{
    max-width:750px;
    margin:auto;
    font-size:20px;
    color:#667;
    line-height:1.8;
}

/* SLIDER */

.course-card-details-slider-wrap{
    position:relative;
    overflow:hidden;
}

.course-card-details-slider{
    display:flex;
    gap:30px;
    transition:0.7s ease;
}

/* CARD */

.course-card-details-card{
    min-width:calc(33.333% - 20px);
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    transition:0.5s ease;
    position:relative;
}

.course-card-details-card:hover{
    transform:translateY(-15px);
    box-shadow:0 30px 60px rgba(0,0,0,0.12);
}

/* IMAGE */

.course-card-details-image-wrap{
    position:relative;
    height:260px;
    overflow:hidden;
}

.course-card-details-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.7s;
}

.course-card-details-card:hover img{
    transform:scale(1.1) rotate(2deg);
}

.course-card-details-image-wrap::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,0.65),
    transparent);
    z-index:1;
}

.course-card-details-category{
    position:absolute;
    top:20px;
    left:20px;
    z-index:2;
    background:#ff6b00;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
}

/* CONTENT */

.course-card-details-content{
    padding:35px;
}

.course-card-details-course-title{
    font-size:30px;
    color:#0f3479;
    font-weight:800;
    margin-bottom:25px;
}

/* META */

.course-card-details-meta{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:22px;
}

.course-card-details-meta-item{
    background:#f5f7fb;
    padding:10px 16px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    color:#444;
}

.course-card-details-meta-item i{
    color:#ff6b00;
    margin-right:8px;
}

/* TEXT */

.course-card-details-text{
    color:#667;
    line-height:1.9;
    font-size:16px;
    margin-bottom:30px;
}

/* BUTTON */

.course-card-details-footer{
    display:flex;
    gap:15px;
}

.course-card-details-btn{
    flex:1;
    text-align:center;
    padding:14px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
}

.course-card-details-btn-primary{
    background:#ff6b00;
    color:#fff;
}

.course-card-details-btn-primary:hover{
    background:#e65c00;
}

.course-card-details-btn-outline{
    border:2px solid #0f3479;
    color:#0f3479;
}

.course-card-details-btn-outline:hover{
    background:#0f3479;
    color:#fff;
}

/* ARROWS */

.course-card-details-arrow{
    position:absolute;
    top:45%;
    transform:translateY(-50%);
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    z-index:20;
    cursor:pointer;
    font-size:22px;
    transition:0.4s;
}

.course-card-details-arrow:hover{
    background:#ff6b00;
    color:#fff;
}

.course-card-details-prev{
    left:-5px;
}

.course-card-details-next{
    right:-5px;
}

/* TABLET */

@media(max-width:991px){

    .course-card-details-title{
        font-size:42px;
    }

    .course-card-details-card{
        min-width:calc(50% - 15px);
    }

}

/* MOBILE */

@media(max-width:767px){

    .course-card-details-section{
        padding:70px 15px;
    }

    .course-card-details-title{
        font-size:34px;
    }

    .course-card-details-desc{
        font-size:16px;
    }

    .course-card-details-card{
        min-width:100%;
    }

    .course-card-details-content{
        padding:25px;
    }

    .course-card-details-course-title{
        font-size:24px;
    }

    .course-card-details-footer{
        flex-direction:column;
    }

    .course-card-details-arrow{
        width:50px;
        height:50px;
        font-size:18px;
    }

}

</style>

/* student -voice */

/* SECTION */

.student-voice-section{
    width:100%;
    padding:100px 20px;
    overflow:hidden;
    background:#f6f8fc;
}

/* CONTAINER */

.student-voice-container{
    max-width:1400px;
    margin:auto;
}

/* HEADING */

.student-voice-heading{
    text-align:center;
    margin-bottom:70px;
}

.student-voice-eyebrow{
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    background:#ffe9e9;
    color:#ff3d3d;
    font-size:14px;
    font-weight:700;
    margin-bottom:22px;
    letter-spacing:1px;
}

.student-voice-title{
    font-size:65px;
    font-weight:800;
    color:#0d347a;
    line-height:1.2;
}

/* SLIDER */

.student-voice-slider-wrapper{
    position:relative;
    overflow:hidden;
}

.student-voice-slider-track{
    display:flex;
    gap:30px;
    transition:0.7s ease;
}

/* CARD */

.student-voice-card{
    min-width:calc(33.333% - 20px);
    background:#fff;
    border-radius:35px;
    padding:45px;
    border:1px solid #edf0f5;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:0.5s ease;
    position:relative;
    overflow:hidden;
}

.student-voice-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(to right,#0d347a,#ff3d3d);
    transform:scaleX(0);
    transition:0.5s;
    transform-origin:left;
}

.student-voice-card:hover::before{
    transform:scaleX(1);
}

.student-voice-card:hover{
    transform:translateY(-14px);
    box-shadow:0 25px 60px rgba(0,0,0,0.1);
}

/* STARS */

.student-voice-stars{
    color:#ffb400;
    font-size:26px;
    margin-bottom:28px;
    letter-spacing:4px;
}

/* TEXT */

.student-voice-text{
    font-size:20px;
    line-height:1.9;
    color:#2f3552;
    margin-bottom:40px;
    font-style:italic;
}

/* USER */

.student-voice-user{
    display:flex;
    align-items:center;
    gap:18px;
}

.student-voice-avatar{
    width:75px;
    height:75px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d347a,#1c5ed6);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    font-weight:700;
    flex-shrink:0;
}

.student-voice-user-info h4{
    font-size:28px;
    color:#123a80;
    margin-bottom:8px;
}

.student-voice-user-info span{
    color:#667;
    font-size:18px;
}

/* ARROWS */

.student-voice-arrow{
    position:absolute;
    top:45%;
    transform:translateY(-50%);
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    cursor:pointer;
    z-index:20;
    font-size:22px;
    transition:0.4s;
}

.student-voice-arrow:hover{
    background:#0d347a;
    color:#fff;
}

.student-voice-prev{
    left:-5px;
}

.student-voice-next{
    right:-5px;
}

/* TABLET */

@media(max-width:991px){

    .student-voice-title{
        font-size:46px;
    }

    .student-voice-card{
        min-width:calc(50% - 15px);
    }

}

/* MOBILE */

@media(max-width:767px){

    .student-voice-section{
        padding:70px 15px;
    }

    .student-voice-title{
        font-size:34px;
    }

    .student-voice-card{
        min-width:100%;
        padding:30px;
    }

    .student-voice-stars{
        font-size:20px;
    }

    .student-voice-text{
        font-size:16px;
    }

    .student-voice-avatar{
        width:60px;
        height:60px;
        font-size:22px;
    }

    .student-voice-user-info h4{
        font-size:22px;
    }

    .student-voice-user-info span{
        font-size:15px;
    }

    .student-voice-arrow{
        width:50px;
        height:50px;
        font-size:18px;
    }

}

/* blog */

.vaslan-blog-section{
    position:relative;
    width:100%;
    padding:110px 20px;
    overflow:hidden;
    background:linear-gradient(135deg,#f8fbff,#eef3ff);
}

/* SHAPES */

.vaslan-blog-shape{
    position:absolute;
    border-radius:50%;
    background:rgba(13,52,122,0.05);
}

.vaslan-blog-shape-1{
    width:350px;
    height:350px;
    top:-120px;
    right:-100px;
}

.vaslan-blog-shape-2{
    width:250px;
    height:250px;
    bottom:-80px;
    left:-80px;
}

/* CONTAINER */

.vaslan-blog-container{
    max-width:1450px;
    margin:auto;
    position:relative;
    z-index:10;
}

/* HEADING */

.vaslan-blog-heading{
    text-align:center;
    margin-bottom:80px;
}

.vaslan-blog-mini-title{
    display:inline-block;
    background:#ffe9e9;
    color:#ff3d3d;
    padding:12px 28px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:22px;
    letter-spacing:1px;
}

.vaslan-blog-main-title{
    font-size:64px;
    color:#0d347a;
    font-weight:800;
    margin-bottom:22px;
}

.vaslan-blog-main-title span{
    color:#ff6b00;
}

.vaslan-blog-subtitle{
    max-width:850px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#5f6783;
}

/* SLIDER */

.vaslan-blog-slider-wrapper{
    position:relative;
    overflow:hidden;
}

.vaslan-blog-slider-track{
    display:flex;
    gap:30px;
    transition:0.8s ease;
}

/* CARD */

.vaslan-blog-card{
    min-width:calc(33.333% - 20px);
    background:#fff;
    border-radius:35px;
    overflow:hidden;
    position:relative;
    transition:0.5s ease;
    box-shadow:0 15px 50px rgba(0,0,0,0.06);
}

.vaslan-blog-card:hover{
    transform:translateY(-15px);
    box-shadow:0 30px 70px rgba(0,0,0,0.12);
}

/* IMAGE */

.vaslan-blog-image-wrap{
    position:relative;
    height:270px;
    overflow:hidden;
}

.vaslan-blog-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.8s ease;
}

.vaslan-blog-card:hover img{
    transform:scale(1.12) rotate(2deg);
}

.vaslan-blog-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.1));
}

.vaslan-blog-category{
    position:absolute;
    top:22px;
    left:22px;
    background:#ff6b00;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    z-index:2;
}

/* CONTENT */

.vaslan-blog-content{
    padding:35px;
}

/* META */

.vaslan-blog-meta{
    display:flex;
    justify-content:space-between;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.vaslan-blog-meta span{
    font-size:14px;
    color:#667;
    font-weight:600;
}

.vaslan-blog-meta i{
    color:#ff6b00;
    margin-right:6px;
}

/* TITLE */

.vaslan-blog-title{
    font-size:30px;
    line-height:1.4;
    color:#0d347a;
    font-weight:800;
    margin-bottom:20px;
    transition:0.4s;
}

.vaslan-blog-card:hover .vaslan-blog-title{
    color:#ff6b00;
}

/* TEXT */

.vaslan-blog-text{
    color:#667;
    line-height:1.9;
    font-size:16px;
    margin-bottom:30px;
}

/* BUTTON */

.vaslan-blog-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#ff6b00;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
}

.vaslan-blog-btn:hover{
    gap:18px;
}

/* ARROWS */

.vaslan-blog-arrow{
    position:absolute;
    top:45%;
    transform:translateY(-50%);
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    z-index:20;
    cursor:pointer;
    font-size:22px;
    transition:0.4s;
}

.vaslan-blog-arrow:hover{
    background:#0d347a;
    color:#fff;
}

.vaslan-blog-prev{
    left:-5px;
}

.vaslan-blog-next{
    right:-5px;
}

/* TABLET */

@media(max-width:991px){

    .vaslan-blog-main-title{
        font-size:44px;
    }

    .vaslan-blog-card{
        min-width:calc(50% - 15px);
    }

}

/* MOBILE */

@media(max-width:767px){

    .vaslan-blog-section{
        padding:70px 15px;
    }

    .vaslan-blog-main-title{
        font-size:34px;
    }

    .vaslan-blog-subtitle{
        font-size:16px;
    }

    .vaslan-blog-card{
        min-width:100%;
    }

    .vaslan-blog-content{
        padding:25px;
    }

    .vaslan-blog-title{
        font-size:24px;
    }

    .vaslan-blog-arrow{
        width:50px;
        height:50px;
        font-size:18px;
    }

}



/* banner -section - animation */

.banner-hero-section{
    position:relative;
    width:100%;
    min-height:100vh;
    overflow:hidden;
    background:linear-gradient(135deg,#082567,#0b2f8a,#1447c4);
    padding:90px 6%;
    display:flex;
    align-items:center;
}

/* =========================================================
   BACKGROUND GLOW
========================================================= */

.banner-hero-bg-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    z-index:1;
}

.banner-hero-bg-circle-1{
    width:450px;
    height:450px;
    background:rgba(255,255,255,0.10);
    top:-120px;
    right:-100px;
}

.banner-hero-bg-circle-2{
    width:350px;
    height:350px;
    background:rgba(255,208,41,0.18);
    bottom:-100px;
    left:-120px;
}

.banner-hero-bg-circle-3{
    width:300px;
    height:300px;
    background:rgba(255,80,80,0.15);
    top:40%;
    left:40%;
}

/* =========================================================
   CONTAINER
========================================================= */

.banner-hero-container{
    width:100%;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:70px;
    position:relative;
    z-index:2;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.banner-hero-content{
    width:50%;
    padding-top:10px;
}

/* SMALL TAG */

.banner-hero-tag{
    display:inline-block;
    padding:14px 28px;
    background:rgba(255,255,255,0.10);
    color:#fff;
    border-radius:60px;
    font-size:15px;
    font-weight:600;
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.15);
    margin-bottom:30px;
    animation:bannerHeroFadeUp 1s ease;
}

/* TITLE */

.banner-hero-title{
    font-size:85px;
    line-height:1.05;
    font-weight:800;
    color:#fff;
    margin-bottom:30px;
    animation:bannerHeroFadeUp 1.2s ease;
}

.banner-hero-title span{
    display:block;
    color:#ffd029;
    position:relative;
}

/* UNDERLINE */

.banner-hero-title span::after{
    content:'';
    position:absolute;
    left:0;
    bottom:10px;
    width:100%;
    max-width:420px;
    height:12px;
    background:rgba(255,208,41,0.25);
}

/* DESCRIPTION */

.banner-hero-description{
    color:rgba(255,255,255,0.85);
    font-size:24px;
    line-height:1.9;
    max-width:700px;
    margin-bottom:45px;
    animation:bannerHeroFadeUp 1.4s ease;
}

/* =========================================================
   BUTTONS
========================================================= */

.banner-hero-buttons{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:60px;
}

/* BUTTON COMMON */

.banner-hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:22px 45px;
    border-radius:60px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

/* PRIMARY BUTTON */

.banner-hero-primary-btn{
    background:linear-gradient(135deg,#ff3d57,#ff6540);
    color:#fff;
    box-shadow:0 20px 40px rgba(255,61,87,0.35);
}

.banner-hero-primary-btn:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 60px rgba(255,61,87,0.45);
}

/* SECONDARY BUTTON */

.banner-hero-secondary-btn{
    border:1px solid rgba(255,255,255,0.20);
    color:#fff;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(15px);
}

.banner-hero-secondary-btn:hover{
    background:rgba(255,255,255,0.10);
    transform:translateY(-5px);
}

/* =========================================================
   COUNTER SECTION
========================================================= */

.banner-hero-counter-wrapper{
    display:flex;
    gap:25px;
}

/* COUNTER BOX */

.banner-hero-counter-box{
    min-width:180px;
    padding:30px;
    background:rgba(255,255,255,0.08);
    border-radius:24px;
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.10);
    transition:0.4s;
}

.banner-hero-counter-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.12);
}

/* COUNTER TEXT */

.banner-hero-counter-box h3{
    font-size:42px;
    color:#fff;
    margin-bottom:10px;
}

.banner-hero-counter-box p{
    color:rgba(255,255,255,0.75);
    font-size:17px;
}

/* =========================================================
   RIGHT IMAGE SECTION
========================================================= */

.banner-hero-right{
    width:50%;
    position:relative;
    display:flex;
    justify-content:flex-start;
    align-items:flex-start;
}

/* SLIDER */

.banner-hero-slider{
    width:100%;
    height:680px;
    position:relative;
    margin-top:-10px;
     border-radius:40px;
}

/* SLIDES */

.banner-hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transform:scale(1.08);
    transition:1s ease;
     border-radius:40px;
}

.banner-hero-slide.active{
    opacity:1;
    transform:scale(1);
     border-radius:40px;
}

/* IMAGE */

.banner-hero-slide img{
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
    filter:drop-shadow(0 40px 80px rgba(0,0,0,0.35));
    animation:bannerHeroImageFloat 5s ease-in-out infinite;
     border-radius:40px;
}

/* =========================================================
   FLOATING CARDS
========================================================= */

.banner-hero-floating-card{
    position:absolute;
    background:#fff;
    padding:22px 34px;
    border-radius:20px;
    font-size:20px;
    font-weight:700;
    color:#173982;
    box-shadow:0 25px 60px rgba(0,0,0,0.18);
    animation:bannerHeroCardFloat 4s ease-in-out infinite;
    z-index:5;
}

/* CARD POSITIONS */

.banner-hero-card-1{
    top:-100px;
    left:-30px;
}

.banner-hero-card-2{
    top:340px;
    right:-60px;
}

.banner-hero-card-3{
    bottom:50px;
    left:-10px;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes bannerHeroImageFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes bannerHeroCardFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes bannerHeroFadeUp{

    0%{
        opacity:0;
        transform:translateY(40px);
    }

    100%{
        opacity:1;
        transform:translateY(0px);
    }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1400px){

    .banner-hero-title{
        font-size:70px;
    }

}

@media(max-width:1200px){

    .banner-hero-container{
        flex-direction:column;
    }

    .banner-hero-content,
    .banner-hero-right{
        width:100%;
    }

    .banner-hero-slider{
        height:600px;
    }

}

@media(max-width:992px){

    .banner-hero-title{
        font-size:58px;
    }

    .banner-hero-description{
        font-size:20px;
    }

}

@media(max-width:768px){

    .banner-hero-section{
        padding:70px 20px;
    }

    .banner-hero-title{
        font-size:42px;
    }

    .banner-hero-description{
        font-size:17px;
        line-height:1.8;
    }

    .banner-hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .banner-hero-counter-wrapper{
        flex-direction:column;
    }

    .banner-hero-slider{
        height:420px;
        margin-top:40px;
    }

    .banner-hero-floating-card{
        font-size:14px;
        padding:14px 18px;
    }

    .banner-hero-card-1{
        left:0;
        top:-50px;
    }

    .banner-hero-card-2{
        right:0;
        top:150px;
    }

    .banner-hero-card-3{
        bottom:10px;
        left:0;
    }

}

@media(max-width:576px){

    .banner-hero-title{
        font-size:36px;
    }

    .banner-hero-btn{
        width:100%;
    }

    .banner-hero-counter-box{
        width:100%;
    }

}

/* about us page */

.vasan-about-hero{
    width:100%;
    min-height:100vh;
    background:
    linear-gradient(rgba(4,20,65,0.82),rgba(4,20,65,0.82)),
    url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:120px 6%;
    position:relative;
    overflow:hidden;
}

.vasan-about-hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,0.06);
    border-radius:50%;
    top:-200px;
    right:-150px;
    animation:float 8s linear infinite;
}

.vasan-about-hero::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,193,7,0.12);
    border-radius:50%;
    bottom:-150px;
    left:-100px;
    animation:float2 10s linear infinite;
}

.vasan-about-hero-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:70px;
    position:relative;
    z-index:2;
}

/* LEFT */

.vasan-about-left{
    width:55%;
}

.vasan-mini-title{
    display:inline-block;
    padding:14px 28px;
    background:rgba(255,255,255,0.12);
    color:#fff;
    border-radius:60px;
    font-weight:700;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

.vasan-about-left h1{
    font-size:76px;
    line-height:1.1;
    color:#fff;
    margin-bottom:30px;
    font-weight:800;
}

.vasan-about-left h1 span{
    color:#ffd029;
    display:block;
}

.vasan-about-left p{
    color:rgba(255,255,255,0.84);
    font-size:18px;
    line-height:1.9;
    margin-bottom:20px;
}

/* BUTTONS */

.vasan-about-btns{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.vasan-btn{
    padding:18px 38px;
    border-radius:60px;
    font-weight:700;
    transition:0.4s;
}

.vasan-btn-primary{
    background:linear-gradient(135deg,#ff3d57,#ff7b3d);
    color:#fff;
}

.vasan-btn-secondary{
    background:rgba(255,255,255,0.12);
    color:#fff;
    backdrop-filter:blur(10px);
}

.vasan-btn:hover{
    transform:translateY(-8px);
}

/* RIGHT */

.vasan-about-right{
    width:45%;
    position:relative;
}

.vasan-main-image{
    border-radius:40px;
    box-shadow:0 25px 70px rgba(0,0,0,0.35);
    animation:heroImage 5s ease-in-out infinite;
}

/* FLOATING BOX */

.vasan-floating-box{
    position:absolute;
    background:#fff;
    padding:18px 24px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    font-weight:700;
    color:#0b2f8a;
}

.box1{
    top:30px;
    left:-40px;
}

.box2{
    right:-30px;
    top:220px;
}

.box3{
    bottom:30px;
    left:40px;
}

/* ======================================================
   SECTION TITLE
====================================================== */

.vasan-section-title{
    text-align:center;
    margin-bottom:70px;
}

.vasan-section-title span{
    display:inline-block;
    background:#e9efff;
    color:#0b2f8a;
    padding:12px 26px;
    border-radius:60px;
    font-weight:700;
    margin-bottom:20px;
}

.vasan-section-title h2{
    font-size:58px;
    color:#0b2f8a;
    margin-bottom:20px;
}

.vasan-section-title p{
    max-width:850px;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:18px;
}

/* ======================================================
   COURSES
====================================================== */

.vasan-course-section{
    padding:120px 6%;
}

.vasan-course-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.vasan-course-card{
    background:#fff;
    border-radius:35px;
    overflow:hidden;
    transition:0.5s;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    position:relative;
}

.vasan-course-card:hover{
    transform:translateY(-15px);
}

.vasan-course-card:hover img{
    transform:scale(1.1);
}

.vasan-course-image-wrap{
    overflow:hidden;
}

.vasan-course-card img{
    height:250px;
    object-fit:cover;
    transition:0.5s;
}

.vasan-course-content{
    padding:35px;
}

.vasan-course-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#0b2f8a,#1753d8);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.vasan-course-icon i{
    color:#fff;
    font-size:34px;
}

.vasan-course-content h3{
    font-size:30px;
    margin-bottom:18px;
    color:#0b2f8a;
}

.vasan-course-content p{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

/* ======================================================
   WHY CHOOSE
====================================================== */

.vasan-why-section{
    padding:120px 6%;
    background:#081c4b;
}

.vasan-why-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.vasan-why-box{
    background:rgba(255,255,255,0.08);
    padding:45px 30px;
    border-radius:30px;
    backdrop-filter:blur(10px);
    transition:0.5s;
    text-align:center;
}

.vasan-why-box:hover{
    transform:translateY(-12px);
    background:#fff;
}

.vasan-why-box i{
    font-size:45px;
    color:#ffd029;
    margin-bottom:20px;
}

.vasan-why-box h3{
    color:#fff;
    font-size:26px;
    margin-bottom:18px;
}

.vasan-why-box p{
    color:#ddd;
    line-height:1.8;
}

.vasan-why-box:hover h3,
.vasan-why-box:hover p{
    color:#222;
}

/* ======================================================
   ACHIEVEMENT
====================================================== */

.vasan-achievement{
    padding:120px 6%;
    background:#fff;
}

.vasan-achievement-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.vasan-achievement-box{
    background:linear-gradient(135deg,#0b2f8a,#1753d8);
    border-radius:35px;
    padding:45px;
    text-align:center;
    color:#fff;
    transition:0.5s;
}

.vasan-achievement-box:hover{
    transform:translateY(-12px) scale(1.03);
}

.vasan-achievement-box h2{
    font-size:58px;
    margin-bottom:10px;
    color:#ffd029;
}

.vasan-achievement-box p{
    font-size:20px;
}

/* ======================================================
   CTA
====================================================== */

.vasan-cta{
    padding:120px 6%;
    background:
    linear-gradient(rgba(6,20,60,0.88),rgba(6,20,60,0.88)),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
    text-align:center;
}

.vasan-cta span{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    padding:14px 28px;
    border-radius:60px;
    color:#fff;
    font-weight:700;
    margin-bottom:25px;
}

.vasan-cta h2{
    font-size:62px;
    color:#fff;
    margin-bottom:25px;
}

.vasan-cta p{
    max-width:850px;
    margin:auto;
    color:#ddd;
    font-size:20px;
    line-height:1.9;
    margin-bottom:40px;
}

.vasan-contact{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:40px;
}

.vasan-contact a{
    color:#fff;
    font-size:26px;
    font-weight:700;
}

/* ======================================================
   ANIMATION
====================================================== */

@keyframes heroImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(20px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes float2{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:1200px){

    .vasan-about-hero-container{
        flex-direction:column;
    }

    .vasan-about-left,
    .vasan-about-right{
        width:100%;
    }

    .vasan-course-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vasan-why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vasan-achievement-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .vasan-about-hero,
    .vasan-course-section,
    .vasan-why-section,
    .vasan-achievement,
    .vasan-cta{
        padding:80px 20px;
    }

    .vasan-about-left h1,
    .vasan-section-title h2,
    .vasan-cta h2{
        font-size:42px;
    }

    .vasan-course-grid,
    .vasan-why-grid,
    .vasan-achievement-grid{
        grid-template-columns:1fr;
    }

    .vasan-about-btns{
        flex-direction:column;
    }

    .vasan-contact{
        flex-direction:column;
        gap:15px;
    }

    .vasan-floating-box{
        display:none;
    }

}

/* about us */
.vasan-about-hero{
    width:100%;
    min-height:100vh;
    background:
    linear-gradient(rgba(4,20,65,0.82),rgba(4,20,65,0.82)),
    url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:120px 6%;
    position:relative;
    overflow:hidden;
}

.vasan-about-hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,0.06);
    border-radius:50%;
    top:-200px;
    right:-150px;
    animation:float 8s linear infinite;
}

.vasan-about-hero::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,193,7,0.12);
    border-radius:50%;
    bottom:-150px;
    left:-100px;
    animation:float2 10s linear infinite;
}

.vasan-about-hero-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:70px;
    position:relative;
    z-index:2;
}

/* LEFT */

.vasan-about-left{
    width:55%;
}

.vasan-mini-title{
    display:inline-block;
    padding:14px 28px;
    background:rgba(255,255,255,0.12);
    color:#fff;
    border-radius:60px;
    font-weight:700;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

.vasan-about-left h1{
    font-size:76px;
    line-height:1.1;
    color:#fff;
    margin-bottom:30px;
    font-weight:800;
}

.vasan-about-left h1 span{
    color:#ffd029;
    display:block;
}

.vasan-about-left p{
    color:rgba(255,255,255,0.84);
    font-size:18px;
    line-height:1.9;
    margin-bottom:20px;
}

/* BUTTONS */

.vasan-about-btns{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.vasan-btn{
    padding:18px 38px;
    border-radius:60px;
    font-weight:700;
    transition:0.4s;
}

.vasan-btn-primary{
    background:linear-gradient(135deg,#ff3d57,#ff7b3d);
    color:#fff;
}

.vasan-btn-secondary{
    background:rgba(255,255,255,0.12);
    color:#fff;
    backdrop-filter:blur(10px);
}

.vasan-btn:hover{
    transform:translateY(-8px);
}

/* RIGHT */

.vasan-about-right{
    width:45%;
    position:relative;
}

.vasan-main-image{
    border-radius:40px;
    box-shadow:0 25px 70px rgba(0,0,0,0.35);
    animation:heroImage 5s ease-in-out infinite;
}

/* FLOATING BOX */

.vasan-floating-box{
    position:absolute;
    background:#fff;
    padding:18px 24px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    font-weight:700;
    color:#0b2f8a;
}

.box1{
    top:30px;
    left:-40px;
}

.box2{
    right:-30px;
    top:220px;
}

.box3{
    bottom:30px;
    left:40px;
}

/* ======================================================
   SECTION TITLE
====================================================== */

.vasan-section-title{
    text-align:center;
    margin-bottom:70px;
}

.vasan-section-title span{
    display:inline-block;
    background:#e9efff;
    color:#0b2f8a;
    padding:12px 26px;
    border-radius:60px;
    font-weight:700;
    margin-bottom:20px;
}

.vasan-section-title h2{
    font-size:58px;
    color:#0b2f8a;
    margin-bottom:20px;
}

.vasan-section-title p{
    max-width:850px;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:18px;
}

/* ======================================================
   COURSES
====================================================== */

.vasan-course-section{
    padding:120px 6%;
}

.vasan-course-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.vasan-course-card{
    background:#fff;
    border-radius:35px;
    overflow:hidden;
    transition:0.5s;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    position:relative;
}

.vasan-course-card:hover{
    transform:translateY(-15px);
}

.vasan-course-card:hover img{
    transform:scale(1.1);
}

.vasan-course-image-wrap{
    overflow:hidden;
}

.vasan-course-card img{
    height:250px;
    object-fit:cover;
    transition:0.5s;
     width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:30px;
}

.vasan-course-content{
    padding:35px;
}

.vasan-course-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#0b2f8a,#1753d8);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.vasan-course-icon i{
    color:#fff;
    font-size:34px;
}

.vasan-course-content h3{
    font-size:30px;
    margin-bottom:18px;
    color:#0b2f8a;
}

.vasan-course-content p{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

/* ======================================================
   WHY CHOOSE
====================================================== */

.vasan-why-section{
    padding:120px 6%;
    background:#081c4b;
}

.vasan-why-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.vasan-why-box{
    background:rgba(255,255,255,0.08);
    padding:45px 30px;
    border-radius:30px;
    backdrop-filter:blur(10px);
    transition:0.5s;
    text-align:center;
}

.vasan-why-box:hover{
    transform:translateY(-12px);
    background:#fff;
}

.vasan-why-box i{
    font-size:45px;
    color:#ffd029;
    margin-bottom:20px;
}

.vasan-why-box h3{
    color:#fff;
    font-size:26px;
    margin-bottom:18px;
}

.vasan-why-box p{
    color:#ddd;
    line-height:1.8;
}

.vasan-why-box:hover h3,
.vasan-why-box:hover p{
    color:#222;
}

/* ======================================================
   ACHIEVEMENT
====================================================== */

.vasan-achievement{
    padding:120px 6%;
    background:#fff;
}

.vasan-achievement-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.vasan-achievement-box{
    background:linear-gradient(135deg,#0b2f8a,#1753d8);
    border-radius:35px;
    padding:45px;
    text-align:center;
    color:#fff;
    transition:0.5s;
}

.vasan-achievement-box:hover{
    transform:translateY(-12px) scale(1.03);
}

.vasan-achievement-box h2{
    font-size:58px;
    margin-bottom:10px;
    color:#ffd029;
}

.vasan-achievement-box p{
    font-size:20px;
}

/* ======================================================
   CTA
====================================================== */

.vasan-cta{
    padding:120px 6%;
    background:
    linear-gradient(rgba(6,20,60,0.88),rgba(6,20,60,0.88)),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
    text-align:center;
}

.vasan-cta span{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    padding:14px 28px;
    border-radius:60px;
    color:#fff;
    font-weight:700;
    margin-bottom:25px;
}

.vasan-cta h2{
    font-size:62px;
    color:#fff;
    margin-bottom:25px;
}

.vasan-cta p{
    max-width:850px;
    margin:auto;
    color:#ddd;
    font-size:20px;
    line-height:1.9;
    margin-bottom:40px;
}

.vasan-contact{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:40px;
}

.vasan-contact a{
    color:#fff;
    font-size:26px;
    font-weight:700;
}

/* ======================================================
   ANIMATION
====================================================== */

@keyframes heroImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(20px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes float2{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:1200px){

    .vasan-about-hero-container{
        flex-direction:column;
    }

    .vasan-about-left,
    .vasan-about-right{
        width:100%;
    }

    .vasan-course-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vasan-why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vasan-achievement-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .vasan-about-hero,
    .vasan-course-section,
    .vasan-why-section,
    .vasan-achievement,
    .vasan-cta{
        padding:80px 20px;
    }

    .vasan-about-left h1,
    .vasan-section-title h2,
    .vasan-cta h2{
        font-size:42px;
    }

    .vasan-course-grid,
    .vasan-why-grid,
    .vasan-achievement-grid{
        grid-template-columns:1fr;
    }

    .vasan-about-btns{
        flex-direction:column;
    }

    .vasan-contact{
        flex-direction:column;
        gap:15px;
    }

    .vasan-floating-box{
        display:none;
    }

}

/* distance -education */

.decourse-section{
    position:relative;
    padding:100px 0;
    overflow:hidden;
}

.decourse-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.decourse-hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:120px;
}

.decourse-badge{
    display:inline-block;
    background:#0b3a8f;
    color:#fff;
    padding:12px 26px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.decourse-content h1{
    font-size:62px;
    line-height:1.15;
    margin-bottom:25px;
    font-weight:800;
}

.decourse-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:35px;
}

.decourse-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.decourse-btn-primary{
    background:#0b3a8f;
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.decourse-btn-primary:hover{
    transform:translateY(-5px);
}

.decourse-btn-outline{
    border:2px solid #0b3a8f;
    color:#0b3a8f;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.decourse-btn-outline:hover{
    background:#0b3a8f;
    color:#fff;
}

.decourse-image img{
    width:100%;
    height:950px;
    object-fit:cover;
    border-radius:35px;
    box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.decourse-about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:120px;
}

.decourse-about-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:30px;
}

.decourse-subtitle{
    color:#0b3a8f;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
    display:block;
}

.decourse-about-content h2{
    font-size:46px;
    margin-bottom:25px;
}

.decourse-about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.decourse-list{
    list-style:none;
    margin-top:25px;
}

.decourse-list li{
    margin-bottom:14px;
    font-weight:500;
    color:#222;
}

/* =========================================================
   WHY US
========================================================= */

.decourse-heading{
    text-align:center;
    margin-bottom:70px;
}

.decourse-heading h2{
    font-size:48px;
    margin-top:10px;
}

.decourse-why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-bottom:120px;
}

.decourse-card{
    background:#fff;
    padding:40px 30px;
    border-radius:30px;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.decourse-card:hover{
    transform:translateY(-10px);
}

.decourse-icon{
    width:80px;
    height:80px;
    background:#0b3a8f;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:#fff;
    margin-bottom:25px;
}

.decourse-card h3{
    font-size:24px;
    margin-bottom:18px;
}

.decourse-card p{
    color:#666;
    line-height:1.8;
}

/* =========================================================
   PROGRAMMES
========================================================= */

.decourse-program-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-bottom:120px;
}

.decourse-program-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.decourse-program-card:hover{
    transform:translateY(-10px);
}

.decourse-program-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.decourse-program-content{
    padding:35px;
}

.decourse-program-content h3{
    font-size:30px;
    margin-bottom:10px;
}

.decourse-program-duration{
    color:#0b3a8f;
    font-weight:600;
    margin-bottom:20px;
    display:block;
}

.decourse-program-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
}

.decourse-program-list{
    list-style:none;
    margin-bottom:30px;
}

.decourse-program-list li{
    margin-bottom:12px;
    color:#222;
    font-weight:500;
}

.decourse-readmore{
    display:inline-block;
    background:#0b3a8f;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
}

/* =========================================================
   FEATURES SECTION
========================================================= */

.decourse-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:120px;
}

.decourse-features-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:30px;
}

.decourse-features-content h2{
    font-size:46px;
    margin-bottom:30px;
}

.decourse-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.decourse-feature-box{
    background:#fff;
    padding:30px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.decourse-feature-box h4{
    margin-bottom:15px;
    font-size:22px;
}

.decourse-feature-box p{
    color:#666;
    line-height:1.7;
}

/* =========================================================
   CTA SECTION
========================================================= */

.decourse-cta{
    background:linear-gradient(135deg,#0b3a8f,#0056d6);
    padding:80px;
    border-radius:40px;
    text-align:center;
    color:#fff;
}

.decourse-cta h2{
    font-size:52px;
    margin-bottom:20px;
    color: #ffffff;
}

.decourse-cta p{
    font-size:18px;
    line-height:1.9;
    max-width:850px;
    margin:auto auto 35px;
}

.decourse-cta-btn{
    display:inline-block;
    background:#fff;
    color:#0b3a8f;
    padding:18px 36px;
    border-radius:50px;
    font-weight:700;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .decourse-hero,
    .decourse-about,
    .decourse-features{
        grid-template-columns:1fr;
    }

    .decourse-program-grid{
        grid-template-columns:1fr;
    }

    .decourse-why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .decourse-content h1{
        font-size:46px;
    }

}

@media(max-width:768px){

    .decourse-why-grid,
    .decourse-feature-grid{
        grid-template-columns:1fr;
    }

    .decourse-heading h2,
    .decourse-about-content h2,
    .decourse-features-content h2,
    .decourse-cta h2{
        font-size:34px;
    }

    .decourse-content h1{
        font-size:36px;
    }

    .decourse-image img,
    .decourse-about-image img,
    .decourse-features-image img{
        height:auto;
    }

    .decourse-cta{
        padding:50px 30px;
    }

}


/* course -catering */
/* ===== SECTION ===== */
.course-catering-section {
    width:100%;
}

/* ===== HERO ===== */
.course-catering-section-hero {
    width:100%;
    min-height:100vh;
    background:linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1556910103-1c02745aae4d');
    background-size:auto;
    background-position:center;
    color:white;
    display:flex;
    align-items:center;
    padding:60px;
}

.course-catering-section-hero-content {
    max-width:700px;
    animation:fadeUp 1s ease;
}

.course-catering-section-hero h1 {
    font-size:60px;
    margin:0;
}

.course-catering-section-hero span {
    color:#f39c12;
}

.course-catering-section-hero p {
    font-size:20px;
    margin:20px 0;
}

.hero-btn {
    background:#f39c12;
    padding:12px 30px;
    color:white;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
}

/* ===== COURSES ===== */
.course-catering-section-course {
    width:100%;
    padding:80px 60px;
    display:flex;
    align-items:center;
    gap:50px;
}

.course-catering-section-course:nth-child(even){
    background:#ffffff;
}

.course-catering-section-course:nth-child(odd){
    background:#eef2f7;
}

.course-image img {
    width:100%;
    max-width:500px;
    border-radius:10px;
}

.course-content {
    max-width:600px;
}

.course-content h2 {
    font-size:40px;
    color:#0a3d62;
}

.course-content ul {
    padding-left:20px;
}

.course-content li {
    margin-bottom:10px;
    font-size:18px;
}

/* ===== FEATURES ===== */
.course-catering-section-features {
    background:#0a3d62;
    color:white;
    padding:80px 40px;
    text-align:center;
}

.feature-grid {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    margin-top:30px;
}

.feature-grid div {
    width:220px;
    font-size:18px;
}

/* ===== CTA ===== */
.course-catering-section-cta {
    background:url('https://images.unsplash.com/photo-1581091215367-59ab6b6e3a2b');
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.course-catering-section-cta h2 {
    font-size:40px;
}

/* ===== FOOTER ===== */
.course-catering-section-footer {
    background:#002147;
    color:white;
    text-align:center;
    padding:30px;
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
    from {opacity:0; transform:translateY(30px);}
    to {opacity:1; transform:translateY(0);}
}

/* HERO SECTION */
.catering-hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* IMAGE FIX */
.catering-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* 🔥 KEY FIX (no cut) */
  object-position: center;
  background: #000;
}

/* OVERLAY */
.catering-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
}

/* CONTENT */
.catering-hero-content {
  color: #fff;
  max-width: 600px;
  padding-left: 80px;
}

.catering-hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.catering-hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
}

/* BUTTON */
.catering-btn {
  background: #ff4d00;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
}

/* 🔥 MOBILE FIX */
@media(max-width:768px){

  .catering-hero {
    height: auto;
  }

  .catering-hero-image img {
    height: auto;
    object-fit: contain; /* show full image */
  }

  .catering-hero-overlay {
    position: static;
    background: #000;
    padding: 20px;
  }

  .catering-hero-content {
    padding: 0;
    text-align: center;
  }

  .catering-hero-content h1 {
    font-size: 26px;
  }

  .catering-hero-content p {
    font-size: 16px;
  }

}



.cateringitext-animation-wrapper {
  width: 100%;
  text-align: center;
 
  padding: 20px;
}

/* TEXT */
.cateringitext-animation {
  color: #0d47a1;
  font-size: 30px;
  font-weight: 600;

  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #fff;
  width: 0;

  animation: 
    typing 4s steps(25) infinite,
    blink 0.8s infinite;
}

/* TYPING EFFECT */
@keyframes typing {
  0% { width: 0 }
  50% { width: 100% }
  100% { width: 0 }   /* 🔥 makes it loop */
}

/* CURSOR BLINK */
@keyframes blink {
  0%, 100% { border-color: #fff; }
  50% { border-color: transparent; }
}


/* latest card */
/* CARD BASE */
.catering-college-card {
  perspective: 1000px;
}

/* INNER */
.catering-college-inner {
  position: relative;
  width: 100%;
  height: 300px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* HOVER FLIP */
.catering-college-card:hover .catering-college-inner {
  transform: rotateY(180deg);
}

/* FRONT & BACK */
.catering-college-front,
.catering-college-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* FRONT DESIGN */
.catering-college-front {
  background: #fff;
}

.catering-college-front h3 {
  padding: 15px;
}

/* IMAGE */
.catering-college-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* BACK DESIGN */
.catering-college-back {
  background: linear-gradient(135deg, #ff4d00, #ff7a00);
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* BUTTON */
.catering-btn {
  margin-top: 10px;
  background: #fff;
  color: #000000;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}


/* SECTION */
.catering-special-section {
  padding: 60px 20px;

  color: #fff;
}

.catering-special-container {
  max-width: 1200px;
  margin: auto;
}

.catering-special-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID */
.catering-special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.catering-special-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

/* IMAGE BOX */
.catering-special-img-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s;
}

/* CONTENT */
.catering-special-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
background: #333333;
  transition: 0.5s;
}

.catering-special-content h3 {
  margin: 0;
  color: #ffffff;
}

.catering-special-content p {
  font-size: 14px;
}

/* 🔥 HOVER EFFECT */
.catering-special-card:hover img {
  transform: scale(1.2);
  filter: brightness(0.6);
}

.catering-special-card:hover .catering-special-content {
  bottom: 0;
}

/* 🔥 GLOW BORDER */
.catering-special-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: 0.4s;
}

.catering-special-card:hover::before {
  border: 2px solid #ff4d00;
  box-shadow: 0 0 20px #ff4d00;
}


/* SECTION */
.catering-info-course-section {
  padding: 60px 20px;
  background: #f8fafc;

}

/* CONTAINER */
.catering-info-course-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.catering-info-course-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* SUBTITLE */
.catering-info-course-subtitle {
  margin: 30px 0 15px;
  font-size: 20px;
  color: #444;
}

/* GRID */
.catering-info-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

/* CARD */
.catering-info-course-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #222;

  border: 1px solid #eee;

  transition: all 0.35s ease;

  /* animation */
  opacity: 0;
  transform: translateY(30px);
  animation: cateringInfoFade 0.6s forwards;
}

/* STAGGER */
.catering-info-course-card:nth-child(1){animation-delay:0.1s;}
.catering-info-course-card:nth-child(2){animation-delay:0.2s;}
.catering-info-course-card:nth-child(3){animation-delay:0.3s;}
.catering-info-course-card:nth-child(4){animation-delay:0.4s;}
.catering-info-course-card:nth-child(5){animation-delay:0.5s;}
.catering-info-course-card:nth-child(6){animation-delay:0.6s;}
.catering-info-course-card:nth-child(7){animation-delay:0.7s;}
.catering-info-course-card:nth-child(8){animation-delay:0.8s;}

/* ANIMATION */
@keyframes cateringInfoFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HOVER (CLEAN PREMIUM) */
.catering-info-course-card:hover {
  transform: translateY(-6px);
  border-color: #ff4d00;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* LEFT ACCENT LINE */
.catering-info-course-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #ff4d00;
  border-radius: 10px 0 0 10px;
  transform: scaleY(0);
  transition: 0.3s;
}

.catering-info-course-card:hover::before {
  transform: scaleY(1);
}

/* FIX POSITION */
.catering-info-course-card {
  position: relative;
}

/* MOBILE */
@media(max-width:768px){
  .catering-info-course-title {
    font-size: 26px;
  }
}


/* SECTION BASE */
.catering-info-features-section {
  padding: 70px 20px;
  background: #0f172a;
  color: #fff;
}

/* LIGHT VERSION */
.catering-info-features-section.light {
  background: #f8fafc;
  color: #222;
}

/* CONTAINER */
.catering-info-features-container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.catering-info-features-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: 700;
      color: #333333;
}
.txt-white
{
    color:#ffffff;
}

/* GRID */
.catering-info-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* BOX */
.catering-info-features-box {
  padding: 25px;
  border-radius: 12px;
  position: relative;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(255,255,255,0.1);

  transition: all 0.4s ease;

  /* animation */
  opacity: 0;
  transform: translateY(40px);
  animation: featuresFade 0.8s forwards;
}

/* LIGHT FIX */
.catering-info-features-section.light .catering-info-features-box {
  background: #fff;
  border: 1px solid #eee;
}

/* STAGGER */
.catering-info-features-box:nth-child(1){animation-delay:0.2s;}
.catering-info-features-box:nth-child(2){animation-delay:0.4s;}

/* LIST */
.catering-info-features-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.catering-info-features-box li {
  padding: 12px 0 12px 28px;
  position: relative;
  font-size: 15px;
}

/* CUSTOM ICON */
.catering-info-features-box li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 10px;
  color: #ff4d00;
  font-weight: bold;
  font-size: 14px;
}

/* 🔥 HOVER EFFECT */
.catering-info-features-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* 🔥 LEFT ACCENT LINE */
.catering-info-features-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ff4d00;
  border-radius: 10px 0 0 10px;
  transform: scaleY(0);
  transition: 0.4s;
}

.catering-info-features-box:hover::after {
  transform: scaleY(1);
}

/* ENTRY ANIMATION */
@keyframes featuresFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media(max-width:768px){
  .catering-info-features-title {
    font-size: 24px;
  }
}

/* SECTION */
.catering-info-testimonial-section {
  padding: 70px 20px;
  background: #f8fafc;
}

/* CONTAINER */
.catering-info-testimonial-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.catering-info-testimonial-title {
  font-size: 32px;
  margin-bottom: 40px;
}

/* SLIDER */
.catering-info-testimonial-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.catering-info-testimonial-track {
  display: flex;
  width: calc(300px * 8);
  animation: testimonialSlide 20s linear infinite;
}

/* CARD */
.catering-info-testimonial-card {
  width: 300px;
  margin: 0 10px;
  padding: 25px;
  border-radius: 15px;
  background: #fff;
  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* ICON */
.catering-info-testimonial-icon {
  font-size: 35px;
  margin-bottom: 10px;
}

/* TEXT */
.catering-info-testimonial-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* NAME */
.catering-info-testimonial-card h4 {
  margin: 5px 0;
}

/* ROLE */
.catering-info-testimonial-card span {
  font-size: 13px;
  color: #ff4d00;
}

/* HOVER */
.catering-info-testimonial-card:hover {
  transform: translateY(-8px);
}

/* AUTO SLIDE */
@keyframes testimonialSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* MOBILE */
@media(max-width:768px){
  .catering-info-testimonial-track {
    animation-duration: 30s;
  }
}
.catering-info-testimonial-track {
  display: flex;
  width: max-content;
  animation: testimonialSlide 20s linear infinite;
}

/* 🔥 PERFECT LOOP */
@keyframes testimonialSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTION */
.catering-gallery-info-section {
  padding: 70px 20px;
  background: #0f172a;
}

/* CONTAINER */
.catering-gallery-info-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.catering-gallery-info-title {
  text-align: center;
  color: #fff;
  font-size: 30px;
  margin-bottom: 40px;
}

/* SLIDER */
.catering-gallery-info-slider {
  overflow: hidden;
}

/* TRACK */
.catering-gallery-info-track {
  display: flex;
  width: max-content;
  animation: gallerySlide 25s linear infinite;
}

/* CARD */
.catering-gallery-info-card {
  width: 280px;
  height: 200px;
  margin: 0 10px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

/* IMAGE */
.catering-gallery-info-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* OVERLAY */
.catering-gallery-info-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 14px;
  text-align: center;
}

/* HOVER EFFECT */
.catering-gallery-info-card:hover img {
  transform: scale(1.1);
}

/* ANIMATION */
@keyframes gallerySlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* PAUSE ON HOVER */
.catering-gallery-info-slider:hover .catering-gallery-info-track {
  animation-play-state: paused;
}

/* MOBILE */
@media(max-width:768px){
  .catering-gallery-info-card {
    width: 220px;
    height: 160px;
  }

  .catering-gallery-info-title {
    font-size: 24px;
  }
}
/* fire and safety */

.fire-course-section-hero{
    width:100%;
    min-height:100vh;
    background:linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1581091870627-3f8cdb6f3b8c');
    background-size:cover;
    background-position:center;
    color:white;
    display:flex;
    align-items:center;
    padding:60px;
}

.fire-course-section-hero-content{
    max-width:700px;
    animation:fadeUp 1s ease;
}

.fire-course-section-hero h1{
    font-size:60px;
    margin:0;
}

.fire-course-section-hero h1 span{
    color:#ff3b3b;
}

.fire-course-section-hero p{
    font-size:20px;
    margin:20px 0;
}

/* CONTACT BAR */
.fire-course-section-contact{
    background:#ff3b3b;
    color:white;
    text-align:center;
    padding:15px;
    font-size:20px;
    font-weight:bold;
}

/* COURSE SECTION */
.fire-course-section-main{
    display:flex;
    flex-wrap:wrap;
    padding:80px 60px;
    gap:50px;
    align-items:center;
}

.fire-course-section-content{
    flex:1;
}

.fire-course-section-content h2{
    font-size:45px;
    color:#002147;
}

.fire-course-section-content ul{
    padding-left:20px;
}

.fire-course-section-content li{
    font-size:18px;
    margin-bottom:10px;
}

/* IMAGE */
.fire-course-section-image{
    flex:1;
    text-align:center;
}

.fire-course-section-image img{
    width:100%;
    max-width:450px;
    animation:float 3s infinite;
}

/* BADGE */
.fire-course-section-badge{
    background:gold;
    color:black;
    padding:15px 25px;
    border-radius:50px;
    display:inline-block;
    margin-top:20px;
    font-weight:bold;
}

/* FEATURES */
.fire-course-section-features{
    background:#002147;
    color:white;
    padding:80px 40px;
    text-align:center;
}

.fire-course-section-features h2{
    font-size:40px;
}

.feature-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    margin-top:30px;
}

.feature-grid div{
    width:220px;
    font-size:18px;
}

/* CTA */
.fire-course-section-cta{
    background:url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:white;
    padding:80px 20px;
}

.fire-course-section-cta h2{
    font-size:40px;
}

/* FOOTER */
.fire-course-section-footer{
    background:#111;
    color:white;
    text-align:center;
    padding:30px;
}

/* ANIMATION */
@keyframes fadeUp{
    from{opacity:0; transform:translateY(30px);}
    to{opacity:1; transform:translateY(0);}
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}
}


/* catering-college */

.catering-college-container{width:90%;max-width:1200px;margin:auto;}

/* HERO */
.catering-college-hero{
height:100vh;
background:url('../images/banner/vasan-catering-college.jpg') center/cover;
display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;
}
.catering-college-hero h1{font-size:45px;margin-bottom:10px;}
.catering-college-hero p{font-size:18px;}
.catering-college-btn{
margin-top:20px;padding:12px 30px;background:#ff6600;border:none;color:#fff;
border-radius:6px;cursor:pointer;
}

/* SECTION */
.catering-college-section{padding:80px 0;}
.catering-college-title{text-align:center;font-size:34px;margin-bottom:40px;}

/* GRID */
.catering-college-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

/* CARD */
.catering-college-card{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}
.catering-college-card:hover{
transform:translateY(-8px);
}

/* DARK */
.catering-college-dark{
background:#0f172a;
color:#fff;
}
.catering-college-dark .catering-college-card{
background:#1e293b;
color:#fff;
}

/* LIST */
.catering-college-list li{
margin:12px 0;
font-size:16px;
}

/* TWO COLUMN */
.catering-college-flex{
display:flex;
gap:40px;
flex-wrap:wrap;
}
.catering-college-flex div{
flex:1;
min-width:280px;
}

/* TESTIMONIAL */
.catering-college-testimonial{
max-width:700px;
margin:auto;
background:#fff;
padding:40px;
border-radius:12px;
text-align:center;
font-size:18px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* ANIMATION */
.catering-college-hidden{
opacity:0;
transform:translateY(50px);
transition:0.8s;
}
.catering-college-show{
opacity:1;
transform:translateY(0);
}


.catering-college-img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:15px;
}

.catering-slider-section{
  padding:60px 0;
  background:#f8fafc;
}

.catering-slider-container{
  max-width:1000px;
  margin:auto;
  overflow:hidden;
  border-radius:15px;
}

.catering-slider-track{
  display:flex;
  width:100%;
  animation:catering-slider-scroll 20s linear infinite;
}

.catering-slider-track img{
  width:100%;
  min-width:100%;
  height:450px;
  object-fit:cover;
}

/* AUTO SLIDE ANIMATION */
@keyframes catering-slider-scroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-500%); }
}


/* nursing -course */

.course-section-nursing {
  padding: 50px 20px;
  background: #f5f7fb;
  font-family: 'Poppins', sans-serif;
}

.course-section-nursing-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.course-section-nursing-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
}

/* SIDEBAR */
.course-section-nursing-sidebar {
  background: linear-gradient(180deg, #4b0082, #7b2cbf);
  color: #fff;
  padding: 25px;
  border-radius: 12px;
}

.course-section-nursing-sidebar h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.course-section-nursing-sidebar .sub {
  font-size: 14px;
  margin-bottom: 20px;
}

.course-section-nursing-sidebar ul {
  list-style: none;
  padding: 0;
}

.course-section-nursing-sidebar li {
  margin: 12px 0;
  font-size: 15px;
}

.contact-box {
  margin-top: 25px;
  background: #fff;
  color: #333;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

/* CONTENT */
.course-section-nursing-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

.course-section-nursing-content h1 {
  color: #4b0082;
  font-size: 32px;
}

.course-section-nursing-content h2 {
  font-size: 18px;
  margin-bottom: 15px;
}

.seo-text {
  font-size: 15px;
  margin-bottom: 10px;
}

.seo-tamil {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
}

/* HIGHLIGHTS */
.course-section-nursing-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.course-section-nursing-highlights div {
  background: #f0e6ff;
  padding: 10px;
  border-radius: 8px;
}

/* IMAGE */
.course-section-nursing-image img {
  width: 100%;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .course-section-nursing-grid {
    grid-template-columns: 1fr;
  }
}


/* solar-training */

.solar-training-section {
  padding: 50px 20px;
  background: #f4f9f4;
  font-family: 'Poppins', sans-serif;
}

.solar-training-container {
  max-width: 1200px;
  margin: auto;
}

.solar-training-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 25px;
}

/* SIDEBAR */
.solar-training-sidebar {
  background: linear-gradient(180deg, #0a3d62, #1e8449);
  color: #fff;
  padding: 25px;
  border-radius: 12px;
}

.solar-training-sidebar h2 {
  margin-bottom: 10px;
}

.solar-training-sidebar ul {
  list-style: none;
  padding: 0;
}

.solar-training-sidebar li {
  margin: 10px 0;
  font-size: 14px;
}

.solar-contact {
  margin-top: 20px;
  background: #fff;
  color: #333;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}

/* CONTENT */
.solar-training-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

.solar-training-content h1 {
  color: #1e8449;
  font-size: 32px;
}

.solar-training-content h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.seo-text {
  margin-bottom: 10px;
}

.seo-tamil {
  margin-bottom: 20px;
}

/* HIGHLIGHTS */
.solar-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.solar-highlights div {
  background: #eafaf1;
  padding: 10px;
  border-radius: 8px;
}

/* CTA */
.solar-cta {
  margin-top: 20px;
  background: #27ae60;
  color: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
  .solar-training-grid {
    grid-template-columns: 1fr;
  }
}

/* drone-training * /

.drone-course-section {
  font-family: Poppins, sans-serif;
  background: #fff;
  padding: 20px;
}

/* CONTAINER */
.drone-container {
  width: 1000px;
  margin: 0 auto;
}

/* HEADER */
.drone-header {
  text-align: center;
  margin-bottom: 20px;
}

/* MAIN FIX */
.drone-main {
  overflow: hidden;
}

/* LEFT */
.drone-left {
  float: left;
  width: 30%;
  background: #003366;
  color: #fff;
  padding: 15px;
  box-sizing: border-box;
}

/* RIGHT */
.drone-right {
  float: right;
  width: 68%;
  background: #f5f5f5;
  padding: 15px;
  box-sizing: border-box;
}

/* BULLET FIX */
.drone-left ul,
.drone-feature-list {
  padding-left: 20px;
  margin: 10px 0;
}

.drone-left li,
.drone-feature-list li {
  margin-bottom: 8px;
}

/* CAREER SECTION */
.drone-career {
  margin-top: 30px;
}

/* GRID FIX */
.career-grid {
  overflow: hidden;
}

/* BOX ALIGNMENT */
.career-grid div {
  float: left;
  width: 30%;
  margin: 1.5%;
  background: #eef;
  padding: 12px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-weight: bold;
}

/* CLEAR FIX */
.drone-course-section:after {
  content: "";
  display: block;
  clear: both;
}

/* MOBILE */
@media (max-width: 768px) {
  .drone-container {
    width: 100%;
  }

  .drone-left,
  .drone-right {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }

  .career-grid div {
    width: 100%;
    margin: 5px 0;
  }
}

/* ev training */

.ev-course-section {
  font-family: Poppins, sans-serif;
  background: #fff;
  padding: 20px;
}

/* CONTAINER */
.ev-container {
  width: 1000px;
  margin: 0 auto;
}

/* HEADER */
.ev-header {
  text-align: center;
  margin-bottom: 20px;
}

/* MAIN FIX */
.ev-main {
  overflow: hidden;
}

/* LEFT */
.ev-left {
  float: left;
  width: 30%;
  background: #0a3d62;
  color: #fff;
  padding: 15px;
  box-sizing: border-box;
}

/* RIGHT */
.ev-right {
  float: right;
  width: 68%;
  background: #f5f5f5;
  padding: 15px;
  box-sizing: border-box;
}

/* BULLETS */
.ev-left ul,
.ev-features {
  padding-left: 20px;
}

.ev-left li,
.ev-features li {
  margin-bottom: 8px;
}

/* GRID (SPECIAL + WHY) */
.ev-grid {
  overflow: hidden;
  margin-top: 10px;
}

.ev-grid div {
  float: left;
  width: 30%;
  margin: 1.5%;
  background: #eef;
  padding: 12px;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* SECTION SPACE */
.ev-special,
.ev-why {
  margin-top: 30px;
}

/* CTA */
.ev-cta {
  margin-top: 25px;
  background: #cc0000;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: bold;
}

/* CLEAR FIX */
.ev-course-section:after {
  content: "";
  display: block;
  clear: both;
}

/* MOBILE */
@media (max-width: 768px) {
  .ev-container {
    width: 100%;
  }

  .ev-left,
  .ev-right {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }

  .ev-grid div {
    width: 100%;
    margin: 5px 0;
  }
}

/* gold appraisal */

.gold-course-section {
  font-family: Arial, sans-serif;
  background: #fff;
  padding: 20px;
}

/* CONTAINER */
.gold-container {
  width: 1000px;
  margin: 0 auto;
}

/* HEADER */
.gold-header {
  text-align: center;
  margin-bottom: 20px;
}

/* MAIN */
.gold-main {
  overflow: hidden;
}

/* LEFT */
.gold-left {
  float: left;
  width: 30%;
  background: #1b1b2f;
  color: #fff;
  padding: 15px;
  box-sizing: border-box;
}

/* RIGHT */
.gold-right {
  float: right;
  width: 68%;
  background: #f9f9f9;
  padding: 15px;
  box-sizing: border-box;
}

/* LIST */
.gold-left ul,
.gold-features {
  padding-left: 20px;
}

.gold-left li,
.gold-features li {
  margin-bottom: 8px;
}

/* GRID */
.gold-grid {
  overflow: hidden;
  margin-top: 10px;
}

.gold-grid div {
  float: left;
  width: 30%;
  margin: 1.5%;
  background: #fff3cd;
  padding: 12px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

/* SECTION SPACING */
.gold-special,
.gold-why {
  margin-top: 30px;
}

/* CTA */
.gold-cta {
  margin-top: 25px;
  background: #cc0000;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: bold;
}

/* CLEAR */
.gold-course-section:after {
  content: "";
  display: block;
  clear: both;
}

/* MOBILE */
@media (max-width: 768px) {
  .gold-container {
    width: 100%;
  }

  .gold-left,
  .gold-right {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }

  .gold-grid div {
    width: 100%;
    margin: 5px 0;
  }
}

/* fire*/

.fire-course-section {
  font-family: Arial, sans-serif;
  background: #fff;
  padding: 20px;
}

/* CONTAINER */
.fire-container {
  width: 1000px;
  margin: 0 auto;
}

/* HEADER */
.fire-header {
  text-align: center;
  margin-bottom: 20px;
}

.fire-header h1 {
  color: #cc0000;
}

/* MAIN */
.fire-main {
  overflow: hidden;
}

/* LEFT */
.fire-left {
  float: left;
  width: 30%;
  background: #0b3d91;
  color: #fff;
  padding: 15px;
  box-sizing: border-box;
}

/* RIGHT */
.fire-right {
  float: right;
  width: 68%;
  background: #f4f4f4;
  padding: 15px;
  box-sizing: border-box;
}

/* LIST */
.fire-left ul,
.fire-features {
  padding-left: 20px;
}

.fire-left li,
.fire-features li {
  margin-bottom: 8px;
}

/* GRID */
.fire-grid {
  overflow: hidden;
  margin-top: 10px;
}

.fire-grid div {
  float: left;
  width: 30%;
  margin: 1.5%;
  background: #ffe6e6;
  padding: 12px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* SECTIONS */
.fire-special,
.fire-why {
  margin-top: 30px;
}

/* CTA */
.fire-cta {
  margin-top: 25px;
  background: #cc0000;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: bold;
}

/* CLEAR FIX */
.fire-course-section:after {
  content: "";
  display: block;
  clear: both;
}

/* MOBILE */
@media (max-width: 768px) {
  .fire-container {
    width: 100%;
  }

  .fire-left,
  .fire-right {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }

  .fire-grid div {
    width: 100%;
    margin: 5px 0;
  }
}


/* ac technician */

.ac-technician-course {
  font-family: Arial, sans-serif;
  background: #fff;
  padding: 20px;
}

/* CONTAINER */
.ac-technician-container {
  width: 1000px;
  margin: 0 auto;
}

/* HEADER */
.ac-technician-header {
  text-align: center;
  margin-bottom: 20px;
}

.ac-technician-header h1 {
  color: #0b3d91;
}

/* MAIN */
.ac-technician-main {
  overflow: hidden;
}

/* LEFT */
.ac-technician-left {
  float: left;
  width: 30%;
  background: #0b3d91;
  color: #fff;
  padding: 15px;
  box-sizing: border-box;
}

/* RIGHT */
.ac-technician-right {
  float: right;
  width: 68%;
  background: #f4f4f4;
  padding: 15px;
  box-sizing: border-box;
}

/* LIST */
.ac-technician-left ul,
.ac-technician-features {
  padding-left: 20px;
}

.ac-technician-left li,
.ac-technician-features li {
  margin-bottom: 8px;
}

/* GRID */
.ac-technician-grid {
  overflow: hidden;
  margin-top: 10px;
}

.ac-technician-grid div {
  float: left;
  width: 30%;
  margin: 1.5%;
  background: #e6f2ff;
  padding: 12px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* SECTION SPACE */
.ac-technician-special,
.ac-technician-why {
  margin-top: 30px;
}

/* CTA */
.ac-technician-cta {
  margin-top: 25px;
  background: #cc0000;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: bold;
}

/* CLEAR FIX */
.ac-technician-course:after {
  content: "";
  display: block;
  clear: both;
}

/* MOBILE */
@media (max-width: 768px) {
  .ac-technician-container {
    width: 100%;
  }

  .ac-technician-left,
  .ac-technician-right {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }

  .ac-technician-grid div {
    width: 100%;
    margin: 5px 0;
  }
}

/* electrican */

.electrician-course-section {
  font-family: Arial, sans-serif;
  background: #fff;
  padding: 20px;
}

/* CONTAINER */
.electrician-container {
  width: 1000px;
  margin: 0 auto;
}

/* HEADER */
.electrician-header {
  text-align: center;
  margin-bottom: 20px;
}

.electrician-header h1 {
  color: #0b3d91;
}

/* MAIN */
.electrician-main {
  overflow: hidden;
}

/* LEFT */
.electrician-left {
  float: left;
  width: 30%;
  background: #0b3d91;
  color: #fff;
  padding: 15px;
  box-sizing: border-box;
}

/* RIGHT */
.electrician-right {
  float: right;
  width: 68%;
  background: #f4f4f4;
  padding: 15px;
  box-sizing: border-box;
}

/* LIST */
.electrician-left ul,
.electrician-features {
  padding-left: 20px;
}

.electrician-left li,
.electrician-features li {
  margin-bottom: 8px;
}

/* GRID */
.electrician-grid {
  overflow: hidden;
  margin-top: 10px;
}

.electrician-grid div {
  float: left;
  width: 30%;
  margin: 1.5%;
  background: #e6f2ff;
  padding: 12px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* SECTION SPACE */
.electrician-special,
.electrician-why {
  margin-top: 30px;
}

/* CTA */
.electrician-cta {
  margin-top: 25px;
  background: #cc0000;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: bold;
}

/* CLEAR FIX */
.electrician-course-section:after {
  content: "";
  display: block;
  clear: both;
}

/* MOBILE */
@media (max-width: 768px) {
  .electrician-container {
    width: 100%;
  }

  .electrician-left,
  .electrician-right {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }

  .electrician-grid div {
    width: 100%;
    margin: 5px 0;
  }
}

/*gallery */
.page-gallery-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.page-gallery-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.page-gallery-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Grid */
.page-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.page-gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s;
}

.page-gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.page-gallery-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
}

.page-gallery-lightbox-img {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.page-gallery-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/*videos gallery */

.gallery-video-section {
  padding: 60px 20px;
  background: #fff;
}

.gallery-video-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.gallery-video-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Grid Layout */
.gallery-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Video Box */
.gallery-video-item {
  position: relative;
  width: 100%;
  padding-bottom: 177%; /* 9:16 ratio (Shorts) */
  overflow: hidden;
  border-radius: 12px;
}

/* iframe styling */
.gallery-video-item iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: none;
  border-radius: 12px;
}

/* Hover Effect */
.gallery-video-item:hover {
  transform: scale(1.03);
  transition: 0.3s;
}

/* footer bottom */

.footer-powered {
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer-powered a {
  color: #fff;
  text-decoration: none;
}

.footer-powered a:hover {
  text-decoration: underline;
}