*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#050505;
    color:white;
    overflow-x:hidden;
}

/* GLOBAL */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

section{
    padding:120px 0;
    position:relative;
}

.section-tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(212,175,55,0.1);

    border:1px solid rgba(212,175,55,0.2);

    color:#D4AF37;

    font-size:13px;

    margin-bottom:20px;
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-header h2{
    font-size:52px;
    line-height:1.2;
    color:#111;
    font-weight: 800;
}

/* NAVBAR */

.navbar{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;

    background:rgba(0,0,0,0.45);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,0.06);
}

.navbar-container{
    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:60px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links a{
    color:white;
    text-decoration:none;

    font-size:14px;
    font-weight:500;

    transition:0.3s;
}

.nav-links a:hover{
    color:#D4AF37;
}

.btn-nav{

    background:linear-gradient(
        135deg,
        #D4AF37,
        #f1d06a
    );

    color:black !important;

    padding:13px 26px;

    border-radius:50px;

    font-weight:700 !important;

    transition:0.35s;

    box-shadow:
    0 10px 25px rgba(212,175,55,0.2);
}

.btn-nav:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(212,175,55,0.3);
}

/* HERO */

/* HERO */

.hero{
    position:relative;

    height:100vh;

    overflow:hidden;

    display:flex;
    align-items:center;
}

.hero-slider{
    position:absolute;

    width:100%;
    height:100%;

    top:0;
    left:0;
}

.hero-slide{
    position:absolute;

    width:100%;
    height:100%;

    opacity:0;

    transition:
    opacity 2s ease,
    transform 8s ease;

    transform:scale(1.08);
}

.hero-slide.active{
    opacity:1;
    transform:scale(1);
}

.hero-slide img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.hero-overlay{
    position:absolute;

    width:100%;
    height:100%;

    top:0;
    left:0;

    background:
    linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.78)
    );

    z-index:1;
}

.hero-content{
    position:relative;

    z-index:2;

    width:90%;
    max-width:1300px;

    margin:auto;

    animation:fadeUp 1.4s ease;
}

.hero-badge{
    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(212,175,55,0.1);

    border:1px solid rgba(212,175,55,0.2);

    color:#D4AF37;

    margin-bottom:25px;

    backdrop-filter:blur(10px);
}

.hero h1{
    font-size:82px;

    line-height:1.05;

    max-width:900px;

    margin-bottom:25px;
}

.hero h1 span{
    color:#D4AF37;
}

.hero p{
    max-width:650px;

    color:rgba(255,255,255,0.78);

    line-height:1.8;

    font-size:18px;

    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}
.hero-buttons a{

    text-decoration:none !important;

    color:inherit;

}
/* ANIMATIONS */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ABOUT */

.about{
    background:#080808;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:30px;
}

.about-content h2{
    font-size:52px;
    margin-bottom:25px;
}

.about-content p{
    color:rgba(255,255,255,0.7);

    line-height:1.9;

    margin-bottom:20px;
}

.about-features{
    margin-top:35px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.feature{
    padding:20px;

    background:#111;

    border-radius:18px;
}

/* SERVICES */

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;
}

.service-card{
    background:#0f0f0f;

    border:1px solid rgba(255,255,255,0.06);

    padding:45px 35px;

    border-radius:28px;

    transition:0.4s;
    
    backdrop-filter:blur(12px);
    text-align:center;
}

.service-card:hover{
    transform:translateY(-10px);

    border-color:rgba(212,175,55,0.4);
}

.service-icon{
    font-size:45px;
    margin-bottom:25px;
}

.service-card h3{
    margin-bottom:20px;
    font-size:24px;
}

.service-card p{
    color:rgba(255,255,255,0.7);
    line-height:1.8;
}
.service-card i{

    width:90px;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 30px;

    border-radius:50%;

    background:
    rgba(212,175,55,0.08);

    color:#D4AF37;

    font-size:38px;

    border:
    1px solid rgba(212,175,55,0.15);

    box-shadow:
    0 10px 30px rgba(212,175,55,0.08);
}
/* STATS */

