body{
    font-family:'Poppins',sans-serif;
    background:#fff;
}

/*==========================
        NAVBAR
==========================*/

.header-area{
    position:absolute;
    width:100%;
    top:20px;
    left:0;
    z-index:999;
}

.custom-navbar{
    background:#000;
    border-radius:70px;
    padding:14px 20px;
    box-shadow:0 12px 35px rgba(0,0,0,.15);
}

/* Logo */

.logo-text{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
     color:#fff !important;
}

.logo-image{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.logo-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.3s;
}

.logo-text:hover .logo-image img{
    transform:scale(1.05);
}

.logo-content h4{
    margin:0;
    color:#fff;
    font-size:26px;
    font-weight:700;
    line-height:1.1;
}

.logo-content span{
    display:block;
    color:#666;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}

@media(max-width:991px){

    .logo-image{
        width:48px;
        height:48px;
    }

    .logo-content h4{
        font-size:22px;
    }

    .logo-content span{
        font-size:11px;
    }

}

/* Menu */

.navbar-nav{
    gap:18px;
}

.nav-link{
    color:#fff !important;
    font-size:17px;
    font-weight:500;
    padding:12px 18px !important;
    border-radius:30px;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:#DCAB4C !important;
}

/* Right Buttons */

.nav-buttons{
    display:flex;
    align-items:center;
    gap:15px;
}

.login-btn{
    background:#fff;
    color:#000;
    padding:12px 26px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.login-btn:hover{
    background:#DCAB4C;
    color:#000;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:12px 26px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.whatsapp-btn:hover{
    background:#1ca851;
    color:#fff;
}

/* Mobile */

.navbar-toggler{
    border:none;
    color:#fff;
    font-size:24px;
}

.navbar-toggler:focus{
    box-shadow:none;
}

@media(max-width:991px){

    .custom-navbar{
        border-radius:30px;
        padding:15px;
    }

    .navbar-collapse{
        margin-top:20px;
    }

    .navbar-nav{
        text-align:center;
        gap:5px;
    }

    .nav-buttons{
        flex-direction:column;
        margin-top:20px;
    }

    .login-btn,
    .whatsapp-btn{
        width:100%;
        text-align:center;
    }

    .logo-content h4{
        font-size:18px;
    }

    .logo-content span{
        font-size:11px;
    }
}

/*=====================================
            HERO SECTION
=====================================*/

.hero-slider{
    padding:180px 0 100px;
    background:#f7f7f7;
    position:relative;
    overflow:hidden;
}

.hero-slider::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:420px;
    height:420px;
    background:rgba(255,212,59,.12);
    border-radius:50%;
}

.hero-slider::after{
    content:"";
    position:absolute;
    left:-220px;
    bottom:-220px;
    width:480px;
    height:480px;
    background:rgba(0,0,0,.04);
    border-radius:50%;
}

.hero-row{
    min-height:700px;
    align-items:center;
}

/* Badge */

.hero-badge,
.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#000;
    color:#DCAB4C;
    padding:12px 22px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:30px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/* Heading */

.hero-title{
    font-size:60px;
    font-weight:800;
    line-height:1.15;
    color:#111;
    margin-bottom:25px;
}

.hero-title span{
    color:#DCAB4C;
}

/* Description */

.hero-desc{
    color:#666;
    font-size:18px;
    line-height:1.9;
    max-width:620px;
}

/* Buttons */

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.hero-btn{
    background:#000;
    color:#fff;
    padding:15px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.hero-btn:hover{
    background:#DCAB4C;
    color:#000;
    transform:translateY(-4px);
}

.hero-outline-btn{
    border:2px solid #000;
    color:#000;
    padding:15px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.hero-outline-btn:hover{
    background:#000;
    color:#fff;
}

/* Stats */

.hero-stats{
    display:flex;
    gap:55px;
    margin-top:60px;
}

.hero-stats h3{
    font-size:42px;
    font-weight:800;
    color:#000;
    margin-bottom:5px;
}

.hero-stats span{
    color:#777;
}

/* Image */

.hero-image-wrapper{
    position:relative;
    width:100%;
    max-width:560px;
}

.hero-image{
    width:100%;
    border-radius:35px;
    box-shadow:0 30px 70px rgba(0,0,0,.15);
}

/* Floating Cards */

.floating-card{
    position:absolute;
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    padding:18px 22px;
    border-radius:22px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.floating-card i{
    width:55px;
    height:55px;
    background:#000;
    color:#DCAB4C;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.floating-card strong{
    display:block;
    color:#111;
    font-size:17px;
}

.floating-card p{
    margin:0;
    color:#777;
    font-size:14px;
}

.card-top{
    top:45px;
    left:-55px;
}

.card-bottom{
    bottom:40px;
    right:-40px;
}

/* Swiper */

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#999;
    opacity:1;
}

.swiper-pagination-bullet-active{
    width:32px;
    border-radius:10px;
    background:#DCAB4C;
}

.swiper-button-next,
.swiper-button-prev{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#000;
    color:#fff;
    transition:.35s;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:18px;
    font-weight:bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background:#DCAB4C;
    color:#000;
}

/* Responsive */

@media(max-width:991px){

    .hero-slider{
        padding-top:140px;
    }

    .hero-row{
        min-height:auto;
        text-align:center;
    }

    .hero-title{
        font-size:40px;
    }

    .hero-desc{
        margin:auto;
        font-size:16px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-stats{
        justify-content:center;
        gap:30px;
        flex-wrap:wrap;
    }

    .hero-image-wrapper{
        margin-top:60px;
    }

    .card-top,
    .card-bottom{
        position:relative;
        top:auto;
        left:auto;
        right:auto;
        bottom:auto;
        margin-top:20px;
    }

    .floating-card{
        width:100%;
    }

    .swiper-button-next,
    .swiper-button-prev{
        display:none;
    }
}

/*=====================================
            ABOUT SECTION
======================================*/

.about-section{
    padding:100px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.about-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(255,212,59,.08);
    border-radius:50%;
    top:-180px;
    right:-180px;
}

.about-section::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,0,0,.03);
    border-radius:50%;
    left:-220px;
    bottom:-220px;
}

.about-section .container{
    position:relative;
    z-index:2;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#000;
    color:#DCAB4C;
    padding:12px 22px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:25px;
}

.about-title{
    font-size:48px;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
    line-height:1.2;
}

.about-text{
    color:#666;
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;
}

/* Features */

.feature-item{
    display:flex;
    gap:18px;
    margin-bottom:25px;
    align-items:flex-start;
}

.feature-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#000;
    color:#DCAB4C;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.feature-item h5{
    font-weight:700;
    margin-bottom:6px;
}

.feature-item p{
    color:#666;
    margin:0;
}

/* Right */

.about-wrapper{
    position:relative;
    display:grid;
    gap:25px;
}

.about-card{
    background:#fff;
    padding:35px;
    border-radius:30px;
    border:1px solid #eee;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.35s;
}

.about-card:hover{
    transform:translateY(-8px);
    border-color:#DCAB4C;
}

.card-icon{
    width:70px;
    height:70px;
    background:#000;
    color:#DCAB4C;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.about-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.about-card p{
    color:#666;
    line-height:1.8;
}

/* Experience */

.experience-box{
    position:absolute;
    right:-20px;
    top:-35px;
    background:#DCAB4C;
    color:#000;
    width:150px;
    height:150px;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    z-index:5;
}

.experience-box h2{
    font-size:42px;
    margin:0;
    font-weight:800;
}

.experience-box span{
    font-size:14px;
    text-align:center;
    font-weight:600;
}

/* Stats */

.stats-box{
    background:#000;
    color:#fff;
    padding:35px;
    border-radius:25px;
    text-align:center;
    transition:.35s;
}

.stats-box:hover{
    background:#DCAB4C;
    color:#000;
    transform:translateY(-8px);
}

.stats-box h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.stats-box span{
    font-size:16px;
}

/* Responsive */

@media(max-width:991px){

    .about-section{
        padding:70px 0;
    }

    .about-title{
        font-size:34px;
    }

    .about-text{
        font-size:16px;
    }

    .experience-box{
        position:relative;
        right:auto;
        top:auto;
        margin:0 auto 25px;
    }

}
/*=====================================
        SERVICES SECTION
======================================*/

.services-section{
    padding:100px 0;
    background:#f8f8f8;
    position:relative;
    overflow:hidden;
}

.services-section::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:rgba(255,212,59,.08);
    border-radius:50%;
    top:-180px;
    right:-180px;
}

