/* ========================= */
/* GOOGLE FONT */
/* ========================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');


/* ========================= */
/* GLOBAL */
/* ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#050505;
    color:#fff;
    font-family:'Poppins', sans-serif;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

a{
    text-decoration:none;
}


/* ========================= */
/* HEADER */
/* ========================= */

.header{
    /* position:fixed; */
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:rgba(0,0,0,0.75);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(212,175,55,0.15);
    padding: 35px 0px;
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;
}

.logo img{
    width:200px;
}

/* NAV */

.nav-links{
    display:flex;
    gap:40px;
    list-style:none;
}

.nav-links a{
    color:#fff;
    font-size:15px;
    letter-spacing:1px;
    position:relative;
    transition:0.4s;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:#D4AF37;
    transition:0.4s;
}

.nav-links a:hover{
    color:#D4AF37;
}

.nav-links a:hover::after{
    width:100%;
}


/* BUTTON */

.header-btn,
.mobile-btn{
    padding:14px 30px;
    border:1px solid #D4AF37;
    color:#D4AF37;
    font-size:14px;
    letter-spacing:1px;
    transition:0.4s;
    border-radius:50px;
    display:inline-block;
}

.header-btn:hover,
.mobile-btn:hover{
    background:#D4AF37;
    color:#000;
    box-shadow:0 0 20px rgba(212,175,55,0.5);
}


/* HAMBURGER */

.hamburger{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
}

.hamburger span{
    width:28px;
    height:2px;
    background:#D4AF37;
    transition:0.4s;
}


/* ========================= */
/* FOOTER */
/* ========================= */

.footer{
    background:#070707;
    padding:100px 0 0;
    border-top:1px solid rgba(212,175,55,0.2);
     /* margin-top: 163px; */
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
}

.footer-logo{
    width:200px;
    margin-bottom:20px;
}

.footer-col p{
    color:#aaa;
    line-height:1.8;
    font-size:15px;
}

.footer-col h3{
    color:#D4AF37;
    margin-bottom:25px;
    font-family:'Cinzel', serif;
    font-size:24px;
   
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:14px;
}

.footer-col ul li a{
    color:#bbb;
    transition:0.4s;
}

.footer-col ul li a:hover{
    color:#D4AF37;
    padding-left:8px;
}


/* SOCIAL */

.social-icons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.social-icons a{
    width:42px;
    height:42px;
    border:1px solid rgba(212,175,55,0.3);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#D4AF37;
    transition:0.4s;
}

.social-icons a:hover{
    background:#D4AF37;
    color:#000;
    box-shadow:0 0 20px rgba(212,175,55,0.4);
}


/* FOOTER BUTTON */

.footer-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 28px;
    border:1px solid #D4AF37;
    color:#D4AF37;
    border-radius:50px;
    transition:0.4s;
}

.footer-btn:hover{
    background:#D4AF37;
    color:#000;
}


/* FOOTER BOTTOM */

.footer-bottom{
    margin-top:80px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    padding:25px 0;
}

.footer-bottom p{
    color:#888;
    font-size:14px;
}


/* ========================= */
/* RESPONSIVE */
/* ========================= */

.mobile-btn{
    display:none;
}

@media(max-width:992px){

    .nav-links{
        gap:25px;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .hamburger{
        display:flex;
    }

    .header-btn{
        display:none;
    }

    .navbar{
        position:fixed;
        top:90px;
        right:-100%;
        width:100%;
        height:100vh;
        background:#050505;
        transition:0.5s;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
    }

    .navbar.active{
        right:0;
    }

    .nav-links{
        flex-direction:column;
        text-align:center;
    }

    .nav-links a{
        font-size:22px;
    }

    .mobile-btn{
        display:inline-block;
        margin-top:30px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer{
        padding-top:70px;
    }
}


/* ===================================== */
/* ULTRA PREMIUM HERO */
/* ===================================== */

.ultra-hero{
    position:relative;
    width:100%;
    min-height:100vh;
    background:#050505;
    overflow:hidden;
}

/* SWIPER */

.ultraHeroSlider,
.swiper-wrapper,
.ultra-slide{
    width:100%;
    min-height:100vh;
}

/* SLIDE */

.ultra-slide{
    position:relative;
    display:flex;
    align-items:center;
    padding:140px 0 80px;
}

/* BACKGROUND */

.hero-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    z-index:-3;
}

/* OVERLAY */

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.72),
        rgba(0,0,0,0.85)
    );

    z-index:-2;
}

/* WRAPPER */

.hero-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

/* LEFT */

.hero-left{
    flex:1;
    min-width:320px;
    max-width:700px;
}

/* RIGHT */

.hero-right{
    width:360px;
}

/* TAG */

.hero-tag{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    border:1px solid rgba(212,175,55,0.3);

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:25px;

    background:rgba(255,255,255,0.04);

    backdrop-filter:blur(10px);
}

/* HEADING */

.hero-left h1{
    font-size:64px;
    line-height:1.08;
    color:#fff;
    margin-bottom:25px;
    font-family:'Cinzel', serif;
    text-transform:uppercase;
}

/* TEXT */

