
/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#0F172A;
    --secondary:#D4AF37;
    --white:#ffffff;
    --light:#f8f8f8;
    --dark:#111827;
    --card:#1c2435;
    --transition:0.4s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--primary);
    color:var(--white);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    padding:0;
}

/* ===========================
   COMMON
=========================== */

.section-padding{
    padding:100px 0;
}

.section-tag{
    color:var(--secondary);
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title{
    font-size: 38px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 20px;
}

.bg-dark-section{
    background:#0b1220;
}

/* ===========================
   NAVBAR
=========================== */

.custom-navbar{
    padding:20px 0;
    transition:0.4s;
    z-index:999;
}

.custom-navbar.scrolled{
    background:rgba(15,23,42,.95);
    backdrop-filter:blur(15px);
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.brand-main{
    color:var(--secondary);
    font-size:30px;
    font-weight:800;
}

.brand-sub{
    color:#fff;
    font-size:16px;
    margin-left:5px;
}

.nav-link{
    color:#fff !important;
    margin-left:20px;
    font-weight:500;
    position:relative;
}

.nav-link::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    background:var(--secondary);
    bottom:-5px;
    left:0;
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* ===========================
   BUTTONS
=========================== */

.btn-gold{
    background:var(--secondary);
    color:#000;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);
}

.btn-gold:hover{
    transform:translateY(-5px);
    background:#f1ca52;
}

.btn-outline-light{
    padding:14px 32px;
    border-radius:50px;
    margin-left:15px;
}

/* ===========================
   HERO
=========================== */

.hero-section{
    position:relative;
    min-height:100vh;
    background:url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?q=80&w=1920')
    center center/cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,.8),
        rgba(15,23,42,.75)
    );
}

.hero-section .container{
    position:relative;
    z-index:2;
}

.hero-title{
    font-size: 52px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-text{
    font-size:20px;
    max-width:700px;
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    align-items:center;
}

.floating-circle{
    position:absolute;
    border-radius:50%;
    background:rgba(212,175,55,.2);
    backdrop-filter:blur(20px);
}

.circle1{
    width:250px;
    height:250px;
    right:5%;
    top:20%;
    animation:float 8s infinite;
}

.circle2{
    width:150px;
    height:150px;
    left:5%;
    bottom:10%;
    animation:float 6s infinite;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-25px);
    }
}

/* ===========================
   ABOUT
=========================== */

#about img{
    box-shadow:0 25px 50px rgba(0,0,0,.3);
}

/* ===========================
   SERVICES
=========================== */

.service-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    padding:40px 30px;
    border-radius:25px;
    transition:var(--transition);
    height:100%;
}

.service-card:hover{
    transform:translateY(-12px);
    border-color:var(--secondary);
}

.service-card i{
    font-size:40px;
    color:var(--secondary);
    margin-bottom:20px;
}

.service-card h4{
    margin-bottom:15px;
}

/* ===========================
   CTA
=========================== */

.cta-section{
    padding:120px 0;
    text-align:center;
    background:linear-gradient(
        135deg,
        #D4AF37,
        #f4d87a
    );
    color:#000;
}

.cta-section h2{
    font-size:52px;
    font-weight:800;
}

.cta-section p{
    font-size:20px;
    margin:20px 0;
}

/* ===========================
   WHY CHOOSE US
=========================== */

/* ===========================
   FACILITIES
=========================== */

.facility-card{
    background:#182235;
    text-align:center;
    padding:40px 20px;
    border-radius:20px;
    transition:.4s;
}

.facility-card:hover{
    transform:scale(1.05);
    background:var(--secondary);
    color:#000;
}

/* ===========================
   TESTIMONIAL
=========================== */

.testimonial-section{
    background:#0F172A;
    padding:100px 0;
    overflow:hidden;
}

.testimonial-header{
    max-width:750px;
    margin:0 auto 60px;
}

.testimonial-subtitle{
    display:inline-block;
    color:#D4AF37;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}

.testimonial-title{
    color:#ffffff;
    font-size:38px;
    font-weight:600;
    margin-bottom:20px;
}

.testimonial-description{
    color:#94A3B8;
    font-size:17px;
    line-height:1.8;
}

.testimonial-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:40px 35px;
    height:100%;
    transition:.4s ease;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
}

