* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    background-color: #0b1120; /* Dark blue background */
    color: #ffffff; /* Light text */
}   

header {
    background-color: #0f172a; /* Darker header background */
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.logo {
    display: block;
    margin: 0 auto;
    width: 150px; /* Logo size */
}

main {
    flex: 1;
    padding: 20px;
    text-align: center; /* Center align text in main */
}

h1 {
    font-size: 48px;
    color: #38bdf8; /* Bright blue text */
    margin-bottom: 20px;
}

p {
    font-size: 20px;
    color: #94a3b8; /* Muted grey-blue text */
    max-width: 700px;
    margin: 0 auto 20px;
}

button {
    background-color: #3b82f6; /* Solid blue button */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px; /* Rounded button */
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

button:hover {
    background-color: #2563eb; /* Darker blue on hover */
    transform: scale(1.05); /* Slight scaling effect */
}

/* About Duzo Section */
.about-duzo {
    margin-top: 50px;
    padding: 20px;
}

.about-duzo h2 {
    font-size: 32px;
    color: #38bdf8; /* Bright blue */
    margin-bottom: 10px;
}

.about-duzo p {
    font-size: 20px;
    color: #94a3b8; /* Muted grey-blue */
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 40px 0;
}

.services h2 {
    color: #38bdf8; /* Bright blue */
    font-size: 32px;
    margin-bottom: 30px;
}

.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 900px;
}

.service-item {
    text-align: center;
    max-width: 250px;
    margin: 20px;
    padding: 20px;
    background-color: #1e293b; /* Darker card background */
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.service-item img {
    width: 80px;
    margin-bottom: 10px;
}

.service-item h3 {
    font-size: 22px;
    color: #38bdf8; /* Bright blue */
}

.service-item p {
    color: #94a3b8; /* Muted grey-blue */
}

/* WhatsApp Section */
.whatsapp-section {
    background-color: #2a2a2a;
    padding: 40px 0;
    border-radius: 10px;
    margin: 20px 0;
}

.whatsapp-section h2 {
    color: #38bdf8;
}

.whatsapp-section p {
    margin-bottom: 20px;
}

.whatsapp-section a {
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.whatsapp-section a:hover {
    background-color: #1ebea1;
}

/* Newsletter Section */
.newsletter {
    padding: 40px 20px;
    background-color: #1e293b;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.newsletter h2 {
    color: #38bdf8;
}

.newsletter p {
    color: #94a3b8;
}

.newsletter form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.newsletter input[type="email"] {
    padding: 10px;
    width: 300px;
    margin-right: 10px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #333;
    color: #ffffff;
}

.newsletter button {
    padding: 10px 20px;
    background-color: #3b82f6;
    color: white;
    border: none;
    cursor: pointer;
}

.newsletter button:hover {
    background-color: #2563eb;
}

/* Horizontal Footer */
footer {
    width: 100%;
    background-color: #0f172a;
    color: #fff;
    padding: 20px 0;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.company-info {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.company-info a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.company-info a:hover {
    color: #38bdf8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a img {
    width: 24px;
    height: 24px;
    margin: 0 10px;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .company-info {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .social-links {
        margin-top: 10px;
    }
}
    
@media (max-width: 768px) {
    .company-info a {
        font-size: 16px; /* Increase font size for smaller screens */
        margin: 10px 0;
    }

    .social-links a img {
        width: 32px; /* Slightly larger icons for smaller screens */
        height: 32px;
    }
}

@media (max-width: 480px) {
    .company-info {
        flex-direction: column;
    }

    .company-info a {
        font-size: 14px;
        margin: 5px 0;
    }

    .social-links a img {
        width: 28px;
        height: 28px;
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #fff;
    color: #000;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    text-align: left;
}

.close {
    color: #000;
    float: right;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

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

    .service-item {
        margin-bottom: 20px;
    }

    .newsletter input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }

    .newsletter form {
        flex-direction: column;
        align-items: center;
    }

    button {
        width: 100%;
    }
}

/* Timer Styling */
.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.timer div {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.timer div span {
    display: block;
    font-size: 3em;
}

.timer div p {
    margin: 0;
    font-size: 1.2em;
}


/* Media Queries */
@media (max-width: 1024px) {
    .timer {
        flex-direction: column;
        align-items: center;
    }

    .timer div {
        width: 80%; /* Adjust width for medium screens */
    }

    .service-item {
        max-width: 48%; /* Two items per row */
    }
}

@media (max-width: 768px) {
    .timer {
        flex-direction: column;
        align-items: center;
    }

    .timer div {
        width: 90%; /* Wider for small screens */
    }

    .service-item {
        max-width: 100%; /* Full width for small screens */
        margin-bottom: 20px; /* Add margin for spacing */
    }
}

@media (max-width: 480px) {
    .timer div span {
        font-size: 2.5em; /* Smaller font for smaller screens */
    }

    .timer div p {
        font-size: 1em; /* Smaller text */
    }
}