.hero-left p{
    font-size:17px;
    line-height:1.9;
    color:#d0d0d0;
    margin-bottom:40px;
    max-width:620px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.gold-btn,
.glass-btn{
    padding:16px 34px;
    border-radius:60px;
    font-size:15px;
    transition:0.4s;
}

.gold-btn{
    background:#D4AF37;
    color:#000;
    font-weight:600;
}

.gold-btn:hover{
    transform:translateY(-5px);

    box-shadow:
    0 0 30px rgba(212,175,55,0.45);
}

.glass-btn{
    border:1px solid rgba(255,255,255,0.15);

    background:rgba(255,255,255,0.05);

    color:#fff;

    backdrop-filter:blur(12px);
}

.glass-btn:hover{
    background:#D4AF37;
    color:#000;
}

/* EVENT BOX */

.event-box{
    width:100%;

    padding:30px;

    border-radius:28px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(212,175,55,0.15);

    backdrop-filter:blur(16px);
}

/* EVENT ITEM */

.event-item{
    padding:22px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.event-item:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.event-item small{
    display:block;
    color:#aaa;
    margin-bottom:10px;
    letter-spacing:1px;
}

.event-item h3{
    color:#fff;
    font-size:24px;
    font-weight:600;
}

/* PAGINATION */

.swiper-pagination{
    bottom:35px !important;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#777;
    opacity:1;
}

.swiper-pagination-bullet-active{
    width:35px;
    border-radius:30px;
    background:#D4AF37;
}

/* FIX OLD CONTENT ISSUE */

.swiper-slide{
    opacity:0 !important;
    visibility:hidden !important;
}

.swiper-slide-active{
    opacity:1 !important;
    visibility:visible !important;
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:1200px){

    .hero-left h1{
        font-size:52px;
    }
}

@media(max-width:992px){

    .hero-wrapper{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-right{
        width:100%;
    }

    .event-box{
        margin-top:10px;
    }
}

@media(max-width:768px){

    .ultra-slide{
        padding:130px 0 100px;
    }

    .hero-left h1{
        font-size:36px;
        line-height:1.2;
    }

    .hero-left p{
        font-size:15px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .gold-btn,
    .glass-btn{
        width:100%;
        text-align:center;
    }

    .event-box{
        padding:25px;
    }

    .event-item h3{
        font-size:20px;
    }
}


/* ===================================== */
/* ABOUT BRAND PROMOTER */
/* ===================================== */

.about-brand{
    position:relative;
    padding:120px 0;
    background:#050505;
    overflow:hidden;
}

/* GOLD GLOW */

.about-brand::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:
    radial-gradient(
        rgba(212,175,55,0.12),
        transparent 70%
    );
    top:-120px;
    right:-150px;
    filter:blur(60px);
}

/* WRAPPER */

.about-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    flex-wrap:wrap;
}

/* IMAGE */

.about-image{
    flex:1;
    min-width:320px;
}

.image-box{
    position:relative;
    border-radius:30px;
    overflow:hidden;
}

.image-box img{
    width:100%;
    display:block;
    border-radius:30px;
    transition:0.5s;
}

/* GOLD BORDER EFFECT */

.image-box::before{
    content:'';
    position:absolute;
    inset:0;
    border:1px solid rgba(212,175,55,0.2);
    border-radius:30px;
    z-index:2;
}

.image-box:hover img{
    transform:scale(1.05);
}

/* CONTENT */

.about-content{
    flex:1;
    min-width:320px;
    max-width:620px;
}

/* TAG */

.section-tag{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    border:1px solid rgba(212,175,55,0.3);
    background:rgba(255,255,255,0.04);
    backdrop-filter:blur(10px);
    color:#D4AF37;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:28px;
}

/* HEADING */

.about-content h2{
    font-size:52px;
    line-height:1.15;
    color:#fff;
    margin-bottom:28px;
    font-family:'Cinzel', serif;
    font-weight:700;
}

/* TEXT */

.about-content p{
    color:#cfcfcf;
    font-size:16px;
    line-height:1.9;
    margin-bottom:22px;
}

/* FEATURES */

.about-features{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:45px;
    margin-bottom:45px;
}

/* FEATURE BOX */

.feature-box{
    flex:1;
    min-width:160px;
    padding:28px 20px;
    border-radius:24px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(212,175,55,0.12);
    text-align:center;
    transition:0.4s;
}

.feature-box:hover{
    transform:translateY(-8px);

    border-color:#D4AF37;

    box-shadow:
    0 0 30px rgba(212,175,55,0.15);
}

.feature-box h3{
    font-size:38px;
    color:#D4AF37;
    margin-bottom:10px;
    font-weight:700;
}

.feature-box span{
    color:#d0d0d0;
    font-size:15px;
}

/* BUTTON */

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 36px;
    border-radius:60px;
    background:#D4AF37;
    color:#000;
    font-weight:600;
    transition:0.4s;
}

.about-btn:hover{
    transform:translateY(-5px);

    box-shadow:
    0 0 30px rgba(212,175,55,0.4);
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:1200px){

    .about-content h2{
        font-size:44px;
    }
}

@media(max-width:768px){

    .about-brand{
        padding:90px 0;
    }

    .about-wrapper{
        gap:50px;
    }

    .about-content h2{
        font-size:34px;
        line-height:1.25;
    }

    .about-content p{
        font-size:15px;
    }

    .feature-box{
        min-width:100%;
    }

    .about-btn{
        width:100%;
    }
}


/* ===================================== */
/* ASTRO EVENT SECTION */
/* ===================================== */

.astro-event-section{
    position:relative;
    padding:120px 0;
    background:#050505;
    overflow:hidden;
}

/* GOLD GLOW */

.astro-event-section::before{
    content:'';
    position:absolute;

    width:500px;
    height:500px;

    background:
    radial-gradient(
        rgba(212,175,55,0.12),
        transparent 70%
    );

    top:-180px;
    right:-150px;

    filter:blur(70px);
}

/* WRAPPER */

.astro-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* CONTENT */

.astro-content{
    max-width:650px;
}

/* TAG */

.section-tag{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    border:1px solid rgba(212,175,55,0.3);

    background:rgba(255,255,255,0.04);

    backdrop-filter:blur(10px);

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:28px;
}

/* MAIN TITLE */

.astro-content h2{
    font-size:62px;
    line-height:1.1;
    color:#fff;
    margin-bottom:12px;
    font-family:'Cinzel', serif;
    text-transform:uppercase;
}

/* SUBTITLE */

.astro-content h3{
    font-size:28px;
    line-height:1.4;
    color:#D4AF37;
    margin-bottom:28px;
    font-weight:500;
}

/* TEXT */

.astro-content p{
    color:#d0d0d0;
    font-size:16px;
    line-height:1.9;
    margin-bottom:40px;
}

/* DETAILS */

.astro-details{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-bottom:45px;
}

/* DETAIL BOX */

.detail-box{
    padding:24px 28px;

    border-radius:24px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.12);

    backdrop-filter:blur(14px);

    transition:0.4s;
}

.detail-box:hover{
    transform:translateY(-6px);

    border-color:#D4AF37;

    box-shadow:
    0 0 30px rgba(212,175,55,0.15);
}

.detail-box span{
    display:block;

    color:#aaa;

    font-size:13px;

    letter-spacing:1px;

    margin-bottom:10px;
}

.detail-box h4{
    color:#fff;
    font-size:22px;
    line-height:1.4;
    font-weight:600;
}

/* BUTTONS */

.astro-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.gold-btn,
.glass-btn{
    padding:16px 34px;

    border-radius:60px;

    font-size:15px;

    transition:0.4s;
}

.gold-btn{
    background:#D4AF37;
    color:#000;
    font-weight:600;
}

.gold-btn:hover{
    transform:translateY(-5px);

    box-shadow:
    0 0 30px rgba(212,175,55,0.4);
}

.glass-btn{
    border:1px solid rgba(255,255,255,0.15);

    background:rgba(255,255,255,0.05);

    backdrop-filter:blur(12px);

    color:#fff;
}

.glass-btn:hover{
    background:#D4AF37;
    color:#000;
}

/* VIDEO */

.video-box{
    position:relative;

    overflow:hidden;

    border-radius:32px;

    border:1px solid rgba(212,175,55,0.15);

    background:#111;

    box-shadow:
    0 0 40px rgba(212,175,55,0.08);
}

.video-box iframe{
    width:100%;
    height:700px;
    border:none;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .astro-content h2{
        font-size:50px;
    }
}

@media(max-width:992px){

    .astro-wrapper{
        grid-template-columns:1fr;
    }

    .astro-content{
        max-width:100%;
    }

    .video-box iframe{
        height:500px;
    }
}

@media(max-width:768px){

    .astro-event-section{
        padding:90px 0;
    }

    .astro-content h2{
        font-size:36px;
        line-height:1.2;
    }

    .astro-content h3{
        font-size:22px;
    }

    .astro-content p{
        font-size:15px;
    }

    .detail-box{
        padding:22px;
    }

    .detail-box h4{
        font-size:18px;
    }

    .astro-buttons{
        flex-direction:column;
    }

    .gold-btn,
    .glass-btn{
        width:100%;
        text-align:center;
    }

    .video-box iframe{
        height:260px;
    }
}


/* ===================================== */
/* AWARD CATEGORIES */
/* ===================================== */

.award-categories{
    position:relative;
    padding:120px 0;
    background:#050505;
    overflow:hidden;
}

/* GOLD GLOW */