.quote-icon{
    color:#D4AF37;
    font-size:45px;
    line-height:1;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#CBD5E1;
    line-height:1.9;
    font-size:15px;
    margin-bottom:25px;
    min-height: 114px;
    max-height: 114px;
}

.testimonial-card h4{
    color:#ffffff;
    font-size:20px;
    font-weight:700;
    margin-bottom:5px;
}

.testimonial-card span{
    color:#D4AF37;
    font-size:14px;
}

.swiper{
    padding-bottom:60px;
}

.swiper-pagination-bullet{
    background:#ffffff;
    opacity:.5;
}

.swiper-pagination-bullet-active{
    background:#D4AF37;
    opacity:1;
}

@media(max-width:991px){

    .testimonial-title{
        font-size:38px;
    }

}

@media(max-width:767px){

    .testimonial-section{
        padding:70px 0;
    }

    .testimonial-title{
        font-size:30px;
    }

    .testimonial-card{
        padding:30px 25px;
    }

}

/* ===========================
   FAQ
=========================== */

.accordion-item{
    background:#182235;
    border:none;
    margin-bottom:15px;
}

.accordion-button{
    background:#182235;
    color:#fff;
}

.accordion-button:not(.collapsed){
    background:var(--secondary);
    color:#000;
}

.accordion-body{
    background:#121b2d;
    color:#fff;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#070b15;
    padding:80px 0 40px;
}

footer h3{
    color:var(--secondary);
    font-weight:800;
}

footer h5{
    margin-bottom:20px;
}

footer ul li{
    margin-bottom:10px;
}

footer p,
footer li{
    color:#ccc;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:991px){

.hero-title{
    font-size:48px;
}

.section-title{
    font-size:36px;
}

.hero-btns{
    flex-direction:column;
    align-items:flex-start;
}

.btn-outline-light{
    margin-left:0;
    margin-top:15px;
}

}

@media(max-width:767px){

.hero-title{
    font-size:40px;
}

.hero-text{
    font-size:18px;
}

.section-title{
    font-size:30px;
}

.cta-section h2{
    font-size:34px;
}

}

.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#D4AF37;
    color:#000;
    font-size:18px;
    cursor:pointer;
    z-index:999;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.back-to-top.active{
    opacity:1;
    visibility:visible;
}

.back-to-top:hover{
    transform:translateY(-5px);
}


/* =========================
   WHY CHOOSE EVENTPRO
========================= */

.why-section{
    padding:100px 0;
    position:relative;
    overflow:hidden;
}

.why-section::before{
    content:'';
    position:absolute;
    top:-150px;
    right:-150px;
    width:350px;
    height:350px;
    background:rgba(212,175,55,.08);
    border-radius:50%;
}

.why-section::after{
    content:'';
    position:absolute;
    bottom:-150px;
    left:-150px;
    width:350px;
    height:350px;
    background:rgba(139,0,0,.06);
    border-radius:50%;
}

.why-header{
    max-width:750px;
    margin:auto;
    margin-bottom:70px;
}

.why-subtitle{
    display:inline-block;
    background:linear-gradient(135deg,#8B0000,#D4AF37);
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:18px;
}

.why-title{
    font-size:38px;
    font-weight:600;
    margin-bottom:20px;
}

.why-description{
    font-size:17px;
    line-height:1.8;
}

.why-card{
    background:#182235;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:all .4s ease;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.why-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#8B0000,#D4AF37);
    transform:scaleX(0);
    transition:.4s;
}

.why-card:hover::before{
    transform:scaleX(1);
}

.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.why-icon{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#fff;
    background:linear-gradient(135deg,#8B0000,#D4AF37);
    transition:.4s;
}

.why-card:hover .why-icon{
    transform:rotateY(180deg);
}

.why-card h4{
    font-size:24px;
    font-weight:600;
    margin-bottom:15px;
}

.why-card p{
    font-size:15px;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

    .why-title{
        font-size:38px;
    }

}

@media(max-width:767px){

    .why-section{
        padding:70px 0;
    }

    .why-title{
        font-size:30px;
    }

    .why-card{
        padding:30px 25px;
    }

}