.services-section::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(0,0,0,.03);
    border-radius:50%;
    bottom:-200px;
    left:-180px;
}

.services-section .container{
    position:relative;
    z-index:2;
}

/* Card */

.service-card{
    background:#fff;
    padding:45px 35px;
    border-radius:30px;
    border:1px solid #ececec;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:5px;
    background:#DCAB4C;
    transition:.35s;
}

.service-card:hover::before{
    width:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#DCAB4C;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/* Icon */

.service-icon{
    width:85px;
    height:85px;
    border-radius:25px;
    background:#000;
    color:#DCAB4C;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:30px;
    transition:.35s;
}

.service-card:hover .service-icon{
    background:#DCAB4C;
    color:#000;
    transform:rotate(-8deg);
}

/* Heading */

.service-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
    color:#111;
}

/* Description */

.service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

/* Button */

.service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#000;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.service-btn i{
    transition:.3s;
}

.service-btn:hover{
    color:#d4a700;
}

.service-btn:hover i{
    transform:translateX(8px);
}

/* Mobile */

@media(max-width:991px){

    .services-section{
        padding:70px 0;
    }

    .service-card{
        padding:35px 25px;
    }

    .service-icon{
        width:70px;
        height:70px;
        font-size:28px;
    }

    .service-card h4{
        font-size:21px;
    }

}