.award-categories::before{
    content:'';
    position:absolute;

    width:550px;
    height:550px;

    background:
    radial-gradient(
        rgba(212,175,55,0.10),
        transparent 70%
    );

    top:-200px;
    left:-150px;

    filter:blur(80px);
}

/* SECTION HEADER */

.section-header{
    text-align:center;
    max-width:780px;
    margin:auto auto 70px;
}

.section-tag{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    border:1px solid rgba(212,175,55,0.3);

    background:rgba(255,255,255,0.04);

    backdrop-filter:blur(10px);

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:25px;
}

.section-header h2{
    font-size:52px;
    line-height:1.15;
    color:#fff;
    margin-bottom:25px;
    font-family:'Cinzel', serif;
}

.section-header p{
    color:#cfcfcf;
    font-size:16px;
    line-height:1.9;
}

/* GRID */

.categories-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/* CARD */

.category-card{
    position:relative;

    padding:40px 30px;

    border-radius:30px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.10);

    backdrop-filter:blur(14px);

    transition:0.45s;

    overflow:hidden;
}

/* HOVER EFFECT */

.category-card:hover{
    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:
    0 0 35px rgba(212,175,55,0.16);
}

/* GOLD LIGHT */

.category-card::before{
    content:'';
    position:absolute;

    width:180px;
    height:180px;

    background:
    radial-gradient(
        rgba(212,175,55,0.12),
        transparent 70%
    );

    top:-60px;
    right:-60px;
}

/* ICON */

.category-icon{
    width:78px;
    height:78px;

    border-radius:22px;

    background:rgba(212,175,55,0.10);

    border:1px solid rgba(212,175,55,0.20);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:28px;

    color:#D4AF37;

    font-size:32px;

    transition:0.4s;
}

.category-card:hover .category-icon{
    transform:rotateY(180deg);
}

/* TITLE */

.category-card h3{
    font-size:26px;
    line-height:1.35;
    color:#fff;
    margin-bottom:18px;
    font-family:'Cinzel', serif;
}

/* TEXT */

.category-card p{
    color:#cfcfcf;
    font-size:15px;
    line-height:1.9;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .categories-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .section-header h2{
        font-size:46px;
    }
}

@media(max-width:992px){

    .categories-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .award-categories{
        padding:90px 0;
    }

    .categories-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:34px;
        line-height:1.25;
    }

    .section-header p{
        font-size:15px;
    }

    .category-card{
        padding:35px 25px;
    }

    .category-card h3{
        font-size:22px;
    }

    .category-card p{
        font-size:14px;
    }
}

/* ===================================== */
/* WHY PARTICIPATE */
/* ===================================== */

.why-participate{
    position:relative;
    padding:120px 0;
    background:#050505;
    overflow:hidden;
}

/* GOLD GLOW */

.why-participate::before{
    content:'';
    position:absolute;

    width:550px;
    height:550px;

    background:
    radial-gradient(
        rgba(212,175,55,0.10),
        transparent 70%
    );

    bottom:-200px;
    right:-150px;

    filter:blur(80px);
}

/* SECTION HEADER */

.section-header{
    text-align:center;
    max-width:800px;
    margin:auto auto 70px;
}

.section-tag{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    border:1px solid rgba(212,175,55,0.30);

    background:rgba(255,255,255,0.04);

    backdrop-filter:blur(10px);

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:25px;
}

.section-header h2{
    font-size:52px;
    line-height:1.15;
    color:#fff;
    margin-bottom:25px;
    font-family:'Cinzel', serif;
}

.section-header p{
    color:#cfcfcf;
    font-size:16px;
    line-height:1.9;
}

/* GRID */

.participate-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.participate-card{
    position:relative;

    padding:45px 35px;

    border-radius:30px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.10);

    backdrop-filter:blur(14px);

    transition:0.45s;

    overflow:hidden;
}

/* HOVER */

.participate-card:hover{
    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:
    0 0 35px rgba(212,175,55,0.16);
}

/* GOLD LIGHT */

.participate-card::before{
    content:'';
    position:absolute;

    width:180px;
    height:180px;

    background:
    radial-gradient(
        rgba(212,175,55,0.10),
        transparent 70%
    );

    top:-70px;
    right:-70px;
}

/* ICON */

.participate-icon{
    width:82px;
    height:82px;

    border-radius:24px;

    background:rgba(212,175,55,0.10);

    border:1px solid rgba(212,175,55,0.18);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:30px;

    color:#D4AF37;

    font-size:34px;

    transition:0.4s;
}

.participate-card:hover .participate-icon{
    transform:rotateY(180deg);
}

/* TITLE */

.participate-card h3{
    font-size:28px;
    line-height:1.35;
    color:#fff;
    margin-bottom:18px;
    font-family:'Cinzel', serif;
}

/* TEXT */

.participate-card p{
    color:#cfcfcf;
    font-size:15px;
    line-height:1.9;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .section-header h2{
        font-size:46px;
    }
}

@media(max-width:992px){

    .participate-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .why-participate{
        padding:90px 0;
    }

    .participate-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:34px;
        line-height:1.25;
    }

    .section-header p{
        font-size:15px;
    }

    .participate-card{
        padding:38px 28px;
    }

    .participate-card h3{
        font-size:24px;
    }

    .participate-card p{
        font-size:14px;
    }
}

/* ===================================== */
/* SPONSOR BENEFITS */
/* ===================================== */

.sponsor-benefits{
    position:relative;
    padding:120px 0;
    background:#050505;
    overflow:hidden;
}

/* GLOW */

.sponsor-benefits::before{
    content:'';
    position:absolute;

    width:600px;
    height:600px;

    background:
    radial-gradient(
        rgba(212,175,55,0.10),
        transparent 70%
    );

    top:-250px;
    right:-180px;

    filter:blur(90px);
}

/* SECTION HEADER */

.section-header{
    text-align:center;
    max-width:780px;
    margin:auto auto 70px;
}

.section-tag{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    border:1px solid rgba(212,175,55,0.30);

    background:rgba(255,255,255,0.04);

    backdrop-filter:blur(10px);

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:25px;
}

.section-header h2{
    font-size:52px;
    line-height:1.15;
    color:#fff;
    margin-bottom:25px;
    font-family:'Cinzel', serif;
}

.section-header p{
    color:#cfcfcf;
    font-size:16px;
    line-height:1.9;
}

/* GRID */

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.benefit-card{
    position:relative;

    padding:42px 35px;

    border-radius:30px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.10);

    backdrop-filter:blur(14px);

    overflow:hidden;

    transition:0.45s;
}

/* HOVER */

.benefit-card:hover{
    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:
    0 0 35px rgba(212,175,55,0.16);
}

/* LIGHT */

.benefit-card::before{
    content:'';
    position:absolute;

    width:180px;
    height:180px;

    background:
    radial-gradient(
        rgba(212,175,55,0.10),
        transparent 70%
    );

    top:-60px;
    right:-60px;
}

/* ICON */

.benefit-icon{
    width:82px;
    height:82px;

    border-radius:24px;

    background:rgba(212,175,55,0.10);

    border:1px solid rgba(212,175,55,0.20);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:28px;

    color:#D4AF37;

    font-size:32px;

    transition:0.4s;
}

.benefit-card:hover .benefit-icon{
    transform:rotateY(180deg);
}

/* TITLE */

