/* Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* 🔹 Navbar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background: #000;
    color: #fff;
}

header h1 {
    margin: 0;
}

nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #00bcd4;
}

/* 🔹 Hero Section */
.hero {
    height: 80vh;
    background: url("images/export.jpg") no-repeat center/cover;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    text-align: center;
    color: white;

    position: relative;
}

/* 🔥 Add overlay properly */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5); /* dark overlay */
}

/* 🔥 Make text appear above overlay */
.hero h2,
.hero p,
.hero .btn {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 42px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
}

.hero button, .hero .btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: #000;
    color: white;
    text-decoration: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.hero button:hover, .hero .btn:hover {
    background: #00bcd4;
}

/* 🔹 About Preview */
.about-preview {
    padding: 60px 80px;
    text-align: center;
    background: #f9f9f9;
}

.about-preview h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-preview p {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    color: #555;
}

/* 🔹 Technology Section */
.tech {
    padding: 60px 80px;
    text-align: center;
}

.tech h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.tech p {
    max-width: 700px;
    margin: auto;
    color: #555;
}

/* Cards */
.tech-services {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.card {
    background: #f4f4f4;
    padding: 25px;
    width: 250px;
    border-radius: 8px;
    transition: 0.3s;
}

.card:hover {
    background: #00bcd4;
    color: white;
}

/* 🔹 Page Title */
.page-title {
    text-align: center;
    padding: 60px 20px;
    background: #f4f4f4;
}

.page-title h2 {
    font-size: 36px;
}

.page-title p {
    color: #555;
}

/* 🔹 Products Section */
.products {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px;
}

/* Product Card */
.product-card {
    width: 300px;
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.product-card h3 {
    margin-top: 15px;
}

.product-card p {
    color: #555;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* 🔹 Services Section / Preview */
.services-section, .services-preview {
    padding: 60px 80px;
    text-align: center;
}

.services-section h2, .services-preview h2 {
    margin-bottom: 30px;
}

/* Container */
.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Box */
.service-box {
    width: 250px;
    background: #f4f4f4;
    padding: 25px;
    border-radius: 8px;
    transition: 0.3s;
}

.service-box:hover {
    background: #00bcd4;
    color: white;
}

/* 🔹 Contact Section */
.contact-section {
    padding: 60px 80px;
}

.contact-container {
    display: flex;
    gap: 50px;
}

/* Left side */
.contact-info {
    width: 40%;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Right side */
.contact-form {
    width: 60%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
}

.contact-form button {
    padding: 10px 20px;
    background: #00bcd4;
    color: white;
    border: none;
    cursor: pointer;
}

/* 🔹 About Section */
.about-section {
    padding: 60px 80px;
    text-align: center;
}

.about-container {
    max-width: 800px;
    margin: auto;
}

.about-text h3 {
    margin-bottom: 15px;
}

.about-container p, .about-text p {
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* 🔥 Highlights */
.about-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 80px;
}

.highlight-box {
    width: 250px;
    background: #f4f4f4;
    padding: 25px;
    border-radius: 8px;
    transition: 0.3s;
}

.highlight-box:hover {
    background: #00bcd4;
    color: white;
}

/* 🔹 Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: white;
    margin-top: 40px;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {

    /* Navbar */
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    /* Hero */
    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 20px;
    }

    /* Sections padding */
    .about-preview,
    .services-preview,
    .services-section,
    .contact-section {
        padding: 40px 20px;
    }

    /* Services boxes & Highlights */
    .services-container, .about-highlights {
        flex-direction: column;
        align-items: center;
    }

    .service-box, .highlight-box {
        width: 90%;
    }

    /* Contact layout */
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}