@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ========================================= */
/* RESET */
/* ========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{

    --gold:#d4af37;
    --light-gold:#f5d97b;
    --dark:#050505;
    --black:#000000;
    --white:#ffffff;
    --gray:#cfcfcf;

}

/* ========================================= */
/* BODY */
/* ========================================= */

body{
    font-family:'Poppins',sans-serif;
    background:var(--dark);
    color:var(--white);
    overflow-x:hidden;
    line-height:1.7;
}

/* ========================================= */
/* CUSTOM SCROLLBAR */
/* ========================================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#000;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
        var(--gold),
        var(--light-gold)
    );
    border-radius:50px;
}

/* ========================================= */
/* REMOVE INPUT NUMBER ARROWS */
/* ========================================= */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance:none;
    margin:0;
}



/* ========================================= */
/* LOADER */
/* ========================================= */

.loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
    transition:1s ease;
}

.loader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-content{
    text-align:center;
}

.loader-content img{
    width:220px;
    margin-bottom:20px;
    animation:floatLogo 3s ease-in-out infinite;
}

.loader-content h2{
    color:var(--gold);
    font-size:18px;
    letter-spacing:5px;
    margin-bottom:30px;
    text-transform:uppercase;
}

.loader-bar{
    width:300px;
    height:5px;
    background:#1a1a1a;
    border-radius:50px;
    overflow:hidden;
}

.loader-bar span{
    display:block;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        var(--gold),
        var(--light-gold)
    );
    animation:loading 2s linear infinite;
}

@keyframes loading{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(100%);
    }

}

/* ========================================= */
/* HEADER */
/* ========================================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,0.5);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(212,175,55,0.15);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.logo-area img{
    width:95px;
    height:auto;
    object-fit:contain;
    transition:0.4s;
    background:#000;
    padding:8px;
    border-radius:12px;
}

.logo-area img:hover{
    transform:scale(1.08);
}

.logo-area h2{
    color:#fff;
    font-size:32px;
    font-weight:700;
    line-height:1.2;
}

.logo-area p{
    color:var(--gold);
    font-size:13px;
    letter-spacing:2px;
    margin-top:4px;
}

/* ========================================= */
/* NAVIGATION */
/* ========================================= */

.nav-links{
    display:flex;
    list-style:none;
}

.nav-links li{
    margin-left:35px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    position:relative;
    transition:0.4s;
}

.nav-links a:hover{
    color:var(--gold);
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:var(--gold);
    transition:0.4s;
}

.nav-links a:hover::after{
    width:100%;
}

.menu-btn{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

/* ========================================= */
/* HERO SECTION */
/* ========================================= */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    overflow:hidden;

    background:
    linear-gradient(
        rgba(0,0,0,0.72),
        rgba(0,0,0,0.88)
    ),

    url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

}

/* GOLD LIGHT EFFECT */

.hero::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    background:rgba(212,175,55,0.08);

    border-radius:50%;

    filter:blur(120px);

    top:-250px;
    right:-250px;

}

/* SECOND LIGHT */

.hero::after{

    content:'';

    position:absolute;

    width:600px;
    height:600px;

    background:rgba(212,175,55,0.05);

    border-radius:50%;

    filter:blur(120px);

    bottom:-250px;
    left:-250px;

}

.hero-content{
    position:relative;
    z-index:2;
    max-width:950px;
    padding:0 20px;
}

.hero-logo{
    width:260px;
    margin-bottom:30px;
    animation:floatLogo 4s ease-in-out infinite;
    background:#000;
    padding:15px;
    border-radius:20px;
    box-shadow:0 0 30px rgba(212,175,55,0.15);
}

