/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#f5f7fb;
}

/* Navbar */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:#071a35;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo img{
    width:130px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#FFD700;
}

.join-btn{
    background:#FFD700;
    color:#071a35;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.join-btn:hover{
    background:#ffb400;
    transform:translateY(-2px);
}

.vip-banner{
    display:block;
    width:fit-content;
    margin:15px auto;
    padding:14px 30px;
    background:linear-gradient(90deg,#25D366,#128C7E);
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    border-radius:50px;
    box-shadow:0 8px 20px rgba(37,211,102,.35);
    transition:0.3s;
    animation:pulse 2s infinite;
}

.vip-banner:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 12px 30px rgba(37,211,102,.5);
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.03);
    }
    100%{
        transform:scale(1);
    }
}
.whatsapp-btn {
    display: inline-block;
    background: #25D366;   /* WhatsApp Green */
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #FFD700;   /* Yellow */
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
/* ===== OUR ACHIEVEMENTS ===== */

.stats {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
    text-align: center;
}

.stats h2 {
    font-size: 40px;
    color: #1b5e20;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.stats h2::after {
    content: "";
    width: 100px;
    height: 4px;
    background: #25D366;
    display: block;
    margin: 12px auto;
    border-radius: 10px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-box {
    background: hsl(129, 65%, 23%);
    width: 280px;
    padding: 30px 20px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.4s ease;
    border-top: 6px solid #25D366;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: #c38521;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.stat-box h3 {
    font-size: 42px;
    color: #25D366;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-box:hover h3 {
    color: #FFD700;
}

.stat-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    font-weight: 600;
}

.stat-box:hover p {
    color: white;
}

/* Mobile Responsive */

@media (max-width:768px){

.stats h2{
    font-size:30px;
}

.stat-box{
    width:90%;
}

.stat-box h3 {
    font-size: 42px;
    color: #25D366 !important;
    display: block;
}

}
/* ===== HERO SECTION ===== */

.hero{
    background: linear-gradient(135deg,#0f172a,#1e3a8a,#2563eb);
    color:white;
    text-align:center;
    padding:40px 20px;
    border-radius:0 0 30px 30px;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
    font-weight:700;
}

.hero p{
    font-size:22px;
    line-height:1.8;
    max-width:800px;
    margin:auto;
    color:#f1f5f9;
}

.buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:15px 28px;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    transition:0.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.btn:hover{
    background:#FFD700;
    color:#000;
    transform:translateY(-5px) scale(1.05);
}
.hero-content{
    max-width:900px;
    margin:0 auto;
}

.hero-image img{
    width:550px;
    height:450px;
    object-fit:cover;
    border-radius:10%;
    margin:25px 0;
    border:5px solid #FFD700;
}
    .hero-image img:hover{
        transform: scale(1.05);
        transition: 0.3;
    }


.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin:30px 0;
    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
    padding:15px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.primary-btn{
    background:#25D366;
    color:#fff;
}

.secondary-btn{
    background:#FFD700;
    color:#000;
}

.hero-stats{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:35px;
    flex-wrap:wrap;
}

.hero-stats div{
    background:rgba(255,255,255,.12);
    padding:20px;
    border-radius:12px;
    min-width:180px;
}