/*=====================================
        WHY CHOOSE US
======================================*/

.why-section{
    padding:100px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.why-section::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(255,212,59,.08);
    top:-180px;
    left:-180px;
}

.why-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(0,0,0,.03);
    right:-220px;
    bottom:-220px;
}

.why-section .container{
    position:relative;
    z-index:2;
}

/* Left */

.why-content h3{
    font-size:42px;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
    line-height:1.25;
}

.why-content p{
    color:#666;
    line-height:1.9;
    font-size:17px;
    margin-bottom:30px;
}

/* Cards */

.why-card{
    background:#fff;
    border-radius:28px;
    padding:35px 25px;
    text-align:center;
    border:1px solid #ececec;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.why-card:hover{
    background:#000;
    border-color:#DCAB4C;
    transform:translateY(-8px);
}

.why-card:hover h5,
.why-card:hover p{
    color:#fff;
}

.why-card:hover .why-icon{
    background:#DCAB4C;
    color:#000;
}

/* Icon */

.why-icon{
    width:75px;
    height:75px;
    border-radius:22px;
    background:#000;
    color:#DCAB4C;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:0 auto 20px;
    transition:.35s;
}

.why-card h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
    color:#111;
}

.why-card p{
    margin:0;
    color:#666;
    line-height:1.7;
}

/* Mobile */

@media(max-width:991px){

    .why-section{
        padding:70px 0;
    }

    .why-content{
        text-align:center;
        margin-bottom:20px;
    }

    .why-content h3{
        font-size:32px;
    }

    .why-content p{
        font-size:16px;
    }

    .why-card{
        padding:30px 20px;
    }

}

/*=====================================
        GLOBAL REACH
======================================*/

.global-section{
    padding:100px 0;
    background:#f8f8f8;
    position:relative;
    overflow:hidden;
}

.global-section::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(255,212,59,.08);
    top:-180px;
    right:-180px;
}

.global-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(0,0,0,.03);
    left:-220px;
    bottom:-220px;
}

.global-section .container{
    position:relative;
    z-index:2;
}

/* Country Card */

.country-card{
    background:#fff;
    border-radius:30px;
    padding:40px 25px;
    text-align:center;
    border:1px solid #ececec;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    height:100%;
}

/* Flag */

.country-flag{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:24px;
    background:#000;
    color:#DCAB4C;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
}

