body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    max-width: 100%;
}

header {
    background: url('headercov.png');
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff; /* Text color - Adjust as needed */
    padding: 80px; /* Adjusted padding to accommodate the cover image */
    text-align: center;
    opacity: 0.8; /* Semi-transparent */
    min-height: 40vh;
}

.headerx h1 {
    font-size: 2em; /* Adjust the font size as needed */
    font-weight: bold; /* Example: Make the text bold */
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif; /*
}

.feature video {
    width: 100%; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Optional: Add border-radius for a rounded appearance */
}


.hero {
    background-color: #f0f0f0;
    text-align: center;
    padding: 50px;
}

.cta-button {
    display: inline-block;
    background-color: teal;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #25d366;
}

.features {
    display: grid; /* Use grid layout for better responsiveness */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #fff;
}

.feature {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.cta {
    background-color: teal;
    color: #fff;
    text-align: center;
    padding: 50px;
}

.contact-links {
    display: flex;
    justify-content: center; /* Center the buttons */
    margin-top: 20px;
}

.contact-links a {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    color: #fff;
    background-color: #0077cc; /* Adjusted color for both WhatsApp and Telegram */
    transition: background-color 0.3s ease-in-out;
}

.contact-links a.whatsapp,
.contact-links a.telegram {
    margin: 0 5px; /* Adjusted margin for the buttons */
}

.contact-links a.whatsapp {
    background-color: #25d366; /* WhatsApp green */
}

.contact-links a.telegram {
    background-color: #0088cc; /* Telegram blue */
}

footer {
    max-width: 100%;
    min-height: 5em;
    border-top: 5px solid teal;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: relative; /* Make the position relative */
    clear: both; /* Clear both sides to avoid overlapping */
    background-image: linear-gradient(330deg, rgba(225, 225, 225, 0.05) 0%, rgba(225, 225, 225, 0.05) 33.333%,rgba(114, 114, 114, 0.05) 33.333%, rgba(114, 114, 114, 0.05) 66.666%,rgba(52, 52, 52, 0.05) 66.666%, rgba(52, 52, 52, 0.05) 99.999%),linear-gradient(66deg, rgba(181, 181, 181, 0.05) 0%, rgba(181, 181, 181, 0.05) 33.333%,rgba(27, 27, 27, 0.05) 33.333%, rgba(27, 27, 27, 0.05) 66.666%,rgba(251, 251, 251, 0.05) 66.666%, rgba(251, 251, 251, 0.05) 99.999%),linear-gradient(225deg, rgba(98, 98, 98, 0.05) 0%, rgba(98, 98, 98, 0.05) 33.333%,rgba(222, 222, 222, 0.05) 33.333%, rgba(222, 222, 222, 0.05) 66.666%,rgba(228, 228, 228, 0.05) 66.666%, rgba(228, 228, 228, 0.05) 99.999%),linear-gradient(90deg, rgb(28, 20, 63),rgb(40, 160, 253));
}