@keyframes floatLogo{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

.hero-content h1{
    font-size:78px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:800;
    text-transform:uppercase;
}

.hero-content span{
    color:var(--gold);
}

.hero-content p{
    font-size:20px;
    color:#ddd;
    margin-bottom:25px;
    line-height:1.9;
}

.slogan{
    color:var(--gold);
    font-size:18px;
    letter-spacing:6px;
    margin-bottom:40px;
    text-transform:uppercase;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* ========================================= */
/* BUTTONS */
/* ========================================= */

.btn{
    display:inline-block;
    padding:15px 38px;
    border-radius:50px;
    text-decoration:none;
    border:none;
    cursor:pointer;

    background:linear-gradient(
        90deg,
        var(--gold),
        var(--light-gold)
    );

    color:#000;
    font-weight:700;
    transition:0.4s;
}

.btn:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(212,175,55,0.25);
}

.btn-outline{
    background:transparent;
    border:2px solid var(--gold);
    color:var(--gold);
}

.btn-outline:hover{
    background:var(--gold);
    color:#000;
}

/* ========================================= */
/* SERVICES */
/* ========================================= */

.services{
    padding:120px 8%;
    background:#0c0c0c;
}

.section-title{
    text-align:center;
    font-size:55px;
    color:var(--gold);
    margin-bottom:70px;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(212,175,55,0.15);

    padding:45px 35px;

    border-radius:25px;

    text-align:center;

    transition:0.4s;

    backdrop-filter:blur(10px);
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 10px 25px rgba(212,175,55,0.15);
}

.service-card i{
    font-size:60px;
    color:var(--gold);
    margin-bottom:25px;
}

.service-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.service-card p{
    color:#ccc;
}

/* ========================================= */
/* CONTACT */
/* ========================================= */

.contact{
    padding:120px 8%;
}

.contact-form{
    max-width:750px;
    margin:auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    padding:18px;
    margin-bottom:20px;

    background:#111;

    border:1px solid rgba(212,175,55,0.15);

    border-radius:15px;

    color:#fff;

    outline:none;

    font-size:16px;

    transition:0.4s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
    border-color:var(--gold);
    box-shadow:0 0 15px rgba(212,175,55,0.15);
}

/* MULTI SELECT */

.contact-form select{
    min-height:180px;
    cursor:pointer;
}

.contact-form select option{
    padding:12px;
    background:#111;
    color:#fff;
}

.contact-form label{
    display:block;
    color:var(--gold);
    margin-bottom:12px;
    font-weight:600;
    font-size:17px;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

footer{
    background:#000;
    padding:70px 20px;
    text-align:center;
    border-top:1px solid rgba(212,175,55,0.1);
}

footer img{
    width:140px;
    margin-bottom:20px;
}

footer h2{
    font-size:38px;
    margin-bottom:10px;
}

.footer-slogan{
    color:var(--gold);
    letter-spacing:4px;
    margin-bottom:25px;
}

.social-icons{
    margin:25px 0;
}

.social-icons a{
    width:50px;
    height:50px;

    display:inline-flex;
    justify-content:center;
    align-items:center;

    background:#111;

    border:1px solid rgba(212,175,55,0.2);

    border-radius:50%;

    color:var(--gold);

    text-decoration:none;

    margin:0 8px;

    font-size:20px;

    transition:0.4s;
}

.social-icons a:hover{
    background:var(--gold);
    color:#000;
    transform:translateY(-5px);
}

/* ========================================= */
/* WHATSAPP */
/* ========================================= */

.whatsapp-float{

    position:fixed;

    width:65px;
    height:65px;

    bottom:30px;
    right:30px;

    background:#25d366;

    color:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:35px;

    text-decoration:none;

    z-index:9999;

    box-shadow:0 10px 25px rgba(0,0,0,0.3);

    animation:whatsappPulse 2s infinite;

}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,0.7);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

/* ========================================= */
/* REVEAL ANIMATION */
/* ========================================= */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:991px){

    .hero-content h1{
        font-size:58px;
    }

}

@media(max-width:768px){

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }

    .slogan{
        font-size:14px;
        letter-spacing:3px;
    }

    .section-title{
        font-size:36px;
    }

    .nav-links{
        position:absolute;
        top:90px;
        right:-100%;
        width:260px;
        height:100vh;
        background:#000;

        flex-direction:column;

        padding:40px;

        transition:0.5s;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links li{
        margin:20px 0;
    }

    .menu-btn{
        display:block;
    }

}