/* Title */

.country-card h4{
    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}

/* Text */

.country-card span{
    color:#666;
    line-height:1.7;
}

/* Responsive */

@media(max-width:991px){

    .global-section{
        padding:70px 0;
    }

    .country-card{
        padding:35px 20px;
    }

    .country-flag{
        width:70px;
        height:70px;
        font-size:34px;
    }

}

/*=====================================
        PROCESS SECTION
======================================*/

.process-section{
    padding:100px 0;
    background:#fff;
}

.process-box{
    background:#fff;
    border:1px solid #ececec;
    border-radius:30px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    height:100%;
}

.process-number{
    width:60px;
    height:60px;
    background:#DCAB4C;
    color:#000;
    border-radius:50%;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
}

.process-icon{
    width:85px;
    height:85px;
    background:#000;
    color:#DCAB4C;
    border-radius:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    font-size:34px;
}

.process-box h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.process-box p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/*=====================================
        INDUSTRIES SECTION
======================================*/

.industries-section{
    padding:100px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.industries-section::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:rgba(255,212,59,.08);
    border-radius:50%;
    top:-180px;
    left:-180px;
}

.industries-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(0,0,0,.03);
    border-radius:50%;
    right:-220px;
    bottom:-220px;
}

.industries-section .container{
    position:relative;
    z-index:2;
}

.industry-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:30px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.industry-card:hover{
    transform:translateY(-10px);
    border-color:#DCAB4C;
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.industry-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:22px;
    background:#000;
    color:#DCAB4C;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    transition:.35s;
}

.industry-card:hover .industry-icon{
    background:#DCAB4C;
    color:#000;
}

.industry-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.industry-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

    .industries-section{
        padding:70px 0;
    }

    .industry-card{
        padding:30px 20px;
    }

    .industry-icon{
        width:70px;
        height:70px;
        font-size:28px;
    }

    .industry-card h4{
        font-size:21px;
    }

}

/*=====================================
        EXPERTISE SECTION
======================================*/

.expertise-section{
    padding:100px 0;
    background:#f8f8f8;
    position:relative;
    overflow:hidden;
}

.expertise-section::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(255,212,59,.08);
    top:-180px;
    right:-180px;
}

.expertise-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(0,0,0,.03);
    left:-220px;
    bottom:-220px;
}

.expertise-section .container{
    position:relative;
    z-index:2;
}

.expertise-card{

    background:#fff;
    border-radius:28px;
    padding:35px 30px;
    text-align:center;
    border:1px solid #ececec;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.expertise-card:hover{

    transform:translateY(-10px);
    border-color:#DCAB4C;
    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.expertise-icon{

    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:20px;
    background:#000;
    color:#DCAB4C;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    transition:.35s;

}

.expertise-card:hover .expertise-icon{

    background:#DCAB4C;
    color:#000;

}

.expertise-card h4{

    font-size:23px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;

}

.expertise-card p{

    color:#666;
    line-height:1.8;
    margin:0;

}

@media(max-width:991px){

    .expertise-section{

        padding:70px 0;

    }

    .expertise-card{

        padding:30px 20px;

    }

    .expertise-icon{

        width:70px;
        height:70px;
        font-size:28px;

    }

}

/*==============================
        TRUST SECTION
===============================*/

.trust-section{

    padding:100px 0;
    background:#fff;
}

.trust-desc{

    color:#666;
    line-height:1.9;
    margin:25px 0 35px;

}

.trust-list{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.trust-item{

    display:flex;
    align-items:center;
    gap:15px;
    font-size:18px;
    font-weight:500;

}

.trust-item i{

    width:42px;
    height:42px;
    background:#DCAB4C;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;

}

.counter-box{

    background:#fff;
    border-radius:25px;
    text-align:center;
    padding:40px 20px;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    border:1px solid #eee;
    height:100%;
    transition:.35s;

}

.counter-box:hover{

    transform:translateY(-8px);
    border-color:#DCAB4C;

}

.counter-box h2{

    font-size:48px;
    font-weight:800;
    color:#000;
    margin-bottom:10px;

}

.counter-box p{

    color:#666;
    font-size:17px;
    margin:0;

}

@media(max-width:991px){

    .trust-section{

        padding:70px 0;

    }

    .counter-box{

        padding:30px 15px;

    }

    .counter-box h2{

        font-size:36px;

    }

}

/*=========================================
            CONTACT PAGE
=========================================*/

.contact-hero{
    position:relative;
    padding:140px 0 110px;
    background:linear-gradient(135deg,#0d0d0d,#1a1a1a);
    overflow:hidden;
}

.contact-hero::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,212,59,.08);
    top:-180px;
    left:-180px;
}

.contact-hero::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    bottom:-220px;
    right:-220px;
}

