*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Calibri', 'Inter', sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #0e0e0e;
    padding-top: 80px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0e0e0e;
    padding: 20px 100px;
    z-index: 999;
    transition: padding 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.logo a {
    text-decoration: none;
    margin: 0;
    padding: 0;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 24px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

header.scrolled {
    padding: 10px 100px;
}

header.scrolled .logo {
    font-size: 20px;
    gap: 10px;
}

header.scrolled .logo img {
    height: 30px;
}

/* Burger menu style */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 17px;
    justify-content: space-between;
}

.menu-toggle span {
    background: white;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Transform burger to cross when active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
    padding: 20px;
    margin: 40px 100px;
    background-color: #000;
}

.hero-img {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Ensure the text appears on top of the image */
}

.hero .desc {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    padding: 20px;
    border-radius: 10px;
    z-index: 1;
    /* Ensure text is on top */
    width: 100%;
}

.hero .desc h1 {
    font-size: 48px;
    margin: 0;
}

.hero .desc p {
    font-size: 26px;
    margin: 10px auto;
    width: 70%;
}

.section {
    background: #f5f5f5;
    margin: 40px 100px;
    padding: 40px 40px;
    border-radius: 12px;
}

.section h2 {
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0 0 24px 0;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.about-left {
    flex: 1;
    text-align: left;
    font-size: 20px;
    word-spacing: 3px;
    letter-spacing: 1px;
    line-height: 27px;
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: center;
}

.about-right img {
    max-width: 300px;
    width: 100%;
    border-radius: 12px;
}

.about-right .logo-image {
    max-width: 50%;
}

.about-right .about-image {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
}

.products-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    padding-bottom: 20px;
    height: 380px;
}

.product-main-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.product-icon {
    width: 70px;
    height: 70px;
    margin-top: -40px;
    border-radius: 10px;
    background: white;
    border: 2px solid white;
}

.product-card h3 {
    margin: 16px 0 8px 0;
    font-size: 20px;
    font-weight: 700;
}

.product-card p {
    font-size: 14px;
    color: #777777;
    margin-bottom: 16px;
}

.read-more-btn {
    background: #ff9900;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.coming-soon {
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    color: #cccccc;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-section iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    border: none;
}

.contact-details {
    margin-top: 20px;
    text-align: left;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
}

.social-links {
    margin-top: 20px;
}

.social-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icons img {
    width: 32px;
    height: 32px;
}


.footer {
    background: #0e0e0e;
    color: white;
    padding: 0;
    font-size: 14px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 20px 100px 40px;
}

.footer-left,
.footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-left h4,
.footer-right h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-left p,
.footer-right p {
    margin: 8px 0;
    font-size: 14px;
}

.footer-left a,
.footer-right a {
    color: white;
    text-decoration: none;
}

.footer-right {
    text-align: right;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #aaaaaa;
    padding: 20px;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
}


@media (max-width: 768px) {
    header {
        padding: 20px 20px;
    }

    header.scrolled {
        padding: 10px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        right: 0;
        background: #0e0e0e;
        width: 200px;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 0;
        border-radius: 8px 0 0 8px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.show {
        transform: translateX(0);
    }

    .nav-menu.scrolled {
        top: 60px;
    }

    .nav-menu a {
        width: 100%;
        padding: 12px 20px;
    }

    .hero {
        height: 480px;
        padding: 0;
        margin: 20px;
    }

    .hero .desc p {
        width: 90%;
    }

    .section {
        margin: 20px 20px;
        padding: 20px 20px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }

    .about-content {
        flex-direction: column;
    }

    .products-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 300px;
    }
}