    /* ===========================
    GOOGLE FONT
    =========================== */

    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');

    /* ===========================
    RESET
    =========================== */

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

    body{
        background:#080808;
        color:#fff;
        font-family:'Poppins',sans-serif;
        overflow-x:hidden;
        width:100%;
        max-width:100%;
        position:relative;
        line-height:1.6;
        padding-top:90px;
        animation:pageLoad .8s ease;
    }

    /* ===========================
    NAVBAR
    =========================== */

    header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;
    background:rgba(8,8,8,.95);

    }
    nav{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    padding:18px 6%;

    }

    .logo{
        font-size:44px;
        font-family:'Cormorant Garamond',serif;
        font-weight:700;
        color:#D4AF37;
        letter-spacing:1px;
        line-height:1;
        white-space:nowrap;
        flex-shrink:0;
    }
    nav ul{

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

    list-style:none;

    margin:0;
    padding:0;

    gap:35px;

    }

    nav ul li{

    margin:0;

    }

    nav ul li a{
    position:relative;
    color:white;
    text-decoration:none;
    font-size:17px;
    font-weight:500;
    transition:.35s;
    }
    nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:.35s;
    }

    nav ul li a:hover::after{
    width:100%;
    }

    nav ul li a:hover{
    color:#FFD76A;
    }

    .admission-btn{

    background:#D4AF37;

    padding:13px 28px;

    border-radius:40px;

    color:black;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
    margin-left:auto;
    white-space:nowrap;
    flex-shrink:0;

    }

    .admission-btn:hover{

    transform:translateY(-4px);

    }

    /* ===========================
    HERO
    =========================== */

    .hero{

    height:100vh;

    padding:0 8%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:110px;
    position:relative;

    overflow:hidden;

    }
    .hero::before{

    content:"";

    position:absolute;

    right:-180px;

    top:120px;

    width:550px;

    height:550px;

    background:radial-gradient(circle,rgba(212,175,55,.30),transparent 70%);

    filter:blur(80px);

    z-index:-1;

    }
    .hero::after{

    content:"";

    position:absolute;

    right:120px;

    top:170px;

    width:420px;

    height:420px;

    border-radius:50%;

    border:1px solid rgba(212,175,55,.18);

    z-index:-1;

    }

    .hero-content{

    width:44%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    animation:fadeLeft 1.2s;

    z-index:5;

    padding-right:40px;

    }

    .hero-content h1{

    font-size:78px;

    font-family:'Cormorant Garamond',serif;

    font-weight:700;

    line-height:82px;

    letter-spacing:1px;

    margin-bottom:30px;

    color:#fff;

    text-shadow:
    0 10px 35px rgba(212,175,55,.18);

    }
    .hero-content ul{

    margin:35px 0;

    padding-left:28px;

    }

    .hero-content ul li{

    font-size:23px;

    line-height:42px;

    color:#fff;

    font-weight:500;

    margin-bottom:6px;

    }
    .hero-content p{

    font-size:20px;

    color:#CFCFCF;

    line-height:34px;

    max-width:520px;

    margin:18px 0 35px;

    font-weight:300;

    letter-spacing:.3px;

    }

    .hero-buttons{
        margin-top:45px;
        display:flex;
        gap: 28px;
        flex-wrap:wrap;
    }

    .hero-buttons a{
        display:flex;
        align-items:center;
        justify-content:center;
        min-width: 220px;
        height:60px;
        border-radius:60px;
        font-weight:600;
        font-size:17px;
        text-decoration:none;
        transition:.35s;
    }

    .hero-buttons a:first-child{

    background:linear-gradient(135deg,#D4AF37,#FFD76A);

    color:black;

    font-weight:600;

    box-shadow:0 15px 40px rgba(212,175,55,.35);

    }

    .hero-buttons a:last-child{

    border:2px solid #D4AF37;

    color:#D4AF37;

    backdrop-filter:blur(10px);

    }

    .hero-buttons a:hover{

    transform:translateY(-4px);

    box-shadow:
    0 18px 40px rgba(212,175,55,.20);

    }

    .hero-image{

    width:56%;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

    perspective:1200px;

    transform-style:preserve-3d;

    animation:float 6s ease-in-out infinite;

    overflow:visible;

    }
    .hero-image img{

    width:100%;

    max-width:700px;

    border-radius:30px;

    border:2px solid rgba(212,175,55,.25);

    object-fit:cover;

    transform-style:preserve-3d;

    transition:transform .25s ease-out, box-shadow .25s ease-out;

    box-shadow:
    0 35px 90px rgba(212,175,55,.30),
    0 0 100px rgba(212,175,55,.20);

    will-change:transform;

    position:relative;

    z-index:2;

    }


    /* ===========================
    HERO GLOW
    =========================== */

    .hero-glow{

    position:absolute;

    width:450px;

    height:450px;

    background:radial-gradient(circle,

    rgba(255,220,120,.90) 0%,

    rgba(212,175,55,.50) 25%,

    rgba(212,175,55,.20) 55%,

    transparent 80%

    );

    filter:blur(70px);

    pointer-events:none;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    transition:left .08s linear,
    top .08s linear;

    z-index:1;

    mix-blend-mode:screen;

    }



    /* ===========================
    ANIMATIONS
    =========================== */

    @keyframes float{

    0%{

    transform:translateY(0);

    }

    50%{

    transform:translateY(-18px);

    }

    100%{

    transform:translateY(0);

    }

    }

    @keyframes fadeLeft{

    from{

    opacity:0;

    transform:translateX(-60px);

    }

    to{

    opacity:1;

    transform:translateX(0);

    }

    }

    /* ===========================
    SECTION TITLE
    =========================== */

    section h2{

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    text-align:center;

    margin-bottom:60px;

    color:#D4AF37;

    }

    /* ===========================
    ABOUT
    =========================== */

    .about{
        padding:120px 8%;
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:80px;
    }

    .about-image{
        flex:1;
    }

    .about-image img{
        width:100%;
        border-radius:25px;
        border:2px solid rgba(212,175,55,.25);
        box-shadow:0 25px 70px rgba(212,175,55,.25);
        transition:.5s;
    }

    .about-image img:hover{
        transform:scale(1.03);
    }

    .about-text{
        flex:1;
    }

    .about-text h2{
        font-size:58px;
        text-align:left;
        margin-bottom:25px;
    }

    .about-text p{
        color:#d0d0d0;
        font-size:18px;
        line-height:34px;
        margin-bottom:25px;
    }

    .stats{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
        margin-top:40px;
    }

    .stat-box{
        background:rgba(20,20,20,.95);
        border:1px solid rgba(212,175,55,.15);
        border-radius:18px;
        padding:25px;
        transition:.35s;
    }

    .stat-box:hover{
        transform:translateY(-8px);
        box-shadow:0 15px 40px rgba(212,175,55,.18);
    }

    .stat-box h3{
        font-size:36px;
        color:#D4AF37;
        margin-bottom:8px;
    }

    .stat-box p{
        margin:0;
        color:#ccc;
    }

    /* ===========================
    COURSES
    =========================== */ 

    .courses{
        padding:120px 8%;
        background:#101010;
    }

    .course-grid{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:35px;
    }

    .course-card{
        position: relative;

    background:linear-gradient(
    180deg,
    rgba(30,30,30,.95),
    rgba(18,18,18,.95)
    );
    /* ===========================
    COURSE IMAGE OVERLAY
    =========================== */

    .course-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:260px;

    background:linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.15) 45%,
    rgba(0,0,0,.55) 100%
    );

    pointer-events:none;

    z-index:1;

    }

    border:1px solid rgba(212,175,55,.15);

    border-radius:28px;

    overflow:hidden;

    transition:
    transform .4s ease,
    box-shadow .4s ease,
    border-color .4s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,.35);

    }

    .course-card:hover{

    transform:
    translateY(-15px)
    scale(1.02);

    box-shadow:
    0 30px 80px rgba(212,175,55,.30);

    }
    .course-card:hover img{

    transform:scale(1.06);

    filter:brightness(1.08);

    }
    .course-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

    transition:
    transform .6s ease,
    filter .6s ease;

    }

    .course-content{
        padding:30px;
    }

    .course-content h3{
        color:#D4AF37;
        font-size:30px;
        margin-bottom:18px;
    }
    /* ===========================
    COURSE BADGES
    =========================== */

    .course-badges{

    display:flex;

    gap:10px;

    margin-bottom:18px;

    flex-wrap:wrap;

    }

    .course-badges span{

    background:rgba(212,175,55,.12);

    border:1px solid rgba(212,175,55,.35);

    color:#D4AF37;

    padding:7px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    letter-spacing:.5px;

    }

    .course-content p{
        color:#ccc;
        line-height:30px;
        margin-bottom:20px;
    }

    .course-content ul{
        list-style:none;
        margin-bottom:25px;
    }

    .course-content ul li{
        color:#ddd;
        margin-bottom:10px;
    }

    .course-content a{
        display:inline-block;
        color:#D4AF37;
        text-decoration:none;
        font-weight:600;
        transition:.3s;
    }

    .course-content a:hover{
        letter-spacing:1px;
    }

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

    .why{
    padding:100px 8%;
    }

    .why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    }

    .why-grid div{
    background:#181818;
    padding:40px;
    border-radius:20px;
    transition:.3s;
    border:1px solid rgba(255,255,255,.08);
    }

    .why-grid div:hover{
    transform:translateY(-8px);
    }

    .why-grid h3{
    color:#D4AF37;
    margin-bottom:15px;
    font-size:28px;
    }

    .why-grid p{
    color:#ddd;
    line-height:28px;
    }

    /* ===========================
    GALLERY
    =========================== */

    .gallery{
        padding:100px 8%;
        background:#101010;
    }

    .gallery-grid{
        display:grid;
        grid-template-columns:repeat(5,1fr);
        gap:20px;
    }

    .gallery-grid img,
    .gallery-more{
        width:100%;
        height:320px;
        border-radius:20px;
    }


    .gallery-grid img:hover{
        transform:scale(1.08) rotate(.5deg);
        filter:brightness(1.08);
        box-shadow:0 25px 70px rgba(212,175,55,.25);
    }

    .gallery-more{
        display:flex;
        justify-content:center;
        align-items:center;
        flex-direction:column;
        background:linear-gradient(135deg,#D4AF37,#FFD76A);
        color:black;
        font-weight:bold;
        cursor:pointer;
        transition:.4s;
    }

    .gallery-more h3{
        font-size:60px;
        margin:0;
    }

    .gallery-more p{
        margin-top:10px;
        font-size:18px;
    }

    .gallery-more:hover{
        transform:scale(1.05);
    }
    /* ===========================
    TRAINERS
    =========================== */

    .trainers{

    padding:100px 8%;

    }

    .trainer-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    max-width:950px;

    margin:50px auto 0;

    align-items:stretch;

    }

    .trainer-card{

    background:#181818;

    border-radius:25px;

    overflow:hidden;

    text-align:center;

    transition:.4s;

    }

    .trainer-card:hover{

    transform:
    translateY(-15px)
    scale(1.02);

    box-shadow:
    0 30px 80px rgba(212,175,55,.30);

    }

    .trainer-card img{

    width:220px;

    height:280px;

    object-fit:cover;

    border-radius:16px;

    display:block;

    margin:30px auto 20px;

    border:3px solid rgba(212,175,55,.25);

    box-shadow:0 15px 40px rgba(0,0,0,.35);

    }

    .trainer-card h3{

    font-size:34px;

    margin-top:10px;

    }

    .trainer-card span{

    display:block;

    margin:12px 0;

    color:#ccc;

    }

    .trainer-card p{

    padding:20px;
    padding-top:25px;

    line-height:30px;

    color:#ddd;

    border-top:1px solid rgba(212,175,55,.15);

    margin-top:25px;

    }

    /* ===========================
    PLACEMENT
    =========================== */

    .placements{

    padding:100px 8%;

    background:#101010;

    text-align:center;

    }

    .placement-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;

    }

    /* ===========================
    TESTIMONIAL
    =========================== */

    .testimonial{

    padding:100px 8%;

    text-align:center;

    }

    .testimonial-box{

        max-width:950px;

        margin:auto;

        padding:60px;

        background:linear-gradient(
            180deg,
            rgba(30,30,30,.97),
            rgba(18,18,18,.97)
        );

        border:1px solid rgba(212,175,55,.15);

        border-radius:24px;

        box-shadow:
            0 25px 70px rgba(0,0,0,.45),
            0 0 25px rgba(212,175,55,.08);

        transition:.4s ease;

    }
    .testimonial-box:hover{

        transform:translateY(-8px);

        border-color:rgba(212,175,55,.35);

        box-shadow:
            0 35px 80px rgba(0,0,0,.50),
            0 0 35px rgba(212,175,55,.18);

    }

    .testimonial-box p{

    font-size:22px;

    line-height:40px;

    color:#ddd;

    }



    .testimonial-image{

        width:100%;

        max-width:580px;

        height:auto;

        display:block;

        margin:0 auto 45px;

        border-radius:22px;

        border:3px solid rgba(212,175,55,.25);

        box-shadow:
            0 20px 60px rgba(0,0,0,.45),
            0 0 25px rgba(212,175,55,.10);

        transition:all .4s ease;

    }

    .testimonial-image:hover{

        transform:scale(1.03);

        border-color:#D4AF37;

        box-shadow:
            0 30px 80px rgba(0,0,0,.55),
            0 0 35px rgba(212,175,55,.25);

    }

    .testimonial-box blockquote{

        max-width:700px;

        margin:0 auto;

        font-size:20px;

        line-height:2;

        color:#ddd;

        font-style:italic;

        font-weight:400;

    }

    .testimonial-box strong{

        color:#D4AF37;

    }

    .testimonial-box h3{

        margin-top:35px;

        font-size:30px;

        font-weight:600;

        color:#D4AF37;

        letter-spacing:.5px;

        font-family:'Cormorant Garamond', serif;

    }
    /* ===========================
    BACKGROUND GLOW
    =========================== */

    body::before{

    content:"";

    position:fixed;

    top:-250px;

    right:-250px;

    width:700px;

    height:700px;

    background:radial-gradient(circle,#d4af3740 0%,transparent 70%);

    z-index:-1;

    filter:blur(60px);

    }

    body::after{

    content:"";

    position:fixed;

    bottom:-300px;

    left:-250px;

    width:600px;

    height:600px;

    background:radial-gradient(circle,#d4af3720 0%,transparent 70%);

    z-index:-1;

    filter:blur(80px);

    }


    .logo:hover{

    color:#FFD76A;

    text-shadow:0 0 25px rgba(212,175,55,.7);

    }
    /* ===========================
    CONTACT
    =========================== */

    .contact{

    padding:120px 8%;

    background:#0d0d0d;

    }

    .contact-subtitle{

    text-align:center;

    color:#cfcfcf;

    margin-top:-25px;

    margin-bottom:60px;

    font-size:18px;

    }

    .contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    }

    .contact-info{

    display:grid;

    gap:25px;

    }

    .info-box{

    background:#181818;

    padding:30px;

    border-radius:20px;

    border:1px solid rgba(212,175,55,.12);

    transition:.4s;

    }

    .info-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 60px rgba(212,175,55,.20);

    }

    .info-box h3{

    color:#D4AF37;

    margin-bottom:12px;

    font-size:26px;

    }

    .info-box p{

    color:#d0d0d0;

    line-height:30px;

    }

    .contact-form{

    background:#181818;

    padding:40px;

    border-radius:20px;

    border:1px solid rgba(212,175,55,.12);

    }

    .contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

    }

    .contact-form input,

    .contact-form textarea{

    background:#101010;

    border:none;

    padding:18px;

    border-radius:12px;

    color:white;

    font-size:16px;

    outline:none;

    }

    .contact-form textarea{

    height:180px;

    resize:none;

    }

    .contact-form button{

    background:#D4AF37;

    color:black;

    border:none;

    padding:18px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

    }

    .contact-form button:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 50px rgba(212,175,55,.25);

    }
    .contact-form input:focus,
    .contact-form textarea:focus{
        border:1px solid #D4AF37;
        box-shadow:0 0 20px rgba(212,175,55,.25);
    }
    /* ===========================
    FOOTER
    =========================== */

    .footer{

    background:#050505;

    padding:80px 8% 20px;

    border-top:1px solid rgba(212,175,55,.12);

    }

    .footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

    }

    .footer h2{

    color:#D4AF37;

    font-size:40px;

    margin-bottom:20px;

    text-align:left;

    }

    .footer h3{

    color:#D4AF37;

    margin-bottom:20px;

    font-size:24px;

    }

    .footer p{

    color:#bfbfbf;

    line-height:30px;

    }

    .footer ul{

    list-style:none;

    padding:0;

    }

    .footer ul li{

    margin-bottom:12px;

    color:#cfcfcf;

    }

    .footer ul li a{

    text-decoration:none;

    color:#cfcfcf;

    transition:.3s;

    }

    .footer ul li a:hover{

    color:#D4AF37;

    padding-left:8px;

    }

    .footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    color:#888;

    font-size:15px;

    }
    /* ==========================================
    RESPONSIVE DESIGN
    ========================================== */

    @media(max-width:1200px){

    .hero-content h1{
    font-size:75px;
    line-height:78px;
    }

    .hero{
    gap:50px;
    }

    .course-grid,
    .trainer-grid,
    .placement-grid{
    grid-template-columns:repeat(2,1fr);
    }

    .footer-container{
    grid-template-columns:repeat(2,1fr);
    }

    }

    @media(max-width:992px){

    nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 18px;

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:rgba(5,5,5,.60);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:999;

    transition:.4s;

    }

    nav ul{
    margin:20px 0;
    flex-wrap:wrap;
    justify-content:center;
    }

    .hero{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    height:auto;
    padding:150px 8% 80px;
    }

    .hero-content,
    .hero-image{
    width:100%;
    overflow: visible;
    }

    .hero-content h1{
    font-size:65px;
    line-height:70px;
    }

    .hero-content p{
    margin:auto;
    }

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

    .about{
    flex-direction:column;
    }

    .about-text h2{
    text-align:center;
    }

    .course-grid,
    .trainer-grid,
    .gallery-grid,
    .why-grid,
    .placement-grid,
    .facility-grid{
    grid-template-columns:1fr;
    }

    .contact-container{
    grid-template-columns:1fr;
    }

    .footer-container{
    grid-template-columns:1fr;
    text-align:center;
    }

    .footer h2,
    .footer h3{
    text-align:center;
    }

    }

    @media(max-width:768px){

    .hero-content h1{
    font-size:48px;
    line-height:55px;
    }

    .hero-content p{
    font-size:18px;
    line-height:30px;
    }

    section h2{
    font-size:42px;
    }

    .hero-buttons a{
    width:100%;
    }

    .stat-box{
    padding:20px;
    }

    }

    @media(max-width:576px){

    .logo{

    font-size:28px;

    line-height:1.2;

    max-width:170px;

    }

    nav ul li{
    margin:10px;
    }

    .hero{
    padding-top:130px;
    }

    .hero-content h1{
    font-size:38px;
    line-height:45px;
    }

    .hero-content p{
    font-size:17px;
    }

    .contact-form{
    padding:25px;
    }

    .footer{
    padding:60px 6% 20px;
    }

    }
    .course-card,
    .facility-card,
    .trainer-card,
    .info-box,
    .stat-box,
    .testimonial-box{

    background:rgba(25,25,25,.75);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    }
    ::-webkit-scrollbar{

    width:12px;

    }

    ::-webkit-scrollbar-track{

    background:#111;

    }

    ::-webkit-scrollbar-thumb{

    background:#D4AF37;

    border-radius:10px;

    }

    ::-webkit-scrollbar-thumb:hover{

    background:#FFD76A;

    }
    .gallery-grid img{
        object-fit:cover;
        transition:.4s;
        cursor:pointer;
        overflow:hidden;
    }
    ::selection{

    background:#D4AF37;

    color:black;

    }
    .course-card,
    .facility-card,
    .trainer-card,
    .stat-box,
    .info-box,
    .testimonial-box{

    transition:

    transform .4s,

    box-shadow .4s,

    border-color .4s;

    }
    section{

    position:relative;

    }

    section::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:120px;

    height:2px;

    background:linear-gradient(
    90deg,
    transparent,
    #D4AF37,
    transparent
    );

    opacity:.25;

    }


    @keyframes pageLoad{

    from{

    opacity:0;

    }

    to{

    opacity:1;

    }

    }
    /* ===========================
    GALLERY LIGHTBOX
    =========================== */

    .gallery-popup{

    display:none;

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.96);

    z-index:99999;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    animation:fadeGallery .4s ease;

    }

    .popup-image{

    max-width:85%;

    max-height:80vh;

    border-radius:20px;

    box-shadow:0 25px 80px rgba(0,0,0,.6);

    object-fit:contain;

    }

    .prev-btn,
    .next-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    background:rgba(212,175,55,.9);

    border:none;

    width:60px;

    height:60px;

    border-radius:50%;

    font-size:28px;

    cursor:pointer;

    transition:.3s;

    }

    .prev-btn{

    left:40px;

    }

    .next-btn{

    right:40px;

    }

    .prev-btn:hover,
    .next-btn:hover{

    background:#FFD76A;

    transform:translateY(-50%) scale(1.1);

    }

    .close-gallery{

    position:absolute;

    top:20px;

    right:35px;

    font-size:55px;

    color:white;

    cursor:pointer;

    transition:.3s;

    }

    .close-gallery:hover{

    color:#D4AF37;

    transform:rotate(90deg);

    }

    .image-counter{

    margin-top:25px;

    font-size:22px;

    color:#D4AF37;

    font-weight:600;

    }

    @keyframes fadeGallery{

    from{

    opacity:0;

    }

    to{

    opacity:1;

    }

    }


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

    .brochure-btn{

    border:2px solid rgba(212,175,55,.55);

    color:#D4AF37;

    background:transparent;

    transition:.35s;

    }
    .brochure-btn i{

    margin-right:10px;

    font-size:18px;

    transition:transform .35s ease;

    }

    .brochure-btn:hover i{

    transform:translateX(5px);

    }
    /* ===========================
    ADMISSION
    =========================== */

    .admission{

    padding:120px 8%;

    background:#101010;

    }

    .admission-subtitle{

    text-align:center;

    color:#cfcfcf;

    font-size:18px;

    margin-top:-20px;

    margin-bottom:60px;

    }

    .admission-container{

    max-width:1100px;

    margin:auto;

    background:#181818;

    padding:50px;

    border-radius:25px;

    border:1px solid rgba(212,175,55,.15);

    box-shadow:0 20px 60px rgba(0,0,0,.35);

    }
    /* ===========================
    ADMISSION FORM
    =========================== */

    .admission-form{

    display:flex;

    flex-direction:column;

    gap:30px;

    }

    .form-row{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    }

    .form-group{

    display:flex;

    flex-direction:column;

    }

    .form-group label{

    color:#D4AF37;

    font-size:15px;

    font-weight:600;

    margin-bottom:10px;

    }

    .form-group input,
    .form-group select,
    .form-group textarea{

    background:#101010;

    border:1px solid rgba(212,175,55,.15);

    padding:18px;

    border-radius:12px;

    color:#fff;

    font-size:16px;

    outline:none;

    transition:.35s;

    width:100%;

    font-family:'Poppins',sans-serif;

    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus{

    border-color:#D4AF37;

    box-shadow:0 0 20px rgba(212,175,55,.20);

    }
    /* ===========================
    TEXTAREA
    =========================== */

    .form-group textarea{

    height:170px;

    resize:vertical;

    }

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

    .admission-btn-submit{

    margin-top:15px;

    width:100%;

    background:linear-gradient(135deg,#D4AF37,#FFD76A);

    color:#000;

    border:none;

    padding:18px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

    }

    .admission-btn-submit:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(212,175,55,.25);

    }
    /* ===========================
    GOOGLE MAP
    =========================== */

    .contact-map{

    margin-top:40px;

    border-radius:20px;

    overflow:hidden;

    border:2px solid rgba(212,175,55,.20);

    box-shadow:0 20px 60px rgba(0,0,0,.35);

    transition:.35s;

    }

    .contact-map:hover{

    transform:translateY(-5px);

    border-color:#D4AF37;

    box-shadow:
    0 25px 70px rgba(212,175,55,.20);

    }

    .contact-map iframe{

    display:block;

    width:100%;

    height:350px;

    }
    /* ===========================
    INSTAGRAM
    =========================== */

    .social-icons{

    margin-top:25px;

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:10px;

    }

    .social-icons a{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#D4AF37;

    color:#000;

    font-size:24px;

    text-decoration:none;

    transition:.35s;

    }

    .social-icons a:hover{

    transform:translateY(-5px) scale(1.08);

    box-shadow:0 15px 35px rgba(212,175,55,.35);

    }

    .instagram-name{

    color:#D4AF37;

    font-weight:600;

    font-size:16px;

    margin:0;

    }
    /* ===========================
    WHATSAPP FLOATING BUTTON
    =========================== */

    .whatsapp-btn{

    position:fixed;

    bottom:30px;

    right:30px;

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#111;

    color:#fff;

    border:2px solid #D4AF37;

    border-radius:50%;

    font-size:34px;

    text-decoration:none;

    z-index:9999;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

    transition:all .35s ease;

    }

    .whatsapp-btn:hover{

    transform:translateY(-6px) scale(1.08);

    background:#D4AF37;

    color:#000;

    box-shadow:0 20px 45px rgba(212,175,55,.35);

    }
    /* ===========================
    SELECTED COURSE
    =========================== */

    .selected-course{

    margin:35px auto 45px;

    max-width:700px;

    padding:22px 30px;

    background:rgba(212,175,55,.08);

    border:1px solid rgba(212,175,55,.30);

    border-radius:18px;

    text-align:center;

    transition:.35s;

    }

    .selected-course span{

    display:block;

    font-size:15px;

    color:#cfcfcf;

    margin-bottom:8px;

    letter-spacing:1px;

    text-transform:uppercase;

    }

    .selected-course h3{

    margin:0;

    font-size:28px;

    color:#D4AF37;

    font-family:'Cormorant Garamond',serif;

    font-weight:700;

    }
    .selected-course i{

    font-size:34px;

    color:#D4AF37;

    margin-bottom:12px;

    display:block;

    }       
    /* ===========================
    CONTACT LINKS
    =========================== */

    .contact-link{

    color:#fff;

    text-decoration:none;

    transition:.3s;

    }

    .contact-link:hover{

    color:#D4AF37;

    }
    /* Clickable Contact Cards */

    .contact-card{

    display:block;

    text-decoration:none;

    color:inherit;

    }
    /* ===========================
    GET DIRECTIONS
    =========================== */

    .direction-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:12px;

    font-size:14px;

    font-weight:600;

    color:#D4AF37;

    transition:.3s;

    }

    .contact-card:hover .direction-link{

    transform:translateX(6px);

    }
    /* ===========================
    FACILITIES
    =========================== */

    .facilities{

    padding:120px 8%;

    text-align:center;

    }

    .facilities .section-subtitle{

    max-width:750px;

    margin:0 auto 60px;

    font-size:18px;

    line-height:30px;

    color:#cfcfcf;

    }

    .facility-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    max-width:1400px;

    margin:0 auto;

    }

    .facility-card{

    background:rgba(25,25,25,.75);

    padding:35px 25px;

    border-radius:22px;

    border:1px solid rgba(212,175,55,.15);

    text-align:center;

    transition:.35s;

    }

    .facility-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(212,175,55,.20);

    }

    .facility-icon{

    font-size:42px;

    margin-bottom:18px;

    }

    .facility-card h3{

    color:#D4AF37;

    font-size:24px;

    margin-bottom:15px;

    }

    .facility-card p{

    color:#d0d0d0;

    line-height:28px;

    }
    /* ===========================
    FOUNDER BADGE
    =========================== */

    .founder-badge{

    display:inline-block;

    margin:15px 0;

    padding:8px 18px;

    background:rgba(212,175,55,.15);

    border:1px solid rgba(212,175,55,.35);

    border-radius:30px;

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    }
    .trainers .section-subtitle{

    max-width:750px;

    margin:-30px auto 60px;

    text-align:center;

    font-size:18px;

    line-height:30px;

    color:#cfcfcf;

    }
    /* ==========================
    LOADING POPUP
    ========================== */

    .loading-popup{

        position:fixed;

        top:0;

        left:0;

        width:100%;

        height:100%;

        background:rgba(0,0,0,.75);

        display:none;

        justify-content:center;

        align-items:center;

        z-index:99998;

        backdrop-filter:blur(5px);

    }

    .loading-box{

        width:90%;

        max-width:420px;

        background:#151515;

        border:2px solid #d4af37;

        border-radius:18px;

        padding:40px 30px;

        text-align:center;

        box-shadow:0 20px 60px rgba(212,175,55,.25);

    }

    .loading-box h2{

        color:#d4af37;

        margin-top:25px;

        font-size:30px;

        font-family:'Cormorant Garamond', serif;

    }

    .loading-box p{

        color:#ddd;

        margin-top:15px;

        line-height:1.7;

    }

    .loader{

        width:70px;

        height:70px;

        margin:auto;

        border:6px solid rgba(212,175,55,.2);

        border-top:6px solid #d4af37;

        border-radius:50%;

        animation:spin 1s linear infinite;

    }

    @keyframes spin{

        from{

            transform:rotate(0deg);

        }

        to{

            transform:rotate(360deg);

        }

    }
    /* =====================================
    SUCCESS POPUP
    ===================================== */

    .success-popup{

        position:fixed;
        inset:0;
        background:rgba(0,0,0,.75);
        backdrop-filter:blur(6px);

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

        z-index:99999;

        animation:fadeIn .35s ease;
    }

    .success-box{

        width:430px;
        max-width:90%;

        background:#171717;

        border:1px solid #d4af37;

        border-radius:18px;

        padding:45px 35px;

        text-align:center;

        box-shadow:0 0 45px rgba(212,175,55,.25);

        animation:popupScale .35s ease;
    }

    .success-icon{

        width:85px;
        height:85px;

        margin:auto;

        border-radius:50%;

        background:#d4af37;

        color:#111;

        font-size:42px;
        font-weight:bold;

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

        margin-bottom:22px;
    }

    .success-box h2{

        color:#d4af37;

        font-size:32px;

        margin-bottom:12px;
    }

    .success-box p{

        color:#ddd;

        line-height:1.8;
    }

    .success-list{

        margin:30px 0;

        text-align:left;
    }

    .success-list p{

        margin:12px 0;

        font-size:16px;
    }

    #closeSuccess{

        background:#d4af37;

        color:#111;

        border:none;

        padding:14px 34px;

        border-radius:50px;

        font-size:16px;

        font-weight:700;

        cursor:pointer;

        transition:.3s;
    }

    #closeSuccess:hover{

        transform:translateY(-3px);

        box-shadow:0 12px 30px rgba(212,175,55,.35);
    }

    @keyframes popupScale{

        from{

            transform:scale(.85);
            opacity:0;
        }

        to{

            transform:scale(1);
            opacity:1;
        }
    }
    /* ==========================
    TOAST NOTIFICATION
    ========================== */

    .toast {
        position: fixed;
        top: 25px;
        right: 25px;
        min-width: 300px;
        max-width: 400px;
        padding: 15px 20px;
        border-radius: 10px;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        z-index: 99999;
        opacity: 0;
        transform: translateX(120%);
        transition: all .35s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,.25);
    }

    .toast.show {
        opacity: 1;
        transform: translateX(0);
    }

    .toast.error {
        background: #dc3545;
    }

    .toast.success {
        background: #28a745;
    }

    .toast.warning {
        background: #ff9800;
    }
    /* =====================================
    FINAL MOBILE OPTIMIZATION
    ===================================== */

    @media (max-width: 768px) {

        html{
            font-size:16px;
        }

        body{
            overflow-x:hidden;
        }

        section{
            padding:80px 20px !important;
        }

        .hero{
            gap:35px;
        }

        .hero-content{
            padding-right:0;
            text-align:center;
        }

        .hero-image img{
            max-width:100%;
            height:auto;
        }

        .hero-buttons{
            flex-direction:column;
            gap:15px;
        }

        .hero-buttons a{
            width:100%;
            min-width:unset;
        }

        .gallery-grid{
            grid-template-columns:repeat(2,1fr);
            gap:15px;
        }

        .gallery-grid img,
        .gallery-more{
            height:180px;
        }

        .form-row{
            grid-template-columns:1fr;
        }

        .admission-container{
            padding:25px;
        }

        .contact-form{
            padding:25px;
        }

        .contact-map iframe{
            height:250px;
        }

        .trainer-card img{
            width:180px;
            height:230px;
        }

        .placement-grid{
            gap:20px;
        }

    }
    /* =====================================
    MOBILE HAMBURGER MENU
    ===================================== */

    .menu-toggle{

        display:none;

        background:transparent;

        border:none;

        color:#D4AF37;

        font-size:34px;

        cursor:pointer;

        padding:8px;

        margin-left:auto;

        line-height:1;

    }

    @media (max-width:992px){


    nav{

    padding:18px 20px;

    }

    nav ul{

    position:fixed;

    top:0;

    right:-100%;

    width:280px;

    height:100vh;

    background:#0d0d0d;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:25px;

    transition:.4s;

    z-index:1001;

    }

    nav ul.active{

    right:0;

    }

    nav ul li{

    margin:0;

    }

    nav ul li a{

    font-size:20px;

    }

    .admission-btn{

    display:none;

    }

    }
    /* ===========================
    HERO MOBILE FIX
    =========================== */

    @media (max-width: 992px){

    .hero{

        display:flex;

        flex-direction:column;

        align-items:center;

        justify-content:center;

        text-align:center;

        gap:30px;

        overflow:hidden;

    }

    .hero-content{

        width:100%;

        padding:0;

        order:2;

    }

    .hero-image{

        width:100%;

        order:1; 

        display:flex;

        justify-content:center;

    }

    .hero-image img{

        width:90%;

        max-width:380px;

        height:auto;

    }

    }
    .course-card:nth-child(3) img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        object-position: center center;
    }
    .course-card:nth-child(1) img,
    .course-card:nth-child(2) img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        object-position: center center;
    }
    .placement-subtitle {
        text-align: center;
        color: #bbb;
        margin-top: -20px;
        margin-bottom: 40px;
    }

    .placement-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .placement-card {
        background: #1b1b1b;
        border: 1px solid rgba(212,175,55,.25);
        border-radius: 18px;
        padding: 30px 20px;
        text-align: center;
        transition: .3s ease;
    }

    .placement-card:hover {
        transform: translateY(-8px);
        border-color: #d4af37;
        box-shadow: 0 15px 35px rgba(212,175,55,.2);
    }

    .partner-logo {
        width: 180px;
        height: 110px;
        margin: 0 auto 20px;

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

        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
    }

    .partner-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 10px;
    }

    .placement-card h3 {
        color: #d4af37;
        font-size: 18px;
        margin-bottom: 8px;
    }

    .placement-card p {
        color: #aaa;
        font-size: 14px;
    }
    /* ===========================
   PLACEMENT PARTNERS
=========================== */

.placement-subtitle {
    text-align: center;
    color: #bbb;
    margin-top: -20px;
    margin-bottom: 40px;
    font-size: 16px;
}

.placement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.placement-card {
    background: #1b1b1b;
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: .3s ease;
}

.placement-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212,175,55,.2);
}

.partner-logo {
    width: 240px;
    height: 140px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    padding: 5px;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.placement-card h3 {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 8px;
}

.placement-card p {
    color: #aaa;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 1200px) {
    .placement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .placement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .placement-card {
        padding: 25px 20px;
    }

    .partner-logo {
        width: 240px;
        height: 140px;
    }
}   