.contact-hero .container{
    position:relative;
    z-index:2;
}

.contact-hero h1{
    font-size:58px;
    font-weight:800;
    color:#fff;
    line-height:1.2;
    margin:20px 0;
}

.contact-hero h1 span{
    color:#DCAB4C;
}

.contact-hero p{
    color:#d8d8d8;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
    max-width:620px;
}


.hero-buttons .btn-dark{
    background:#DCAB4C;
    border:none;
    color:#111;
}

.hero-buttons .btn-dark:hover{
    background:#f4c814;
    color:#111;
}

.hero-buttons .btn-outline-dark{
    border:2px solid #DCAB4C;
    color:#DCAB4C;
}

.hero-buttons .btn-outline-dark:hover{
    background:#DCAB4C;
    color:#111;
}

.hero-circle{
    width:320px;
    height:320px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#DCAB4C,#c79b12);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 30px 60px rgba(0,0,0,.35);
}

.hero-circle i{
    font-size:120px;
    color:#111;
}

/*========================*/

.contact-info{
    margin-top:-70px;
    position:relative;
    z-index:10;
}

.info-card{
    background:#fff;
    border-radius:28px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #eee;
    height:100%;
}

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
    border-color:#DCAB4C;
}

.info-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:22px;
    background:#111;
    color:#DCAB4C;
    font-size:32px;
    margin-bottom:25px;
}

.info-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
}

.info-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/*========================*/

.office-section{
    padding:110px 0;
    background:#fafafa;
}

.office-content h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
}

.office-content p{
    color:#666;
    line-height:2;
    margin-bottom:35px;
}

.office-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.office-list div{
    display:flex;
    align-items:center;
    font-weight:600;
    color:#222;
}

.office-list i{
    color:#DCAB4C;
    margin-right:12px;
    font-size:20px;
}

.business-hours{
    background:#111;
    border-radius:30px;
    padding:45px;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.business-hours h3{
    color:#DCAB4C;
    margin-bottom:30px;
    font-weight:700;
}

.business-hours i{
    margin-right:12px;
}

.business-hours table{
    margin:0;
}

.business-hours td{
    color:#f2f2f2;
    border:none !important;
    padding:14px 0 !important;
}

.business-hours tr:not(:last-child) td{
    border-bottom:1px solid rgba(255,255,255,.08) !important;
}

/*========================*/

.contact-cta{
    padding:90px 0;
    background:#111;
}

.contact-cta h2{
    color:#fff;
    font-size:46px;
    font-weight:700;
    margin-bottom:18px;
}

.contact-cta p{
    color:#d5d5d5;
    font-size:18px;
    margin:0;
}

.contact-cta .btn-warning{
    background:#DCAB4C;
    border:none;
    color:#111;
    font-weight:700;
    height:60px;
    line-height:45px;
    transition:.3s;
}

.contact-cta .btn-warning:hover{
    background:#f4c814;
    transform:translateY(-3px);
}

/*========================*/

.map-section{
    width:100%;
}

.map-section iframe{
    width:100%;
    height:550px;
    border:0;
    display:block;
}

/*========================*/

@media(max-width:991px){

    .contact-hero{
        padding:100px 0 80px;
        text-align:center;
    }

    .contact-hero h1{
        font-size:42px;
    }

    .hero-circle{
        width:220px;
        height:220px;
        margin-top:50px;
    }

    .hero-circle i{
        font-size:80px;
    }

    .contact-info{
        margin-top:50px;
    }

    .office-section{
        padding:70px 0;
    }

    .office-list{
        grid-template-columns:1fr;
    }

    .business-hours{
        margin-top:40px;
        padding:30px;
    }

    .contact-cta{
        text-align:center;
    }

    .contact-cta h2{
        font-size:34px;
    }

    .contact-cta .text-lg-right{
        text-align:center!important;
        margin-top:30px;
    }

    .map-section iframe{
        height:400px;
    }

}

@media(max-width:576px){

    .contact-hero h1{
        font-size:34px;
    }

    .contact-hero p{
        font-size:16px;
    }

    .hero-buttons .btn{
        width:100%;
        margin:10px 0 !important;
    }

    .info-card{
        padding:30px 20px;
    }

    .office-content h2{
        font-size:30px;
    }

    .contact-cta h2{
        font-size:28px;
    }

}



/*====================================
            FOOTER
====================================*/

.footer{
    background:#000;
    color:#fff;
    padding:90px 0 30px;

    border-radius:60px 60px 0 0;
    position:relative;
    overflow:hidden;
}

.footer::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,212,59,.08);
}