.stats{
    background:#D4AF37;
    color:black;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.stat-box h3{
    font-size:55px;
    margin-bottom:10px;
}

/* CONTACT */

.contact{
    background:#070707;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.contact-info h2{
    font-size:52px;
    margin-bottom:25px;
}

.contact-info p{
    color:rgba(255,255,255,0.7);

    line-height:1.8;

    margin-bottom:35px;
}

.contact-items{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-item{

    display:flex;

    align-items:center;

    gap:20px;

    background:#111;

    padding:22px;

    border-radius:22px;

    border:
    1px solid rgba(255,255,255,0.06);

    margin-bottom:20px;
}
.contact-item i{

    min-width:65px;
    width:65px;
    height:65px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    rgba(212,175,55,0.08);

    color:#D4AF37;

    font-size:24px;

    border:
    1px solid rgba(212,175,55,0.15);
}

.contact-item h4{

    margin-bottom:6px;

    font-size:18px;
}

.contact-item p{

    color:rgba(255,255,255,0.7);
}
.contact-form-box{
    background:#0f0f0f;

    padding:45px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(14px);
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    background:#151515;

    border:none;

    padding:18px 20px;

    border-radius:15px;

    color:white;

    font-family:'Inter',sans-serif;
}

.contact-form textarea{
    height:140px;
    resize:none;
}

/* CTA */

.cta{
    padding-top:0;
}

.cta-box{
    background:#111;

    border-radius:35px;

    padding:70px;

    text-align:center;
}

.cta-box h2{
    font-size:42px;
    margin-bottom:30px;
    color:#f3f3f3;
}

/* FOOTER */

.footer{
    padding:60px 0;

    border-top:1px solid rgba(255,255,255,0.08);

    text-align:center;
}

.footer p{
    color:rgba(255,255,255,0.6);
}

.whatsapp-btn{
    position:fixed;

    right:30px;
    bottom:30px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    text-decoration:none;

    z-index:999;

    box-shadow:0 10px 30px rgba(0,0,0,0.3);

    transition:0.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
}
/* NAVBAR EFFECT */

.navbar-scrolled{
    background:rgba(0,0,0,0.85);
}

/* TOAST */

#toast{
    position:fixed;

    top:120px;
    right:30px;

    min-width:320px;

    padding:18px 25px;

    border-radius:18px;

    z-index:99999;

    opacity:0;

    transform:translateY(-30px);

    transition:0.4s;

    font-weight:600;
}

#toast.show{
    opacity:1;
    transform:translateY(0);
}

.toast.success{
    background:#1f7a45;
    color:white;
}

.toast.error{
    background:#8b1d1d;
    color:white;
}

/* PREMIUM EFFECTS */

.service-card,
.contact-form-box,
.feature,
.contact-item,
.cta-box{
    transition:0.4s;
}

.service-card:hover,
.contact-form-box:hover,
.feature:hover,
.contact-item:hover{
    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.35);
}

/* INPUT EFFECTS */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    outline:none;

    border:1px solid rgba(212,175,55,0.5);

    box-shadow:
    0 0 20px rgba(212,175,55,0.1);

}

/* GOLD GLOW */

.btn-gold{

    position:relative !important;

    display:inline-flex !important;

    align-items:center !important;
    justify-content:center !important;

    gap:10px;

    background:linear-gradient(
        135deg,
        #D4AF37,
        #f3d36d
    ) !important;

    color:#000 !important;

    text-decoration:none !important;

    padding:17px 34px !important;

    border-radius:60px !important;

    font-weight:700 !important;

    font-size:15px !important;

    border:none !important;

    cursor:pointer !important;

    overflow:hidden;

    transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;

    box-shadow:
    0 10px 30px rgba(212,175,55,0.25);

    min-width:220px;
}


.btn-outline{

    display:inline-flex !important;

    align-items:center !important;
    justify-content:center !important;

    padding:17px 34px !important;

    border-radius:60px !important;

    text-decoration:none !important;

    color:white !important;

    border:1px solid rgba(255,255,255,0.18) !important;

    background:
    rgba(255,255,255,0.04) !important;

    backdrop-filter:blur(12px);

    font-weight:600 !important;

    transition:
    all 0.35s ease;

    min-width:220px;
}

.btn-outline:hover{

    background:white !important;

    color:black !important;

    transform:translateY(-4px);

    box-shadow:
    0 18px 35px rgba(255,255,255,0.12);
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#080808;
}

::-webkit-scrollbar-thumb{
    background:#D4AF37;
    border-radius:20px;
}
/* MOBILE MENU */

.menu-toggle{
    display:none;

    background:none;
    border:none;

    color:white;

    font-size:28px;

    cursor:pointer;
}

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{

        position:absolute;

        top:90px;
        left:0;

        width:100%;

        background:#0d0d0d;

        flex-direction:column;

        padding:30px;

        gap:25px;

        display:none;
    }

    .nav-links.active{
        display:flex;
    }

}
/* SCROLL ANIMATIONS */

.hidden-animation{

    opacity:0;

    transform:
    translateY(60px);

    transition:
    all 1s ease;
}

.show-animation{

    opacity:1;

    transform:
    translateY(0);
}


