@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:#111;
}

/* =========================
   CONTAINER
========================= */

.container{
    max-width:1320px;
}

/* =========================
   TOPBAR
========================= */

.topbar{
    background:#07285B;
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.topbar i{
    color:#D4A017;
    margin-right:6px;
}

.topbar a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.topbar a:hover{
    color:#D4A017;
}

/* =========================
   BUTTONS
========================= */

.apply-btn{
    background:#D4A017;
    padding:8px 18px;
    border-radius:4px;
    font-weight:600;
}

.btn-gold{
    background:#D4A017;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:4px;
    font-weight:600;
    transition:0.4s;
}

.btn-gold:hover{
    background:#b88a0f;
    color:#fff;
}

.btn-darkred{
    background:#7A0000;
    color:#fff;
    border:none;
    border-radius:4px;
    font-weight:600;
}

.btn-darkred:hover{
    background:#560000;
    color:#fff;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    background:#fff;
    padding:16px 0;
    box-shadow:0 3px 12px rgba(0,0,0,0.05);
}

.main-logo{
    height:70px;
    width:auto;
}

.navbar-nav{
    align-items:center;
}

.nav-link{
    font-size:16px;
    font-weight:600;
    color:#111 !important;
    margin-left:18px;
    transition:0.3s;
    position:relative;
}

.nav-link:hover{
    color:#D4A017 !important;
}

.nav-link.active{
    color:#D4A017 !important;
}

.nav-link.active::after{
    content:'';
    width:30px;
    height:2px;
    background:#D4A017;
    position:absolute;
    left:0;
    bottom:-8px;
}

/* =========================
   HERO SECTION
========================= */

.hero-section{

    height:850px;

    background-image:
    linear-gradient(rgba(0,0,0,0.55),
    rgba(0,0,0,0.70)),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;

    position:relative;
}

.hero-content{
    max-width:650px;
    color:#fff;
}

.hero-badge{
    color:#fff;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    display:block;
    margin-bottom:20px;
}

.hero-section h1{
    font-size:78px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
}

.gold-text{
    color:#D4A017;
}

.hero-section p{
    font-size:21px;
    color:#ddd;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons .btn{
    padding:15px 35px;
    border-radius:4px;
    font-weight:600;
}

/* =========================
   STATS SECTION
========================= */

.stats-section{
    margin-top:-80px;
    position:relative;
    z-index:10;
}

.stat-card{
    background:#07285B;
    color:#fff;

    padding:45px 25px;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.4s;

    height:100%;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-card i{
    font-size:45px;
    color:#D4A017;
    margin-bottom:18px;
}

.stat-card h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.stat-card p{
    margin:0;
    color:#ddd;
}

/* =========================
   COMMON SECTION
========================= */

section{
    padding:110px 0;
}

.section-tag{
    color:#D4A017;
    text-transform:uppercase;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.section-title{
    font-size:58px;
    font-weight:800;
    margin:20px 0 25px;
    line-height:1.2;
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
    background:#fff;
}

.about-section p{
    font-size:18px;
    line-height:1.9;
    color:#555;
}

.about-section img{
    width:100%;
    border-radius:0;
}

/* =========================
   MEMBERSHIP SECTION
========================= */

.membership-section{
    background:#111;
}

.membership-section .section-title{
    color:#fff;
}

.membership-section p{
    color:#ddd;
    line-height:1.9;
}

.membership-list{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.membership-list li{
    color:#ddd;
    font-size:18px;
    margin-bottom:15px;
}

.membership-section img{
    width:100%;
}

/* =========================
   EVENTS SECTION
========================= */

.events-section{
    background:#f8f9fa;
}

.event-card{

    background:#fff;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

    transition:0.4s;

    height:100%;
}

.event-card:hover{
    transform:translateY(-10px);
}

.event-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.event-card .p-4{
    padding:30px !important;
}

.event-card h4{
    margin-top:20px;
    margin-bottom:15px;
    font-weight:700;
}

.event-card p{
    color:#666;
    line-height:1.8;
}

.event-date{
    background:#07285B;
    color:#fff;
    padding:8px 15px;
    display:inline-block;
    font-size:14px;
    font-weight:600;
}

/* =========================
   NEWS SECTION
========================= */

.news-card{
    background:#fff;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.news-card:hover{
    transform:translateY(-10px);
}

.news-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.news-card .p-4{
    padding:30px !important;
}

.news-category{
    color:#D4A017;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.news-card h4{
    margin-top:15px;
    line-height:1.6;
    font-weight:700;
}

/* =========================
   FOOTER
========================= */

.footer-section{
    background:#061B3A;
    color:#fff;
    padding:90px 0 40px;
}

.footer-section h4{
    margin-bottom:25px;
    font-weight:700;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#D4A017;
}

.footer-section hr{
    margin:40px 0 25px;
    border-color:rgba(255,255,255,0.1);
}

/* =========================
   IMAGE FIX
========================= */

img{
    max-width:100%;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:1199px){

    .hero-section h1{
        font-size:64px;
    }

}

@media(max-width:991px){

    .hero-section{
        height:auto;
        padding:150px 0 100px;
    }

    .hero-section h1{
        font-size:54px;
    }

    .section-title{
        font-size:42px;
    }

    .stats-section{
        margin-top:0;
        padding-top:50px;
    }

}

@media(max-width:768px){

    .topbar{
        font-size:11px;
        text-align:center;
    }

    .topbar .container{
        flex-direction:column;
        gap:8px;
    }

    .navbar{
        padding:12px 0;
    }

    .main-logo{
        height:50px;
    }

    .hero-section{
        padding:130px 0 90px;
    }

    .hero-content{
        text-align:left;
    }

    .hero-section h1{
        font-size:42px;
    }

    .hero-section p{
        font-size:16px;
    }

    .hero-buttons .btn{
        width:100%;
        margin-bottom:15px;
    }

    .section-title{
        font-size:34px;
    }

    .stat-card{
        margin-bottom:20px;
    }

    section{
        padding:70px 0;
    }

}

@media(max-width:576px){

    .hero-section h1{
        font-size:36px;
    }

    .hero-section p{
        font-size:15px;
    }

    .section-title{
        font-size:30px;
    }

    .stat-card{
        padding:35px 20px;
    }

}