@media(max-width:500px){

    .hero-logo{
        width:180px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .logo-area img{
        width:75px;
    }

    .logo-area h2{
        font-size:24px;
    }

}
/* ========================================= */
/* MULTI SERVICES CHECKBOX */
/* ========================================= */

.services-checkbox{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
    margin-bottom:25px;
}

.services-checkbox label{
    background:#111;
    border:1px solid rgba(212,175,55,0.15);
    padding:15px 18px;
    border-radius:14px;
    cursor:pointer;
    transition:0.4s;
    color:#fff;
    display:flex;
    align-items:center;
    gap:12px;
}

.services-checkbox label:hover{
    border-color:var(--gold);
    background:rgba(212,175,55,0.08);
}

.services-checkbox input[type="checkbox"]{
    width:18px;
    height:18px;
    accent-color:#d4af37;
    cursor:pointer;
}

.service-label{
    display:block;
    color:var(--gold);
    margin-bottom:15px;
    font-size:18px;
    font-weight:600;
}

/* HIDE SUB OPTIONS BY DEFAULT */

.sub-services{
    display:none;
    padding-left:30px;
    margin-top:15px;
    flex-direction:column;
    gap:10px;
}

/* ========================================= */
/* NESTED SERVICES CHECKBOX */
/* ========================================= */

.service-group{
    background:#111;
    border:1px solid rgba(212,175,55,0.15);
    border-radius:15px;
    padding:18px;
    margin-bottom:15px;
}

.main-service{
    display:flex;
    align-items:center;
    gap:12px;
    color:#d4af37;
    font-weight:600;
    font-size:18px;
    margin-bottom:12px;
}

.sub-services{
    padding-left:30px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.sub-services label{
    color:#fff;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
}

.sub-services input[type="checkbox"]{
    width:18px;
    height:18px;
    accent-color:#d4af37;
}

/* ========================================= */
/* NESTED SERVICES DROPDOWN */
/* ========================================= */

.service-group{
    margin-bottom:15px;
}

.service-group > label{
    display:flex;
    align-items:center;
    gap:10px;
    background:#111;
    padding:15px;
    border-radius:12px;
    border:1px solid rgba(212,175,55,0.15);
    cursor:pointer;
}

.service-group > label:hover{
    border-color:#d4af37;
}

.submenu{
    display:none;
    margin-top:10px;
    margin-left:30px;
    padding:15px;
    border-left:2px solid #d4af37;
}

.submenu label{
    display:block;
    margin-bottom:10px;
    color:#fff;
    cursor:pointer;
}

.submenu input{
    margin-right:10px;
}

/* MULTIPLE NESTED DROPDOWN */

.nested-services{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-bottom:25px;
}

.service-group{
    background:#111;
    border:1px solid rgba(212,175,55,0.2);
    border-radius:12px;
    overflow:hidden;
}

.service-group > label{
    display:block;
    padding:15px;
    cursor:pointer;
    color:#fff;
    font-weight:100;
}

.service-group input[type="checkbox"]{
    margin-right:10px;
    accent-color:#d4af37;
}

.sub-menu{
    display:none;
    padding:15px 20px;
    background:#181818;
    border-top:1px solid rgba(212,175,55,0.15);
}

.sub-menu label{
    display:block;
    margin-bottom:10px;
    color:#ccc;
    cursor:pointer;
}
/* ========================================= */
/* ABOUT PAGE IMAGE SIZE */
/* ========================================= */

.about-page-image{
    flex:0 0 450px;
    max-width:450px;
    margin:auto;
}

.about-page-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:25px;
    border:2px solid rgba(212,175,55,0.15);
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* Tablet */
@media(max-width:991px){

    .about-page-image{
        max-width:400px;
    }

    .about-page-image img{
        height:500px;
    }

}

/* Mobile */
@media(max-width:768px){

    .about-page-image{
        max-width:100%;
    }

    .about-page-image img{
        height:350px;
    }

}
/* ========================================= */
/* MOBILE OPTIMIZATION */
/* ========================================= */

@media screen and (max-width:768px){

    /* HEADER */
    .navbar{
        padding:15px 5%;
    }

    .logo-area img{
        width:65px;
    }

    .logo-area h2{
        font-size:22px;
    }

    .logo-area p{
        font-size:10px;
        letter-spacing:1px;
    }

    /* HERO */
    .hero{
        padding:120px 20px 80px;
        min-height:auto;
    }

    .hero-logo{
        width:150px;
        margin-bottom:20px;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:20px;
    }

    .slogan{
        font-size:12px;
        letter-spacing:2px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }

    .btn{
        width:100%;
        text-align:center;
        padding:14px;
        font-size:15px;
    }

    /* SECTION TITLES */
    .section-title{
        font-size:28px;
        margin-bottom:40px;
    }

    /* ABOUT */
    .about{
        padding:70px 5%;
        gap:30px;
    }

    .about-content h2{
        font-size:30px;
    }

    .about-content p{
        font-size:15px;
    }

    .about-image img{
        height:300px;
        object-fit:cover;
    }

    /* SERVICES */
    .services{
        padding:70px 5%;
    }

    .service-card{
        padding:25px;
    }

    .service-card i{
        font-size:45px;
    }

    .service-card h3{
        font-size:22px;
    }

    .service-card p{
        font-size:14px;
    }

    /* CONTACT */
    .contact{
        padding:70px 5%;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select{
        padding:14px;
        font-size:15px;
    }

    /* FOOTER */
    footer{
        padding:50px 20px;
    }

    footer img{
        width:100px;
    }

    footer h2{
        font-size:26px;
    }

    .footer-slogan{
        font-size:12px;
        letter-spacing:2px;
    }

    .social-icons a{
        width:42px;
        height:42px;
        font-size:18px;
    }

    /* WHATSAPP */
    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:28px;
        bottom:20px;
        right:20px;
    }
}

/* EXTRA SMALL PHONES */

@media screen and (max-width:480px){

    .hero-content h1{
        font-size:26px;
    }

    .hero-content p{
        font-size:14px;
    }

    .section-title{
        font-size:24px;
    }

    .about-content h2{
        font-size:26px;
    }

    .service-card h3{
        font-size:20px;
    }

    .logo-area h2{
        font-size:18px;
    }
}
/* ========================================= */
/* FINAL MOBILE RESPONSIVE FIX */
/* ADD THIS AT THE END OF STYLE.CSS */
/* ========================================= */

/* TABLET */
@media screen and (max-width:992px){

    .navbar{
        padding:15px 5%;
    }

    .logo-area img{
        width:75px;
    }

    .logo-area h2{
        font-size:24px;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:16px;
    }

    .section-title{
        font-size:40px;
    }

    .about{
        flex-direction:column;
        text-align:center;
    }

    .about-content h2{
        font-size:36px;
    }

    .about-page-image{
        max-width:100%;
    }

    .about-page-image img{
        height:420px;
        width:100%;
        object-fit:cover;
    }
}

/* MOBILE */
@media screen and (max-width:768px){

    /* HEADER */

    .navbar{
        padding:12px 5%;
    }

    .logo-area{
        gap:10px;
    }

    .logo-area img{
        width:60px;
        padding:5px;
    }

    .logo-area h2{
        font-size:18px;
    }

    .logo-area p{
        font-size:9px;
        letter-spacing:1px;
    }

    .menu-btn{
        display:block;
        font-size:24px;
    }

    .nav-links{
        position:fixed;
        top:85px;
        right:-100%;
        width:260px;
        height:100vh;
        background:#000;
        flex-direction:column;
        padding:30px;
        transition:.4s;
        z-index:999;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links li{
        margin:15px 0;
    }

    /* HERO */

    .hero{
        min-height:85vh;
        padding:100px 20px 50px;
        background-attachment:scroll;
    }

    .hero-logo{
        width:140px;
        margin-bottom:20px;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.8;
    }

    .slogan{
        font-size:12px;
        letter-spacing:2px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:12px;
    }

    .btn{
        width:100%;
        text-align:center;
        padding:14px;
        font-size:15px;
    }

    /* ABOUT */

    .about{
        padding:70px 5%;
        gap:30px;
    }

    .about-content h2{
        font-size:28px;
    }

    .about-content p{
        font-size:14px;
        text-align:left;
    }

    .about-page-image img,
    .about-image img{
        width:100%;
        height:300px;
        object-fit:cover;
    }

    /* SERVICES */

    .services{
        padding:70px 5%;
    }

    .section-title{
        font-size:28px;
        margin-bottom:35px;
    }

    .service-container{
        grid-template-columns:1fr;
        gap:20px;
    }

    .service-card{
        padding:25px;
    }

    .service-card i{
        font-size:40px;
    }

    .service-card h3{
        font-size:22px;
    }

    .service-card p{
        font-size:14px;
    }

    /* CONTACT */

    .contact{
        padding:70px 5%;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select{
        padding:14px;
        font-size:14px;
    }

    /* NESTED SERVICES */

    .service-group{
        margin-bottom:12px;
    }

    .service-group > label{
        padding:12px;
        font-size:14px;
    }

    .sub-menu{
        padding:12px;
    }

    .sub-menu label{
        font-size:13px;
    }

    /* FOOTER */

    footer{
        padding:50px 20px;
    }

    footer img{
        width:90px;
    }

    footer h2{
        font-size:24px;
    }

    .footer-slogan{
        font-size:11px;
        letter-spacing:2px;
    }

    .social-icons a{
        width:40px;
        height:40px;
        font-size:16px;
    }

    /* WHATSAPP */

    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:28px;
        bottom:20px;
        right:20px;
    }
}

/* EXTRA SMALL DEVICES */

@media screen and (max-width:480px){

    .hero-content h1{
        font-size:26px;
    }

    .hero-content p{
        font-size:13px;
    }

    .section-title{
        font-size:24px;
    }

    .about-content h2{
        font-size:24px;
    }

    .service-card h3{
        font-size:18px;
    }

    .logo-area h2{
        font-size:16px;
    }

    .logo-area p{
        display:none;
    }

    .btn{
        font-size:14px;
    }
}
/* ========================================= */
/* PREMIUM POPUP */
/* ========================================= */

.popup{

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.7);

    display: flex;

    justify-content: center;
    align-items: center;

    opacity: 0;

    visibility: hidden;

    transition: 0.4s;

    z-index: 999999;

}

.popup.active{

    opacity: 1;

    visibility: visible;

}

.popup-content{

    background: #111;

    padding: 40px;

    border-radius: 20px;

    text-align: center;

    width: 90%;
    max-width: 400px;

    border: 1px solid gold;

    transform: scale(0.7);

    transition: 0.4s;

}

.popup.active .popup-content{

    transform: scale(1);

}

.popup-content i{

    font-size: 70px;

    color: #d4af37;

    margin-bottom: 20px;

}

.popup-content h2{

    color: white;

    margin-bottom: 10px;

}

.popup-content p{

    color: #ccc;

    margin-bottom: 25px;

}

.popup-content button{

    padding: 12px 30px;

    border: none;

    border-radius: 30px;

    background: gold;

    color: black;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;

}

.popup-content button:hover{

    transform: scale(1.05);

}

/* ========================================= */
/* UPDATED SERVICE LIST DESIGN */
/* ========================================= */

.services-checkbox{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:12px;
    margin-bottom:20px;
}

/* MAIN SERVICE BOX */

.service-group{
    background:#111;
    border:1px solid rgba(212,175,55,0.15);
    border-radius:10px;
    overflow:hidden;
    transition:0.3s;
}

/* MAIN LABEL */

.service-group > label{

    display:flex;
    align-items:center;
    gap:8px;

    padding:12px 14px;

    cursor:pointer;

    color:#fff;

    font-size:14px;
    font-weight:500;

    transition:0.3s;
}

.service-group > label:hover{

    background:rgba(212,175,55,0.08);

    border-color:#d4af37;
}

/* CHECKBOX SIZE */

.service-group input[type="checkbox"]{

    width:15px;
    height:15px;

    accent-color:#d4af37;

    cursor:pointer;
}

/* SUBMENU */

.submenu{

    display:none;

    margin-top:5px;

    padding:10px 15px;

    background:#181818;

    border-top:1px solid rgba(212,175,55,0.12);
}

/* SUBMENU LABEL */

.submenu label{

    display:flex;
    align-items:center;

    gap:8px;

    padding:7px 0;

    color:#ccc;

    font-size:13px;

    cursor:pointer;

    transition:0.3s;
}

.submenu label:hover{

    color:#d4af37;
}

/* SUBMENU CHECKBOX */

.submenu input[type="checkbox"]{

    width:14px;
    height:14px;
}

/* MOBILE */

@media(max-width:768px){

    .services-checkbox{

        grid-template-columns:1fr;
    }

    .service-group > label{

        font-size:13px;

        padding:11px 12px;
    }

    .submenu label{

        font-size:12px;
    }

    .service-error{
    color:#ff4d4d;
    font-size:14px;
    margin-top:10px;
    display:none;
}


}
/* ================= MEDIA SHOWCASE ================= */


.portfolio{

padding:120px 8%;

background:#050505;

}



.media-slider{

display:flex;

gap:25px;

overflow-x:auto;

scroll-behavior:smooth;

}



.media-slider::-webkit-scrollbar{

height:8px;

}



.media-slider::-webkit-scrollbar-thumb{

background:#d4af37;

border-radius:20px;

}



.media-item{

min-width:350px;

height:450px;

border-radius:25px;

overflow:hidden;

border:1px solid rgba(212,175,55,0.3);

}



.media-item img,
.media-item video{

width:100%;

height:100%;

object-fit:cover;

}



.media-item:hover{

transform:scale(1.05);

transition:.4s;

}




@media(max-width:768px){


.media-item{

min-width:280px;

height:350px;

}


}
/* ================= AP WORK SECTION ================= */


.work-section{

padding:120px 8%;

background:#0c0c0c;

overflow:hidden;

}



.work-text{

text-align:center;

color:#ccc;

margin-bottom:50px;

}



.work-slider{

display:flex;

gap:30px;

overflow-x:auto;

scroll-behavior:smooth;

padding-bottom:20px;

}



.work-slider::-webkit-scrollbar{

height:8px;

}



.work-slider::-webkit-scrollbar-thumb{

background:#d4af37;

border-radius:20px;

}



.work-card{

min-width:380px;

height:450px;

border-radius:25px;

overflow:hidden;

border:1px solid rgba(212,175,55,0.3);

}



.work-card img,
.work-card video{


width:100%;

height:100%;

object-fit:cover;

}



.work-card:hover{

transform:translateY(-10px);

transition:.4s;

box-shadow:0 20px 40px rgba(212,175,55,.2);

}




@media(max-width:768px){


.work-card{

min-width:280px;

height:350px;

}


}
/* ================= OUR WORK ================= */


.our-work{

padding:100px 8%;
background:#050505;

}


.work-text{

text-align:center;
color:#ccc;
margin-bottom:50px;

}



/* IMAGE HORIZONTAL SCROLL */


.work-slider{


display:flex;

gap:25px;

overflow-x:auto;

scroll-behavior:smooth;

padding-bottom:20px;


}



.work-slider img{


min-width:320px;

height:420px;

object-fit:cover;

border-radius:20px;

border:2px solid rgba(212,175,55,.2);

transition:.4s;


}



.work-slider img:hover{

transform:scale(1.05);

border-color:#d4af37;

}




/* VIDEO */


.video-title{

margin-top:70px;

}



.video-slider{


display:flex;

gap:25px;

overflow-x:auto;

}



.video-slider video{


min-width:350px;

height:450px;

object-fit:cover;

border-radius:20px;

border:2px solid rgba(212,175,55,.2);


}




@media(max-width:768px){


.work-slider img{

min-width:260px;

height:350px;

}


.video-slider video{

min-width:280px;

height:350px;

}


}
/* ============================= */
/* WORK GALLERY */
/* ============================= */


.work-text{

    text-align:center;

    color:#ccc;

    margin-bottom:50px;

}




.work-gallery{


    display:grid;

    grid-template-columns:
    repeat(4,1fr);


    gap:25px;


    padding:20px 8%;


}




.work-gallery img{


    width:100%;

    height:280px;


    object-fit:cover;


    border-radius:20px;


    border:1px solid rgba(212,175,55,.3);


    transition:.4s;


}



.work-gallery img:hover{


    transform:translateY(-10px);


    border-color:#d4af37;


}






/* ============================= */
/* VIDEO GRID */
/* ============================= */



.video-gallery{


    display:grid;


    grid-template-columns:
    repeat(3,1fr);


    gap:30px;


    padding:20px 8%;


}



.video-gallery video{


    width:100%;


    height:500px;


    object-fit:cover;


    border-radius:25px;


    border:1px solid rgba(212,175,55,.3);


    background:#000;


}






/* ============================= */
/* INSTAGRAM */
/* ============================= */


.instagram-end{


    text-align:center;

    margin:70px 0;


}



.instagram-end a{


    width:90px;

    height:90px;


    display:inline-flex;


    justify-content:center;

    align-items:center;


    border-radius:50%;


    background:

    linear-gradient(
    45deg,
    #feda75,
    #d62976,
    #962fbf,
    #4f5bd5
    );


    color:white;


    font-size:50px;


    text-decoration:none;


}



.instagram-end h3{


    color:#d4af37;

    margin-top:20px;


}






/* MOBILE */


@media(max-width:768px){


.work-gallery{


grid-template-columns:1fr 1fr;


}



.video-gallery{


grid-template-columns:1fr;


}



.video-gallery video{


height:400px;


}


}