.footer::after{
    content:"";
    position:absolute;
    bottom:-150px;
    left:-150px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(13,110,253,.08);
}

.footer .container{
    position:relative;
    z-index:2;
}

/* Logo */

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.footer-logo img{
    height:60px;
    width:auto;
}

.footer-logo-text h4{
    margin:0;
    color:#fff;
    font-size:26px;
    font-weight:700;
    line-height:1.1;
}

.footer-logo-text span{
    display:block;
    color:#DCAB4C;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}

@media(max-width:768px){

    .footer-logo img{
        height:50px;
    }

    .footer-logo-text h4{
        font-size:22px;
    }

    .footer-logo-text span{
        font-size:11px;
    }

}
/* Description */

.footer-text{
    color:#bcbcbc;
    line-height:1.9;
    font-size:15px;
}

/* Titles */

.footer h4{
    color:#fff;
    font-size:22px;
    margin-bottom:30px;
    position:relative;
    font-weight:700;
}

.footer h4::after{
    content:"";
    width:55px;
    height:3px;
    background:#DCAB4C;
    position:absolute;
    left:0;
    bottom:-12px;
    border-radius:10px;
}

/* Links */

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:16px;
}

.footer-links a{
    color:#c9c9c9;
    text-decoration:none;
    transition:.3s;
    position:relative;
}

.footer-links a::before{
    content:"➜";
    opacity:0;
    margin-right:0;
    transition:.3s;
}

.footer-links a:hover{
    color:#DCAB4C;
    padding-left:8px;
}

.footer-links a:hover::before{
    opacity:1;
    margin-right:8px;
}

/* Contact */

.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-contact li{
    display:flex;
    align-items:flex-start;
    margin-bottom:22px;
}

.footer-contact i{
    width:48px;
    height:48px;
    background:#161616;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#DCAB4C;
    margin-right:15px;
    flex-shrink:0;
}

.footer-contact strong{
    display:block;
    color:#fff;
    margin-bottom:5px;
}

.footer-contact span,
.footer-contact a{
    color:#bdbdbd;
    text-decoration:none;
}

.footer-contact a:hover{
    color:#DCAB4C;
}

/* Social */

.footer-social{
    display:flex;
    gap:12px;
    margin-top:35px;
}

.footer-social a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#151515;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
    text-decoration:none;
}

.footer-social a:hover{
    background:#DCAB4C;
    color:#000;
    transform:translateY(-5px);
}

/* Divider */

.footer hr{
    border-color:rgba(255,255,255,.08);
    margin:55px 0 25px;
}

/* Bottom */

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom p{
    margin:0;
    color:#a8a8a8;
}

.footer-bottom-links{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.footer-bottom-links a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.3s;
}

.footer-bottom-links a:hover{
    color:#DCAB4C;
}

/* Responsive */

