{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1e1e1e;
}

.custom-navbar {
    background: rgba(5, 43, 91, 0.9);
    backdrop-filter: blur(10px);
}

.nav-link {
    color: white !important;
    margin-left: 15px;
    font-weight: 500;
}

.hero-section {
    height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('assets/hero-bg.jpg');

    background-size: cover;
    background-position: center;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #052B5B;
}

.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 35px;
    color: #3A9B2F;
    margin-bottom: 15px;
}

.focus-section {
    background: linear-gradient(135deg, #052B5B, #3A9B2F);
}

.focus-card {
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    height: 100%;
}

.focus-card:hover {
    transform: translateY(-10px);
}

.focus-card i {
    font-size: 45px;
    margin-bottom: 20px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.stats-box {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stats-box h3 {
    color: #3A9B2F;
    font-size: 40px;
    font-weight: 700;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.4s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.contact-section {
    background: linear-gradient(135deg, #052B5B, #02152e);
}

.contact-card {
    background: rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #3A9B2F;
}

.footer {
    background: #02152e;
}

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 999;
    text-decoration: none;
}

@media(max-width: 768px) {

    .hero-section h1 {
        font-size: 45px;
    }

    .section-title {
        font-size: 32px;
    }

    .stats-box {
        flex-direction: column;
        gap: 20px;
    }

}