.benefit-card h3{
    font-size:28px;
    line-height:1.35;
    color:#fff;
    margin-bottom:18px;
    font-family:'Cinzel', serif;
}

/* TEXT */

.benefit-card p{
    color:#cfcfcf;
    font-size:15px;
    line-height:1.9;
}

/* CTA */

.benefits-cta{
    margin-top:80px;

    text-align:center;

    padding:60px 40px;

    border-radius:35px;

    background:
    linear-gradient(
        135deg,
        rgba(212,175,55,0.12),
        rgba(255,255,255,0.03)
    );

    border:1px solid rgba(212,175,55,0.18);

    backdrop-filter:blur(16px);
}

.benefits-cta h3{
    font-size:42px;
    color:#fff;
    margin-bottom:20px;
    font-family:'Cinzel', serif;
}

.benefits-cta p{
    color:#d0d0d0;
    font-size:16px;
    line-height:1.9;
    max-width:760px;
    margin:auto auto 35px;
}

/* BUTTON */

.benefits-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:17px 42px;

    border-radius:60px;

    background:#D4AF37;

    color:#000;

    font-weight:600;

    transition:0.4s;
}

.benefits-btn:hover{
    transform:translateY(-5px);

    box-shadow:
    0 0 30px rgba(212,175,55,0.40);
}

/* RESPONSIVE */

@media(max-width:1200px){

    .section-header h2{
        font-size:46px;
    }

    .benefits-cta h3{
        font-size:36px;
    }
}

@media(max-width:992px){

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .sponsor-benefits{
        padding:90px 0;
    }

    .benefits-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:34px;
        line-height:1.25;
    }

    .benefit-card{
        padding:38px 28px;
    }

    .benefit-card h3{
        font-size:24px;
    }

    .benefits-cta{
        padding:45px 25px;
    }

    .benefits-cta h3{
        font-size:28px;
        line-height:1.3;
    }

    .benefits-btn{
        width:100%;
    }
}


/* ===================================== */
/* LUXURY GALLERY */
/* ===================================== */

.luxury-gallery{
    padding:120px 0;
    background:#050505;
    overflow:hidden;
}

/* GRID */

.gallery-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

/* ITEM */

.gallery-item{
    position:relative;

    height:280px;

    border-radius:24px;

    overflow:hidden;

    cursor:pointer;

    background:#111;

    border:1px solid rgba(212,175,55,0.10);

    transition:0.45s;
}

/* IMAGE */

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:0.5s;
}

/* HOVER */

.gallery-item:hover{
    transform:translateY(-8px);

    border-color:#D4AF37;

    box-shadow:
    0 0 30px rgba(212,175,55,0.15);
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* POPUP */

.gallery-popup{
    position:fixed;

    inset:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.96);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transition:0.4s;

    z-index:99999;

    padding:30px;
}

/* ACTIVE */

.gallery-popup.active{
    opacity:1;
    visibility:visible;
}

/* IMAGE */

.popup-img{
    max-width:95%;
    max-height:90vh;

    border-radius:20px;

    border:2px solid rgba(212,175,55,0.25);
}

/* CLOSE */

.close-popup{
    position:absolute;

    top:30px;
    right:40px;

    color:#fff;

    font-size:45px;

    cursor:pointer;

    transition:0.3s;
}

.close-popup:hover{
    color:#D4AF37;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:992px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .luxury-gallery{
        padding:90px 0;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item{
        height:240px;
    }

    .close-popup{
        top:20px;
        right:25px;
        font-size:38px;
    }
}

/* ===================================== */
/* LUXURY TESTIMONIALS */
/* ===================================== */

.luxury-testimonials{
    padding:120px 0;
    background:#050505;
    overflow:hidden;
    position:relative;
}

/* GLOW */

.luxury-testimonials::before{
    content:'';

    position:absolute;

    width:600px;
    height:600px;

    background:
    radial-gradient(
        rgba(212,175,55,0.10),
        transparent 70%
    );

    top:-250px;
    left:-180px;

    filter:blur(90px);
}

/* HEADING */

.testimonial-heading{
    text-align:center;
    margin-bottom:70px;
}

.testimonial-heading span{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    border:1px solid rgba(212,175,55,0.25);

    background:rgba(255,255,255,0.04);

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:25px;
}

.testimonial-heading h2{
    color:#fff;

    font-size:52px;

    line-height:1.2;

    font-family:'Cinzel', serif;
}

/* SLIDER */

.reviewSlider{
    overflow:hidden;
}

/* CARD */

.review-card{
    position:relative;

    padding:45px 35px;

    border-radius:30px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.10);

    backdrop-filter:blur(14px);

    overflow:hidden;

    transition:0.45s;

    height:100%;
}

/* HOVER */

.review-card:hover{
    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:
    0 0 35px rgba(212,175,55,0.15);
}

/* LIGHT EFFECT */

.review-card::before{
    content:'';

    position:absolute;

    width:180px;
    height:180px;

    background:
    radial-gradient(
        rgba(212,175,55,0.10),
        transparent 70%
    );

    top:-60px;
    right:-60px;
}

/* STARS */

.stars{
    color:#D4AF37;

    font-size:24px;

    margin-bottom:25px;

    letter-spacing:3px;
}

/* TEXT */

.review-card p{
    color:#d0d0d0;

    font-size:16px;

    line-height:1.9;

    margin-bottom:28px;
}

/* NAME */

.review-card h3{
    color:#fff;

    font-size:24px;

    font-family:'Cinzel', serif;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .testimonial-heading h2{
        font-size:46px;
    }
}

@media(max-width:768px){

    .luxury-testimonials{
        padding:90px 0;
    }

    .testimonial-heading h2{
        font-size:34px;
        line-height:1.3;
    }

    .review-card{
        padding:35px 25px;
    }

    .review-card p{
        font-size:15px;
    }

    .review-card h3{
        font-size:22px;
    }
}

/* ===================================== */
/* PREMIUM BREADCRUMB */
/* ===================================== */

.bp-breadcrumb{
    position:relative;

    height:520px;

    overflow:hidden;

    display:flex;
    align-items:center;

    background:#050505;
}

/* BACKGROUND */

.bp-breadcrumb-bg{
    position:absolute;
    inset:0;
}

.bp-breadcrumb-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* DARK OVERLAY */

.bp-breadcrumb-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.45)
    );
}

/* GOLD GLOW */

.bp-breadcrumb::before{
    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:
    radial-gradient(
        rgba(212,175,55,0.12),
        transparent 70%
    );

    top:-200px;
    right:-150px;

    filter:blur(80px);

    z-index:1;
}

/* CONTENT */

.bp-breadcrumb-content{
    position:relative;
    z-index:2;

    max-width:700px;
}

/* MINI TITLE */

.bp-mini-title{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(212,175,55,0.25);

    backdrop-filter:blur(12px);

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:28px;
}

/* TITLE */

.bp-breadcrumb-content h1{
    font-size:82px;

    line-height:1.1;

    color:#fff;

    margin-bottom:28px;

    font-family:'Cinzel', serif;
}

/* LINKS */

.bp-breadcrumb-links{
    display:flex;
    align-items:center;
    gap:14px;

    flex-wrap:wrap;
}

.bp-breadcrumb-links a{
    color:#D4AF37;

    font-size:17px;

    transition:0.3s;
}

.bp-breadcrumb-links a:hover{
    opacity:0.7;
}

