body,
html {
    height: 100%;
    margin: 0;
    font-family: "Poppins", sans-serif !important;
}

.bg-cover {
    background: url("images/main.jpeg") no-repeat center center;
    background-size: cover;
    height: 100vh;
    position: relative;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Optional dark overlay */
}

.logo {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 10;
}

.menu-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 10;
    color: white;
    font-size: 28px;
}

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.center-text h1 {
    font-size: 4rem;
    font-weight: 800;
}

.center-text p {
    font-size: 1.2rem;
}

.product-card img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.product-card h6 {
    font-weight: 600;
    margin-top: 12px;
}

.product-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

.section-heading {
    font-weight: 700;
}

.about-section h2 {
    font-weight: 700;
}

.about-section p {
    color: #6c757d;
    font-size: 1rem;
}

.about-logo {
    max-width: 180px;
    height: auto;
}

@media (max-width: 767.98px) {
    .about-section {
        text-align: center;
    }

    .about-logo {
        margin-top: 1.5rem;
    }
}

.footer {
    background-color: #0a0f1b;
    color: #ffffff;
    padding: 3rem 1rem;
}

.footer-logo {
    max-width: 140px;
    margin-bottom: 1rem;
}

.footer p {
    margin: 0;
    color: #cbd5e1;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.875rem;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    margin-left: 1rem;
}

.footer a:hover {
    text-decoration: underline;
}