/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    line-height: 1.6;
}

/* Main Banner */
.main-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 10px;
}

.banner {
    text-align: center;
    padding: 20px;
}

.header-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.header-text h1 {
    font-size: 36px;
    font-weight: bold;
    text-align: left;
}

.header-text .subtext {
    font-size: 14px;
    text-align: right;
}

.cta-button {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #333;
}

.main-image {
    width: 90%;
    border-radius: 10px;
    
    height: 75vh;
}

.logos {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.logos img {
    height: 40px;
    margin: 0 15px;
}

.main-text {
    font-size: 24px;
    margin: 20px 0;
}

/* Footer Styles */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.footer-links a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffdd57;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 24px;
    z-index: 1000;
}

.whatsapp-button:hover {
    background-color: #20b359;
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
    .header-text {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .header-text h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .header-text .subtext {
        font-size: 12px;
        text-align: left;
        margin-top: 5px;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .main-image {
        width: 100%;
    border-radius: 10px;
    
    height: 55vh;
       
    }

    .main-text {
        font-size: 20px;
    }

    .logos {
        flex-direction: column;
        align-items: center;
        margin: 10px 0;
    }

    .logos img {
        height: 30px;
        margin: 10px 0;
    }
}

/* Media Queries for Small Mobile Devices */
@media (max-width: 480px) {
    .header-text h1 {
        font-size: 24px;
    }

    .header-text .subtext {
        font-size: 10px;
    }

    .cta-button {
        padding: 8px 15px;
        font-size: 12px;
    }

    .main-image {
        height: 50vh;
    }

    .main-text {
        font-size: 18px;
    }

    .logos img {
        height: 25px;
        margin: 10px;
    }

   
    footer {
        background-color: #222;
        color: #fff;
        text-align: center;
        padding: 20px;
        position: relative;
    }
    
    .footer-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 10px 0;
    }
    
    .footer-links a {
        color: #fff;
        font-size: 12px;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer-links a:hover {
        color: #ffdd57;
    }
    
    /* WhatsApp Button */
    .whatsapp-button {
        position: fixed;
        bottom: 35px;
        right: 35px;
        background-color: #25d366;
        color: white;
        width: 25px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        font-size: 14px;
        z-index: 1000;
    }
    
    .whatsapp-button:hover {
        background-color: #20b359;
    }
    
}