.bp-breadcrumb-links span{
    color:#777;

    font-size:15px;
}

.bp-breadcrumb-links p{
    color:#fff;

    font-size:17px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .bp-breadcrumb{
        height:460px;
    }

    .bp-breadcrumb-content h1{
        font-size:64px;
    }
}

@media(max-width:768px){

    .bp-breadcrumb{
        height:400px;
    }

    .bp-breadcrumb-content h1{
        font-size:46px;
        line-height:1.2;
    }

    .bp-mini-title{
        font-size:12px;
        padding:10px 20px;
    }

    .bp-breadcrumb-links a,
    .bp-breadcrumb-links p{
        font-size:15px;
    }
}

/* ===================================== */
/* ABOUT COMPANY SECTION */
/* ===================================== */

.bp-about-company{
    position:relative;

    padding:120px 0;

    background:#050505;

    overflow:hidden;
}

/* GOLD GLOW */

.bp-about-company::before{
    content:'';

    position:absolute;

    width:550px;
    height:550px;

    background:
    radial-gradient(
        rgba(212,175,55,0.10),
        transparent 70%
    );

    top:-220px;
    left:-180px;

    filter:blur(90px);
}

/* WRAPPER */

.bp-about-wrapper{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

/* IMAGE SIDE */

.bp-about-image{
    position:relative;
}

/* IMAGE BOX */

.bp-about-img-box{
    position:relative;

    border-radius:35px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,0.15);

    background:#111;
}

.bp-about-img-box img{
    width:100%;
    height:700px;

    object-fit:cover;

    transition:0.5s;
}

.bp-about-img-box:hover img{
    transform:scale(1.05);
}

/* FLOATING CARD */

.bp-floating-experience{
    position:absolute;

    bottom:40px;
    right:-40px;

    width:230px;

    padding:35px 25px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        rgba(212,175,55,0.16),
        rgba(255,255,255,0.04)
    );

    border:1px solid rgba(212,175,55,0.20);

    backdrop-filter:blur(18px);

    text-align:center;

    box-shadow:
    0 0 40px rgba(212,175,55,0.12);
}

.bp-floating-experience h3{
    color:#D4AF37;

    font-size:58px;

    line-height:1;

    margin-bottom:14px;

    font-family:'Cinzel', serif;
}

.bp-floating-experience p{
    color:#fff;

    font-size:16px;

    line-height:1.7;
}

/* CONTENT */

.bp-about-content{
    max-width:650px;
}

/* TAG */

.bp-about-tag{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.25);

    backdrop-filter:blur(12px);

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:28px;
}

/* HEADING */

.bp-about-content h2{
    color:#fff;

    font-size:56px;

    line-height:1.2;

    margin-bottom:30px;

    font-family:'Cinzel', serif;
}

/* TEXT */

.bp-about-content p{
    color:#cfcfcf;

    font-size:16px;

    line-height:1.95;

    margin-bottom:22px;
}

/* FEATURES */

.bp-about-features{
    margin-top:45px;

    display:flex;
    flex-direction:column;

    gap:24px;
}

/* FEATURE ITEM */

.bp-feature-item{
    display:flex;

    gap:22px;

    padding:26px;

    border-radius:24px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.10);

    transition:0.4s;
}

.bp-feature-item:hover{
    transform:translateY(-6px);

    border-color:#D4AF37;

    box-shadow:
    0 0 30px rgba(212,175,55,0.12);
}

/* ICON */

.bp-feature-icon{
    min-width:74px;

    height:74px;

    border-radius:22px;

    background:rgba(212,175,55,0.10);

    border:1px solid rgba(212,175,55,0.18);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#D4AF37;

    font-size:30px;
}

/* TEXT */

.bp-feature-text h3{
    color:#fff;

    font-size:24px;

    margin-bottom:10px;

    font-family:'Cinzel', serif;
}

.bp-feature-text p{
    margin:0;

    font-size:15px;

    line-height:1.8;
}

/* BUTTONS */

.bp-about-buttons{
    display:flex;

    gap:18px;

    margin-top:45px;

    flex-wrap:wrap;
}

/* PRIMARY BTN */

.bp-primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:17px 38px;

    border-radius:60px;

    background:#D4AF37;

    color:#000;

    font-weight:600;

    transition:0.4s;
}

.bp-primary-btn:hover{
    transform:translateY(-5px);

    box-shadow:
    0 0 30px rgba(212,175,55,0.35);
}

/* SECONDARY BTN */

.bp-secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:17px 38px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,0.14);

    background:rgba(255,255,255,0.04);

    backdrop-filter:blur(12px);

    color:#fff;

    transition:0.4s;
}

.bp-secondary-btn:hover{
    background:#D4AF37;

    color:#000;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .bp-about-content h2{
        font-size:46px;
    }
}

@media(max-width:992px){

    .bp-about-wrapper{
        grid-template-columns:1fr;
    }

    .bp-about-content{
        max-width:100%;
    }

    .bp-about-img-box img{
        height:550px;
    }

    .bp-floating-experience{
        right:20px;
    }
}

@media(max-width:768px){

    .bp-about-company{
        padding:90px 0;
    }

    .bp-about-content h2{
        font-size:34px;
        line-height:1.3;
    }

    .bp-about-content p{
        font-size:15px;
    }

    .bp-about-img-box img{
        height:420px;
    }

    .bp-floating-experience{
        width:190px;

        padding:28px 20px;

        bottom:20px;
        right:20px;
    }

    .bp-floating-experience h3{
        font-size:42px;
    }

    .bp-feature-item{
        flex-direction:column;
    }

    .bp-about-buttons{
        flex-direction:column;
    }

    .bp-primary-btn,
    .bp-secondary-btn{
        width:100%;
    }
}

/* ===================================== */
/* VISION MISSION SECTION */
/* ===================================== */

.bp-vision-mission{
    position:relative;

    padding:120px 0;

    background:#050505;

    overflow:hidden;
}

/* GOLD GLOW */

.bp-vision-mission::before{
    content:'';

    position:absolute;

    width:600px;
    height:600px;

    background:
    radial-gradient(
        rgba(212,175,55,0.10),
        transparent 70%
    );

    top:-250px;
    right:-180px;

    filter:blur(90px);
}

/* HEADING */

.bp-vm-heading{
    text-align:center;

    max-width:850px;

    margin:auto auto 70px;
}

/* TAG */

.bp-vm-heading span{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.25);

    backdrop-filter:blur(12px);

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:28px;
}

/* TITLE */

.bp-vm-heading h2{
    color:#fff;

    font-size:54px;

    line-height:1.2;

    font-family:'Cinzel', serif;
}

/* GRID */

.bp-vm-grid{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;
}

/* CARD */

.bp-vm-card{
    position:relative;

    padding:60px 45px;

    border-radius:35px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.10);

    backdrop-filter:blur(18px);

    overflow:hidden;

    transition:0.45s;
}

/* HOVER */

.bp-vm-card:hover{
    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:
    0 0 40px rgba(212,175,55,0.15);
}

/* LIGHT EFFECT */

.bp-vm-card::before{
    content:'';

    position:absolute;

    width:220px;
    height:220px;

    background:
    radial-gradient(
        rgba(212,175,55,0.12),
        transparent 70%
    );

    top:-80px;
    right:-80px;
}

/* ICON */

