/* Header Starts Here*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* =========================
   HEADER
========================= */

.header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#ffffff;
    box-shadow:0 4px 25px rgba(0,0,0,0.08);
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:85px;
}

/* =========================
   LOGO
========================= */

.logo a{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-icon{
    width:48px;
    height:48px;
    border-radius:12px;
    background:linear-gradient(135deg,#003366,#0056b3);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
}

.logo-text{
    font-size:28px;
    font-weight:800;
    color:#003366;
}

/* =========================
   NAVIGATION
========================= */

.navbar{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:#1f2937;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
    position:relative;
}

.nav-links a::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    background:#0056b3;
    left:0;
    bottom:-6px;
    transition:0.3s;
}

.nav-links a:hover{
    color:#0056b3;
}

.nav-links a:hover::after{
    width:100%;
}

/* =========================
   BUTTONS
========================= */

.header-buttons{
    display:flex;
    gap:12px;
}

.btn-login{
    padding:11px 24px;
    border:2px solid #0056b3;
    border-radius:8px;
    color:#0056b3;
    font-weight:600;
    transition:0.3s;
}

.btn-login:hover{
    background:#0056b3;
    color:#fff;
}

.btn-register{
    padding:12px 25px;
    background:linear-gradient(135deg,#003366,#0056b3);
    border-radius:8px;
    color:#fff;
    font-weight:600;
    transition:0.3s;
}

.btn-register:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,86,179,0.25);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#003366;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .mobile-toggle{
        display:block;
    }

    .navbar{
        position:absolute;
        top:85px;
        left:-100%;
        width:100%;
        background:#ffffff;
        flex-direction:column;
        padding:30px 0;
        gap:25px;
        transition:0.4s;
        box-shadow:0 15px 35px rgba(0,0,0,0.08);
    }

    .navbar.active{
        left:0;
    }

    .nav-links{
        flex-direction:column;
        text-align:center;
        gap:25px;
    }

    .header-buttons{
        flex-direction:column;
        width:90%;
    }

    .btn-login,
    .btn-register{
        text-align:center;
        width:100%;
    }

}

/* Header Ends Here*/


/* Footer Starts Here */
/* ===========================
   FOOTER
=========================== */

.footer{
    background:#0b1f3a;
    color:#ffffff;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
}

.footer-column h3{
    font-size:20px;
    margin-bottom:25px;
    font-weight:600;
}

.footer-column ul{
    padding:0;
    margin:0;
}

.footer-column ul li{
    list-style:none;
    margin-bottom:14px;
}

.footer-column ul li a{
    color:#d6dbe5;
    transition:0.3s;
}

.footer-column ul li a:hover{
    color:#ffffff;
    padding-left:5px;
}

.footer-about{
    color:#d6dbe5;
    line-height:1.9;
    margin-top:20px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-logo-icon{
    width:50px;
    height:50px;
    background:linear-gradient(135deg,#0056b3,#007bff);
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:22px;
}

.footer-logo-text{
    font-size:30px;
    font-weight:800;
}

.contact-info li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#d6dbe5;
}

.contact-info i{
    color:#4ea4ff;
    margin-top:5px;
}

.social-icons{
    margin-top:25px;
    display:flex;
    gap:12px;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    transition:0.3s;
}

.social-icons a:hover{
    transform:translateY(-4px);
    background:#0056b3;
}

.footer-bottom{
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,0.1);
    padding:20px 0;
    text-align:center;
}

.footer-bottom p{
    color:#c8d0dd;
    font-size:14px;
}

/* ===========================
   WHATSAPP FLOATING BUTTON
=========================== */

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    z-index:99999;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    transition:0.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
}

/* ===========================
   RESPONSIVE FOOTER
=========================== */

@media(max-width:991px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

}

@media(max-width:768px){

    .footer{
        text-align:center;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-logo{
        justify-content:center;
    }

    .contact-info li{
        justify-content:center;
    }

    .social-icons{
        justify-content:center;
    }

    .whatsapp-btn{
        width:60px;
        height:60px;
        font-size:30px;
        right:15px;
        bottom:15px;
    }

}

/* Footer Ends Here */