/* ABOUT */

.about-grid{
    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:70px;

    align-items:center;
}

.about-content p{
    margin-bottom:25px;

    line-height:1.9;

    color:rgba(255,255,255,0.78);
}

.about-image img{
    width:100%;
}

.about-values{
    display:flex;
    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;
}

.value-item{
    background:#111;

    padding:14px 20px;

    border-radius:50px;

    display:flex;
    align-items:center;

    gap:10px;

    border:
    1px solid rgba(255,255,255,0.06);
}

.value-item i{
    color:#D4AF37;
}

/* MISSION */

.mv-grid{
    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:35px;
}

.mv-card{
    background:#111;

    padding:45px;

    border-radius:30px;

    border:
    1px solid rgba(255,255,255,0.06);

    transition:0.4s;
}

.mv-card:hover{
    transform:translateY(-8px);
}

.mv-icon{
    width:80px;
    height:80px;

    border-radius:50%;

    background:
    rgba(212,175,55,0.08);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.mv-icon i{
    font-size:32px;
    color:#D4AF37;
}

.mv-card h3{
    margin-bottom:20px;

    font-size:32px;
}

.mv-card p{
    line-height:1.9;

    color:rgba(255,255,255,0.75);
}

/* FOOTER */

.footer{
    background:#050505;

    padding:80px 0;

    text-align:center;
}

.footer-logo{
    width:240px;

    margin-bottom:30px;
}

.footer p{
    margin-bottom:30px;

    color:rgba(255,255,255,0.7);
}

.footer-socials{
    display:flex;

    justify-content:center;

    gap:20px;

    margin-bottom:30px;
}

.footer-socials a{
    width:50px;
    height:50px;

    border-radius:50%;

    background:#111;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#D4AF37;

    text-decoration:none;

    transition:0.35s;
}

.footer-socials a:hover{
    transform:translateY(-5px);
}




/* =======================================================
LIGHT PREMIUM VERSION
======================================================= */

/* BODY */

body{

    background:
    linear-gradient(
        to bottom,
        #f8f8f8,
        #efefef
    );

    color:#111;
}

/* SECTIONS */

section{

    position:relative;

    z-index:2;
}

/* KEEP DARK AREAS */

.navbar,
.hero,
.footer{

    background:#050505;
}

/* TEXT COLORS */

.section-header h2,
.about-content h2,
.service-card h3,
.mv-card h3,
.contact-item h4{

    color:#111 !important;
}

.about-content p,
.service-card p,
.mv-card p,
.contact-item p{

    color:#4f4f4f !important;
}

/* CARDS */

.service-card,
.mv-card,
.contact-form-box,
.contact-item,
.admin-card,
.value-item{

    background:
    rgba(255,255,255,0.75);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(0,0,0,0.05);

    box-shadow:
    0 15px 40px rgba(0,0,0,0.05);
}

/* ABOUT */

.about{

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f6f6f6
    );
}

/* SERVICES */

.services{

    background:
    linear-gradient(
        180deg,
        #f4f4f4,
        #ececec
    );
}

/* MISSION */

.mission-vision{

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f3f3f3
    );
}

/* CONTACT */

.contact{

    background:
    linear-gradient(
        180deg,
        #f7f7f7,
        #ececec
    );
}

/* FORM */

.contact-form input,
.contact-form textarea,
.contact-form select{

    background:white;

    color:#111;

    border:
    1px solid rgba(0,0,0,0.08);
}

/* PLACEHOLDERS */

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#777;
}

/* GOLD DETAILS */

.section-header span,
.mv-icon i,
.value-item i,
.contact-item i,
.service-card i{

    color:#D4AF37;
}

/* SERVICE ICONS */

.service-card i{

    background:
    rgba(212,175,55,0.08);

    border:
    1px solid rgba(212,175,55,0.15);
}

/* CONTACT ICONS */

.contact-item i{

    background:
    rgba(212,175,55,0.08);
}

/* HERO TEXT */

.hero h1,
.hero p,
.hero-badge{

    color:white !important;
}

/* FOOTER */

.footer{

    color:white;
}

/* PREMIUM DIVIDERS */

.section-header{

    margin-bottom:70px;
}

.section-header::after{

    content:'';

    position:absolute;

    width:120px;
    height:2px;

    background:#D4AF37;

    margin-top:20px;

    left:0;
}

/* EXTRA LUXURY */

.service-card:hover,
.mv-card:hover,
.contact-item:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 50px rgba(0,0,0,0.08);
}

.container{

    width:90%;

    max-width:1300px;

    margin:auto;
}