.bp-vm-icon{
    width:95px;
    height:95px;

    border-radius:28px;

    background:rgba(212,175,55,0.10);

    border:1px solid rgba(212,175,55,0.18);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#D4AF37;

    font-size:38px;

    margin-bottom:35px;

    transition:0.4s;
}

.bp-vm-card:hover .bp-vm-icon{
    transform:rotateY(180deg);
}

/* TITLE */

.bp-vm-card h3{
    color:#fff;

    font-size:38px;

    margin-bottom:22px;

    font-family:'Cinzel', serif;
}

/* TEXT */

.bp-vm-card p{
    color:#cfcfcf;

    font-size:16px;

    line-height:2;
}

/* BOTTOM SHAPE */

.bp-vm-shape{
    position:absolute;

    bottom:-80px;
    left:-80px;

    width:220px;
    height:220px;

    border-radius:50%;

    border:1px solid rgba(212,175,55,0.08);
}

/* RESPONSIVE */

@media(max-width:1200px){

    .bp-vm-heading h2{
        font-size:46px;
    }
}

@media(max-width:992px){

    .bp-vm-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .bp-vision-mission{
        padding:90px 0;
    }

    .bp-vm-heading h2{
        font-size:34px;

        line-height:1.3;
    }

    .bp-vm-card{
        padding:45px 28px;
    }

    .bp-vm-icon{
        width:82px;
        height:82px;

        font-size:32px;
    }

    .bp-vm-card h3{
        font-size:30px;
    }

    .bp-vm-card p{
        font-size:15px;

        line-height:1.9;
    }
}

/* ===================================== */
/* MM DIGITAL TECH MARKETING */
/* ===================================== */

.bp-mm-vertical{
    position:relative;

    padding:120px 0;

    background:#050505;

    overflow:hidden;
}

/* GOLD GLOW */

.bp-mm-vertical::before{
    content:'';

    position:absolute;

    width:650px;
    height:650px;

    background:
    radial-gradient(
        rgba(212,175,55,0.10),
        transparent 70%
    );

    bottom:-260px;
    left:-180px;

    filter:blur(90px);
}

/* WRAPPER */

.bp-mm-wrapper{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

/* CONTENT */

.bp-mm-content{
    max-width:650px;
}

/* TAG */

.bp-mm-tag{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.25);

    backdrop-filter:blur(12px);

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:28px;
}

/* TITLE */

.bp-mm-content h2{
    color:#fff;

    font-size:56px;

    line-height:1.2;

    margin-bottom:28px;

    font-family:'Cinzel', serif;
}

/* TEXT */

.bp-mm-content p{
    color:#cfcfcf;

    font-size:16px;

    line-height:1.95;

    margin-bottom:22px;
}

/* SERVICES */

.bp-mm-services{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:40px;
}

/* SERVICE */

.bp-mm-service{
    display:flex;
    align-items:center;

    gap:14px;

    padding:20px 22px;

    border-radius:20px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.10);

    transition:0.4s;
}

.bp-mm-service:hover{
    transform:translateY(-6px);

    border-color:#D4AF37;

    box-shadow:
    0 0 25px rgba(212,175,55,0.12);
}

/* ICON */

.bp-mm-service i{
    width:52px;
    height:52px;

    border-radius:16px;

    background:rgba(212,175,55,0.10);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#D4AF37;

    font-size:20px;
}

/* TEXT */

.bp-mm-service span{
    color:#fff;

    font-size:15px;

    font-weight:500;
}

/* BUTTON */

.bp-mm-btn-wrap{
    margin-top:45px;
}

.bp-mm-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:17px 40px;

    border-radius:60px;

    background:#D4AF37;

    color:#000;

    font-weight:600;

    transition:0.4s;
}

.bp-mm-btn:hover{
    transform:translateY(-5px);

    box-shadow:
    0 0 30px rgba(212,175,55,0.35);
}

/* IMAGE */

.bp-mm-image{
    position:relative;
}

/* IMAGE BOX */

.bp-mm-image-box{
    border-radius:35px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,0.15);

    background:#111;
}

.bp-mm-image-box img{
    width:100%;
    height:700px;

    object-fit:cover;

    transition:0.5s;
}

.bp-mm-image-box:hover img{
    transform:scale(1.05);
}

/* FLOATING CARD */

.bp-mm-floating{
    position:absolute;

    bottom:40px;
    left:-40px;

    padding:30px 35px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        rgba(212,175,55,0.15),
        rgba(255,255,255,0.04)
    );

    border:1px solid rgba(212,175,55,0.20);

    backdrop-filter:blur(18px);

    box-shadow:
    0 0 35px rgba(212,175,55,0.12);
}

.bp-mm-floating h3{
    color:#fff;

    font-size:30px;

    margin-bottom:10px;

    font-family:'Cinzel', serif;
}

.bp-mm-floating p{
    color:#d0d0d0;

    font-size:15px;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .bp-mm-content h2{
        font-size:46px;
    }
}

@media(max-width:992px){

    .bp-mm-wrapper{
        grid-template-columns:1fr;
    }

    .bp-mm-content{
        max-width:100%;
    }

    .bp-mm-image-box img{
        height:550px;
    }

    .bp-mm-floating{
        left:20px;
    }
}

@media(max-width:768px){

    .bp-mm-vertical{
        padding:90px 0;
    }

    .bp-mm-content h2{
        font-size:34px;

        line-height:1.3;
    }

    .bp-mm-content p{
        font-size:15px;
    }

    .bp-mm-services{
        grid-template-columns:1fr;
    }

    .bp-mm-image-box img{
        height:420px;
    }

    .bp-mm-floating{
        position:relative;

        left:0;
        bottom:0;

        margin-top:20px;
    }

    .bp-mm-btn{
        width:100%;
    }
}

/* ===================================== */
/* FOUNDER SECTION */
/* ===================================== */

.bp-founder-section{
    position:relative;

    padding:120px 0;

    background:#050505;

    overflow:hidden;
}

/* GOLD GLOW */

.bp-founder-section::before{
    content:'';

    position:absolute;

    width:650px;
    height:650px;

    background:
    radial-gradient(
        rgba(212,175,55,0.10),
        transparent 70%
    );

    top:-250px;
    right:-180px;

    filter:blur(90px);
}

/* WRAPPER */

.bp-founder-wrapper{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;
}

/* IMAGE */

.bp-founder-image{
    position:relative;
}

/* IMAGE BOX */

.bp-founder-img-box{
    position:relative;

    overflow:hidden;

    border-radius:35px;

    border:1px solid rgba(212,175,55,0.15);

    background:#111;
}

.bp-founder-img-box img{
    width:100%;
    height:720px;

    object-fit:cover;

    transition:0.5s;
}

.bp-founder-img-box:hover img{
    transform:scale(1.05);
}

/* FLOATING CARD */

.bp-founder-floating{
    position:absolute;

    bottom:40px;
    left:-40px;

    padding:28px 35px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        rgba(212,175,55,0.16),
        rgba(255,255,255,0.04)
    );

    border:1px solid rgba(212,175,55,0.20);

    backdrop-filter:blur(18px);

    box-shadow:
    0 0 35px rgba(212,175,55,0.12);
}

.bp-founder-floating h3{
    color:#fff;

    font-size:26px;

    margin-bottom:8px;

    font-family:'Cinzel', serif;
}