@media(max-width:991px){

    .footer{
        border-radius:40px 40px 0 0;
        padding:70px 0 25px;
    }

    .footer-text{
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

    .footer h4{
        margin-top:35px;
    }

    .footer-bottom{
        text-align:center;
        justify-content:center;
    }

    .footer-bottom-links{
        justify-content:center;
    }
}

/*==========================
Event Booking
==========================*/

.booking-wrapper{
    display:flex;
    min-height:100vh;
    background:#0b0b0b;
    padding-top:120px;
}

/*==========================
Left Image
==========================*/

.booking-left{
    width:52%;
    padding:40px;
}

.booking-left img{
    width:100%;
    height:calc(100vh - 180px);
    object-fit:cover;
    border-radius:6px;
}

@media (max-width: 768px){
    .booking-left{
        display:none;
    }
}

/*==========================
Right Form
==========================*/

.booking-right{
    width:48%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px 80px;
}

.booking-card{
    width:100%;
    max-width:500px;
    background:none;
    box-shadow:none;
    border:none;
    padding:0;
}

/*==========================
Heading
==========================*/

.booking-title{
    color:#d4af37;
    font-size:46px;
    font-weight:300;
    letter-spacing:2px;
    margin-bottom:12px;
    font-family:Georgia, serif;
}

.booking-subtitle{
    color:#9b9b9b;
    font-size:15px;
    margin-bottom:45px;
}

/*==========================
Labels
==========================*/

.form-group{
    margin-bottom:28px;
}

.form-group label{
    color:#d8d8d8;
    font-size:13px;
    font-weight:500;
    margin-bottom:8px;
    display:block;
}

/*==========================
Inputs
==========================*/

.form-control{
    background:transparent;
    border:none;
    border-bottom:1px solid #2f2f2f;
    border-radius:0;
    height:50px;
    color:#fff;
    font-size:15px;
    padding:0;
    box-shadow:none;
}

.form-control:focus{
    background:transparent;
    border-color:#d4af37;
    color:#fff;
    box-shadow:none;
}

.form-control::placeholder{
    color:#6d6d6d;
}

select.form-control{
    cursor:pointer;
}

/* dropdown */

select option{
    background:#161616;
    color:#fff;
}

/*==========================
Button
==========================*/

.btn-warning{
    background:#c9a227;
    border:none;
    color:#111;
    border-radius:6px;
    height:52px;
    width:200px;
    font-size:15px;
    font-weight:600;
    transition:.35s;
}

.btn-warning:hover{
    background:#dcb53d;
    transform:translateY(-2px);
}

.btn-warning:focus{
    box-shadow:none;
}

/*==========================
Response
==========================*/

#responseMsg{
    margin-top:25px;
    display:none;
}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.booking-wrapper{
    flex-direction:column;
    padding-top:90px;
}

.booking-left,
.booking-right{
    width:100%;
}

.booking-left{
    padding:20px;
}

.booking-left img{
    height:320px;
}

.booking-right{
    padding:40px 25px;
}

.booking-card{
    max-width:100%;
}

.booking-title{
    font-size:36px;
}

}

@media(max-width:576px){

.booking-title{
    font-size:30px;
}

.btn-warning{
    width:100%;
}

}

.event-display{
    display:flex;
    align-items:center;
    gap:15px;
    padding:16px 18px;
    background:#181818;
    border:1px solid #2d2d2d;
    border-left:4px solid #d4af37;
    border-radius:10px;
    transition:.3s;
}

.event-display:hover{
    border-color:#d4af37;
    background:#1f1f1f;
}

.event-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.event-content small{
    display:block;
    color:#999;
    font-size:12px;
    margin-bottom:3px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.event-content h5{
    margin:0;
    color:#fff;
    font-size:20px;
    font-weight:600;
}

/*Event Modal Start*/
    .invitation-modal{
    background:transparent;
    border:none;
    box-shadow:none;
}

#bookingSuccessModal .modal-dialog{
    max-width:470px;
}

#bookingSuccessModal .modal-content{
    background:transparent;
    border:none;
    box-shadow:none;
}

#bookingSuccessModal .modal-backdrop.show{
    opacity:.85;
}