/* GLOBAL SECTION SPACING */

.section{

    padding:120px 0;

    position:relative;
}
/* SECTION TITLES */

.section-header{

    position:relative;

    margin-bottom:70px;
}

.section-header span{

    color:#D4AF37;

    font-size:22px;

    font-weight:700;

    display:block;

    margin-bottom:10px;
}

.section-header h2{

    font-size:52px;

    color:#111;

    font-weight:800;
}

.section-header::after{

    content:'';

    position:absolute;

    width:120px;
    height:2px;

    background:#D4AF37;

    left:0;

    bottom:-20px;
}
/* FORCE LIGHT MODE TEXT */

.about,
.services,
.mission-vision,
.contact{

    color:#111;
}

.about p,
.services p,
.mission-vision p,
.contact p{

    color:#4f4f4f !important;
}

.about h2,
.services h2,
.mission-vision h2,
.contact h2,
.service-card h3,
.mv-card h3,
.contact-item h4{

    color:#111 !important;
}
/* LIGHT SECTION BACKGROUNDS */

.about{

    background:#ffffff;
}

.services{

    background:#f5f5f5;
}

.mission-vision{

    background:#ffffff;
}

.contact{

    background:#f3f3f3;
}
/* LIGHT CARDS */

.service-card,
.mv-card,
.contact-item,
.contact-form-box,
.value-item{

    background:white !important;

    border:
    1px solid rgba(0,0,0,0.06);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}
/* KEEP PREMIUM DARK AREAS */

.hero,
.navbar,
.footer{

    background:#050505 !important;
}
/* SERVICE IMAGE CARD */

.service-image-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    min-height:100%;

    background:#111;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);
}

.service-image-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
    transform 1.2s ease;
}

.service-image-card:hover img{

    transform:scale(1.08);
}

.service-image-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.82)
    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;
}

.service-image-overlay span{

    color:#D4AF37;

    font-weight:700;

    margin-bottom:10px;
}

.service-image-overlay h3{

    color:white !important;

    font-size:32px;

    line-height:1.2;
}


/* =======================================================
MOBILE RESPONSIVE FIX
======================================================= */

@media(max-width:768px){

    /* BODY */

    body{
        overflow-x:hidden;
    }

    /* CONTAINER */

    .container{
        width:92%;
    }

    /* NAVBAR */

    .navbar{
        padding:15px 0;
    }

    .logo img{
        width:170px;
    }

    /* HERO */

    .hero{

        min-height:100vh;

        padding-top:120px;
        padding-bottom:80px;

        height:auto;
    }

    .hero-content{

        text-align:center;
    }

    .hero h1{

        font-size:42px;

        line-height:1.15;

        margin-bottom:20px;
    }

    .hero p{

        font-size:16px;

        line-height:1.8;

        margin:auto auto 35px;
    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;
    }

    .hero-buttons a{

        width:100%;

        max-width:320px;
    }

    /* ABOUT */

    .about-grid{

        grid-template-columns:1fr;

        gap:40px;
    }

    .about-content{

        text-align:center;
    }

    .about-values{

        justify-content:center;
    }

    .about-image img{

        border-radius:25px;
    }

    /* TITLES */

    .section-header{

        text-align:center;
    }

    .section-header::after{

        left:50%;

        transform:translateX(-50%);
    }

    .section-header h2{

        font-size:42px;
    }

    /* MISSION VISION */

    .mv-grid{

        grid-template-columns:1fr;

        gap:25px;
    }

    .mv-card{

        padding:35px 25px;

        text-align:center;
    }

    .mv-icon{

        margin:0 auto 25px;
    }

    /* SERVICES */

    .services-grid{

        grid-template-columns:1fr;

        gap:25px;
    }

    .service-card{

        padding:40px 25px;
    }

    .service-image-card{

        min-height:350px;
    }

    /* CONTACT */

    .contact-grid{

        grid-template-columns:1fr;

        gap:40px;
    }

    .contact-item{

        align-items:flex-start;
    }

    .contact-form-box{

        padding:35px 25px;
    }

    /* FORM */

    .contact-form input,
    .contact-form textarea,
    .contact-form select{

        width:100%;
    }

    /* FOOTER */

    .footer{

        padding:60px 0;
    }

    .footer-logo{

        width:190px;
    }

}

/* EXTRA SMALL DEVICES */

@media(max-width:480px){

    .hero h1{

        font-size:36px;
    }

    .section-header h2{

        font-size:36px;
    }

    .hero-buttons a{

        max-width:100%;
    }

    .service-card,
    .mv-card,
    .contact-form-box{

        border-radius:24px;
    }

}