.bp-founder-floating p{
    color:#d0d0d0;

    font-size:15px;
}

/* CONTENT */

.bp-founder-content{
    max-width:650px;
}

/* TAG */

.bp-founder-tag{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.25);

    backdrop-filter:blur(12px);

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:28px;
}

/* TITLE */

.bp-founder-content h2{
    color:#fff;

    font-size:56px;

    line-height:1.2;

    margin-bottom:28px;

    font-family:'Cinzel', serif;
}

/* TEXT */

.bp-founder-text{
    color:#cfcfcf;

    font-size:16px;

    line-height:1.95;

    margin-bottom:22px;
}

/* QUOTE */

.bp-founder-quote{
    position:relative;

    margin-top:40px;

    padding:35px;

    border-radius:28px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.10);

    overflow:hidden;
}

.bp-founder-quote i{
    color:#D4AF37;

    font-size:42px;

    margin-bottom:20px;
}

.bp-founder-quote p{
    color:#fff;

    font-size:22px;

    line-height:1.8;

    font-style:italic;

    font-family:'Cinzel', serif;
}

/* INFO */

.bp-founder-info{
    margin-top:35px;
}

.bp-founder-info h3{
    color:#fff;

    font-size:34px;

    margin-bottom:10px;

    font-family:'Cinzel', serif;
}

.bp-founder-info span{
    color:#D4AF37;

    font-size:16px;
}

/* SOCIAL */

.bp-founder-social{
    display:flex;

    gap:16px;

    margin-top:35px;
}

/* ICON */

.bp-founder-social a{
    width:58px;
    height:58px;

    border-radius:18px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(212,175,55,0.10);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:18px;

    transition:0.4s;
}

.bp-founder-social a:hover{
    transform:translateY(-6px);

    background:#D4AF37;

    color:#000;

    border-color:#D4AF37;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .bp-founder-content h2{
        font-size:46px;
    }
}

@media(max-width:992px){

    .bp-founder-wrapper{
        grid-template-columns:1fr;
    }

    .bp-founder-content{
        max-width:100%;
    }

    .bp-founder-img-box img{
        height:550px;
    }

    .bp-founder-floating{
        left:20px;
    }
}

@media(max-width:768px){

    .bp-founder-section{
        padding:90px 0;
    }

    .bp-founder-content h2{
        font-size:34px;

        line-height:1.3;
    }

    .bp-founder-text{
        font-size:15px;
    }

    .bp-founder-img-box img{
        height:420px;
    }

    .bp-founder-floating{
        position:relative;

        left:0;
        bottom:0;

        margin-top:20px;
    }

    .bp-founder-quote{
        padding:28px;
    }

    .bp-founder-quote p{
        font-size:18px;
    }

    .bp-founder-info h3{
        font-size:28px;
    }

    .bp-founder-social{
        flex-wrap:wrap;
    }
}

/* ===================================== */
/* PREMIUM CTA SECTION */
/* ===================================== */

.bp-premium-cta{
    position:relative;

    padding:140px 0;

    overflow:hidden;

    background:#050505;
}

/* BACKGROUND */

.bp-cta-bg{
    position:absolute;
    inset:0;
}

.bp-cta-bg img{
    width:100%;
    height:100%;

    object-fit:cover;
}

/* OVERLAY */

.bp-cta-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.90),
        rgba(0,0,0,0.70)
    );
}

/* GOLD GLOW */

.bp-premium-cta::before{
    content:'';

    position:absolute;

    width:650px;
    height:650px;

    background:
    radial-gradient(
        rgba(212,175,55,0.12),
        transparent 70%
    );

    top:-250px;
    right:-180px;

    filter:blur(90px);

    z-index:1;
}

/* CONTENT */

.bp-cta-content{
    position:relative;
    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;
}

/* TAG */

.bp-cta-tag{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(212,175,55,0.25);

    backdrop-filter:blur(12px);

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:30px;
}

/* TITLE */

.bp-cta-content h2{
    color:#fff;

    font-size:64px;

    line-height:1.2;

    margin-bottom:28px;

    font-family:'Cinzel', serif;
}

/* TEXT */

.bp-cta-content p{
    color:#d0d0d0;

    font-size:17px;

    line-height:2;

    max-width:760px;

    margin:auto auto 45px;
}

/* BUTTONS */

.bp-cta-buttons{
    display:flex;

    align-items:center;
    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

/* PRIMARY BUTTON */

.bp-cta-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 42px;

    border-radius:60px;

    background:#D4AF37;

    color:#000;

    font-weight:600;

    transition:0.4s;
}

.bp-cta-primary:hover{
    transform:translateY(-6px);

    box-shadow:
    0 0 35px rgba(212,175,55,0.35);
}

/* SECONDARY BUTTON */

.bp-cta-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 42px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,0.15);

    background:rgba(255,255,255,0.05);

    backdrop-filter:blur(12px);

    color:#fff;

    transition:0.4s;
}

.bp-cta-secondary:hover{
    background:#D4AF37;

    color:#000;

    border-color:#D4AF37;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .bp-cta-content h2{
        font-size:54px;
    }
}

@media(max-width:768px){

    .bp-premium-cta{
        padding:100px 0;
    }

    .bp-cta-content h2{
        font-size:36px;

        line-height:1.3;
    }

    .bp-cta-content p{
        font-size:15px;

        line-height:1.9;
    }

    .bp-cta-buttons{
        flex-direction:column;
    }

    .bp-cta-primary,
    .bp-cta-secondary{
        width:100%;
    }
}

/* ===================================== */
/* CONTACT SECTION */
/* ===================================== */

.bp-contact-section{
    padding:120px 0;
    background:#050505;
    overflow:hidden;
    position:relative;
}

/* GLOW */

.bp-contact-section::before{
    content:'';

    position:absolute;

    width:650px;
    height:650px;

    background:
    radial-gradient(
        rgba(212,175,55,0.10),
        transparent 70%
    );

    top:-250px;
    left:-180px;

    filter:blur(90px);
}

/* CONTACT CARDS */

.bp-contact-cards{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-bottom:80px;
}

/* CARD */

.bp-contact-card{
    padding:40px 30px;

    border-radius:30px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.10);

    text-align:center;

    transition:0.4s;
}

.bp-contact-card:hover{
    transform:translateY(-8px);

    border-color:#D4AF37;

    box-shadow:
    0 0 35px rgba(212,175,55,0.14);
}

/* ICON */

.bp-contact-icon{
    width:82px;
    height:82px;

    margin:auto auto 25px;

    border-radius:24px;

    background:rgba(212,175,55,0.10);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#D4AF37;

    font-size:32px;
}

.bp-contact-card h3{
    color:#fff;

    font-size:26px;

    margin-bottom:14px;

    font-family:'Cinzel', serif;
}

.bp-contact-card p{
    color:#cfcfcf;

    font-size:15px;

    line-height:1.8;
}

/* WRAPPER */

.bp-contact-wrapper{
    display:grid;

    grid-template-columns:1.2fr 0.8fr;

    gap:40px;

    align-items:start;
}

/* FORM BOX */

.bp-contact-form-box{
    padding:55px 45px;

    border-radius:35px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.10);

    backdrop-filter:blur(18px);
}

/* TAG */

.bp-contact-tag{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.25);

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:28px;
}

/* TITLE */

