/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 10px;
}
.text-section {
    width: 50%;
    padding: 20px;
    background: #E8F0FE;
    border-radius: 10px;
    height: 30vh; /* Adjust the height as needed */
}
.image-section {
    width: 100%;
    position: relative;
}
.image-section img {
    width: 100%;
    border-radius: 10px;
    display: none;
}
.image-section img.active {
    display: block;
}
.image-nav {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.image-nav button {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 18px;
}
.view-all {
    background: #0056b3;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
h1 {
    color: #800000;
    font-size: 32px;
}
h3 {
    color: #C70039;
}
.highlights {
    padding: 20px;
    background: white;
    margin-top: 10px;
    border-radius: 10px;
}
.highlight-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.highlight-number {
    font-size: 24px;
    font-weight: bold;
    color: #0056b3;
    margin-right: 15px;
}
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
.footer a {
    color: #f4f4f4;
    text-decoration: none;
    margin: 0 10px;
}

/* Responsive styles for small devices */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .text-section, .image-section {
        width: 90%;
        height: auto; /* Adjust the height as needed */
    }
    .text-section {
        margin-bottom: 20px;
    }
    .image-nav {
        position: static;
        margin-top: 10px;
    }
    .image-nav button {
        font-size: 24px;
    }
    h1 {
        font-size: 24px;
    }
    h3 {
        font-size: 18px;
    }
    .highlight-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .highlight-number {
        font-size: 20px;
        margin-bottom: 5px;
    }
}
.whatsapp {
    position: fixed;
    bottom: 20px;   /* Distance from the bottom */
    right: 20px;    /* Distance from the right */
    background-color: #25d366; /* WhatsApp Green Color */
    border-radius: 50%; /* Circular button */
    padding: 10px;
    z-index: 1000; /* Ensure the button appears above other elements */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Shadow for better visibility */
    transition: transform 0.3s ease-in-out; /* Smooth transition effect */
}

/* Hover effect */
.whatsapp:hover {
    transform: scale(1.1); /* Slightly grow the icon when hovered */
}

/* Optional: Adjust the size of the WhatsApp icon */
.whatsapp svg {
    width: 40px; /* Icon size */
    height: 40px; /* Icon size */
}