.close-modal{
    position:absolute;
    top:12px;
    right:12px;
    width:36px;
    height:36px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#fff;
    z-index:999;
    transition:.3s;
}

.close-modal:hover{
    background:#d4af37;
    color:#111;
    transform:rotate(90deg);
}

#bookingSuccessModal.fade .modal-dialog{
    transform:scale(.85);
    transition:.35s ease;
}

#bookingSuccessModal.show .modal-dialog{
    transform:scale(1);
}

.elite-invitation-card {
    background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.15);
    max-width: 460px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* Ambient Glow effect inside the card */
.elite-invitation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* High-End BMW Cinematic Header */
.card-header-banner {
    height: 210px;
    background: linear-gradient(to bottom, rgba(10,10,10,0.2), rgba(10,10,10,0.95)), url('https://images.unsplash.com/photo-1555215695-3004980ad54e?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

/* Top Bar Container for Logo & Badges */
.card-top-bar {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Greentik Logo Styling on Top Left */
.brand-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8));
}

.vip-badge-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.vip-badge {
    background: rgba(212, 175, 55, 0.15);
    color: #ffd700;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.ticket-number-badge {
    background: rgba(0, 0, 0, 0.7);
    color: #ffd700;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.header-title-group h2 {
    color: #d4af37;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.header-title-group h1 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Body Details Section */
.card-body-section {
    padding: 25px;
}

/* Elite Welcome Note */
.elite-welcome-box {
    background: rgba(25, 25, 25, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 3px solid #d4af37;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #cccccc;
    line-height: 1.5;
    backdrop-filter: blur(5px);
}

.elite-welcome-box .user-highlight {
    color: #ffd700;
    font-weight: 700;
}

.elite-welcome-box .event-highlight {
    color: #ffffff;
    font-weight: 600;
}

/* Modern Grid for Event Details */
.event-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.meta-card {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-card i {
    font-size: 18px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.meta-info small {
    display: block;
    font-size: 10px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.meta-info span {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

/* Full width card for Event Type */
.meta-card-full {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.meta-card-full i {
    font-size: 18px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    padding: 10px;
    border-radius: 8px;
}

/* Sponsors Section in Footer */
.sponsors-container {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    text-align: center;
}

.sponsors-title {
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.sponsors-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.sponsor-logo-item {
    height: 30px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    filter: grayscale(20%) contrast(110%);
    transition: filter 0.3s ease;
}

.sponsor-logo-item:hover {
    filter: none;
}

/*Event Modal End*/

.countdown-section{
    background:linear-gradient(135deg,#111,#1b1b1b);
    border:1px solid rgba(212,175,55,.3);
    border-radius:12px;
    padding:18px;
    text-align:center;
    margin:20px 0;
    box-shadow:0 8px 20px rgba(0,0,0,.35);
}

.countdown-badge{
    display:inline-block;
    background:#d4af37;
    color:#111;
    padding:4px 12px;
    border-radius:20px;
    font-size:11px;
    font-weight:600;
    margin-bottom:8px;
}

.countdown-header h2{
    color:#fff;
    font-size:20px;
    margin:0 0 15px;
    font-weight:600;
}

.countdown-container{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.time-box{
    width:70px;
    height:70px;
    background:#181818;
    border:1px solid rgba(212,175,55,.3);
    border-radius:10px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.time-box span{
    color:#d4af37;
    font-size:22px;
    font-weight:700;
    line-height:1;
}

.time-box small{
    color:#bbb;
    font-size:10px;
    text-transform:uppercase;
    margin-top:5px;
    letter-spacing:.5px;
}

@media(max-width:576px){

    .countdown-header h2{
        font-size:17px;
    }

    .time-box{
        width:60px;
        height:60px;
    }

    .time-box span{
        font-size:18px;
    }

    .time-box small{
        font-size:9px;
    }
}
.event-date-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:linear-gradient(135deg,#d4af37,#f4d03f);
    color:#111;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    box-shadow:0 4px 12px rgba(212,175,55,.35);
    margin-bottom:12px;
}

.event-date-badge i{
    font-size:16px;
}

.event-date-badge strong{
    color:#000;
    font-weight:700;
}