.bp-contact-form-box h2{
    color:#fff;

    font-size:52px;

    line-height:1.2;

    margin-bottom:40px;

    font-family:'Cinzel', serif;
}

/* GRID */

.bp-form-grid{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;
}

/* INPUT */

.bp-input-box{
    margin-bottom:22px;
}

.bp-input-box input,
.bp-input-box select,
.bp-input-box textarea{
    width:100%;

    padding:18px 22px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,0.10);

    background:rgba(255,255,255,0.04);

    color:#fff;

    outline:none;

    font-size:15px;

    transition:0.3s;
}

.bp-input-box textarea{
    resize:none;
}

.bp-input-box input:focus,
.bp-input-box select:focus,
.bp-input-box textarea:focus{
    border-color:#D4AF37;
}

/* BUTTON */

.bp-contact-btn{
    width:100%;

    height:60px;

    border:none;

    border-radius:60px;

    background:#D4AF37;

    color:#000;

    font-weight:600;

    cursor:pointer;

    transition:0.4s;
}

.bp-contact-btn:hover{
    transform:translateY(-5px);

    box-shadow:
    0 0 30px rgba(212,175,55,0.35);
}

/* RIGHT */

.bp-contact-right{
    display:flex;
    flex-direction:column;

    gap:30px;
}

/* IMAGE */

.bp-contact-image{
    overflow:hidden;

    border-radius:35px;

    border:1px solid rgba(212,175,55,0.10);
}

.bp-contact-image img{
    width:100%;
    height:520px;

    object-fit:cover;
}

/* WHATSAPP */

.bp-whatsapp-box{
    padding:35px;

    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        rgba(212,175,55,0.14),
        rgba(255,255,255,0.04)
    );

    border:1px solid rgba(212,175,55,0.18);

    display:flex;
    flex-direction:column;

    gap:22px;
}

/* ICON */

.bp-whatsapp-icon{
    width:85px;
    height:85px;

    border-radius:24px;

    background:rgba(255,255,255,0.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#25D366;

    font-size:42px;
}

/* CONTENT */

.bp-whatsapp-content h3{
    color:#fff;

    font-size:32px;

    margin-bottom:12px;

    font-family:'Cinzel', serif;
}

.bp-whatsapp-content p{
    color:#cfcfcf;

    line-height:1.9;
}

/* BUTTON */

.bp-whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:58px;

    border-radius:60px;

    background:#25D366;

    color:#000;

    font-weight:600;

    transition:0.4s;
}

.bp-whatsapp-btn:hover{
    transform:translateY(-5px);
}

/* FAQ */

.bp-faq-section{
    margin-top:120px;
}

/* HEADING */

.bp-faq-heading{
    text-align:center;

    margin-bottom:60px;
}

.bp-faq-heading span{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    border:1px solid rgba(212,175,55,0.25);

    color:#D4AF37;

    margin-bottom:25px;

    font-size:13px;

    letter-spacing:2px;
}

.bp-faq-heading h2{
    color:#fff;

    font-size:52px;

    font-family:'Cinzel', serif;
}

/* FAQ WRAPPER */

.bp-faq-wrapper{
    max-width:900px;

    margin:auto;
}

/* ITEM */

.bp-faq-item{
    margin-bottom:20px;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,0.10);

    background:rgba(255,255,255,0.04);
}

/* QUESTION */

.bp-faq-question{
    padding:28px 30px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    cursor:pointer;
}

.bp-faq-question h3{
    color:#fff;

    font-size:22px;

    font-family:'Cinzel', serif;
}

.bp-faq-question span{
    color:#D4AF37;

    font-size:28px;
}

/* ANSWER */

.bp-faq-answer{
    max-height:0;

    overflow:hidden;

    transition:0.4s ease;
}

.bp-faq-answer p{
    padding:0 30px 28px;

    color:#cfcfcf;

    line-height:1.9;
}

/* ACTIVE */

.bp-faq-item.active .bp-faq-answer{
    max-height:300px;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .bp-contact-cards{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:992px){

    .bp-contact-wrapper{
        grid-template-columns:1fr;
    }

    .bp-contact-form-box h2{
        font-size:42px;
    }
}

@media(max-width:768px){

    .bp-contact-section{
        padding:90px 0;
    }

    .bp-contact-cards{
        grid-template-columns:1fr;
    }

    .bp-form-grid{
        grid-template-columns:1fr;
    }

    .bp-contact-form-box{
        padding:40px 25px;
    }

    .bp-contact-form-box h2{
        font-size:32px;

        line-height:1.3;
    }

    .bp-contact-image img{
        height:380px;
    }

    .bp-whatsapp-content h3{
        font-size:26px;
    }

    .bp-faq-heading h2{
        font-size:34px;
    }

    .bp-faq-question{
        padding:24px 22px;
    }

    .bp-faq-question h3{
        font-size:18px;

        line-height:1.5;
    }

    .bp-faq-answer p{
        padding:0 22px 24px;
    }
}

/* ===================================== */
/* EVENTS SHOWCASE */
/* ===================================== */

.bp-events-showcase{
    padding:120px 0;
    background:#050505;
    position:relative;
    overflow:hidden;
}

.bp-events-showcase::before{
    content:'';

    position:absolute;

    width:700px;
    height:700px;

    top:-300px;
    right:-200px;

    background:
    radial-gradient(
        rgba(212,175,55,0.10),
        transparent 70%
    );

    filter:blur(100px);
}

/* HEADING */

.bp-events-heading{
    text-align:center;
    max-width:850px;
    margin:auto auto 80px;
}

.bp-events-heading span{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    border:1px solid rgba(212,175,55,.25);

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:25px;
}

.bp-events-heading h2{
    color:#fff;

    font-size:58px;

    line-height:1.2;

    margin-bottom:25px;

    font-family:'Cinzel', serif;
}

.bp-events-heading p{
    color:#cfcfcf;

    line-height:1.9;

    font-size:16px;
}

/* GRID */

.bp-events-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;
}

/* CARD */

.bp-event-card{
    position:relative;

    padding:40px 35px;

    border-radius:30px;

    background:
    rgba(255,255,255,0.03);

    border:1px solid rgba(212,175,55,0.10);

    overflow:hidden;

    transition:.4s;
}

.bp-event-card::before{
    content:'';

    position:absolute;

    width:180px;
    height:180px;

    top:-90px;
    right:-90px;

    background:
    radial-gradient(
        rgba(212,175,55,0.15),
        transparent 70%
    );
}

.bp-event-card:hover{
    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:
    0 0 35px rgba(212,175,55,0.12);
}

/* BADGE */

.bp-event-badge{
    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    background:#D4AF37;

    color:#000;

    font-size:12px;

    font-weight:600;

    margin-bottom:20px;
}

/* TITLE */

.bp-event-card h3{
    color:#fff;

    font-size:28px;

    line-height:1.4;

    margin-bottom:18px;

    font-family:'Cinzel', serif;
}

/* TEXT */

.bp-event-card p{
    color:#cfcfcf;

    line-height:1.9;

    font-size:15px;
}

/* MOBILE */

@media(max-width:768px){

    .bp-events-showcase{
        padding:90px 0;
    }

    .bp-events-heading h2{
        font-size:36px;
    }

    .bp-event-card{
        padding:30px 25px;
    }

    .bp-event-card h3{
        font-size:22px;
    }
}