/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f0f0f5;  /* Lighter background for contrast */
    color: #333;
    line-height: 1.6;
    padding: 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease-in-out;
}

/* Header */
header {
    background: linear-gradient(135deg, #6e45e2, #88d3ce);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
}

header h1 {
    font-size: 3rem;
    letter-spacing: 1px;
    font-weight: 700;
}

header:hover {
    background: linear-gradient(135deg, #88d3ce, #6e45e2); /* Header hover effect */
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    background: #333;
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: center;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    padding: 12px 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

nav ul li a:hover {
    background-color: #6e45e2;
    color: #fff;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

main:hover {
    transform: scale(1.02); /* Slight zoom effect on hover */
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #6e45e2;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

h2:hover {
    text-decoration: underline;
    text-decoration-color: #6e45e2;
}

/* Paragraph Styling */
p {
    display: block;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
    font-size: 1.2rem;
    color: #555;
    letter-spacing: 0.5px;
}

p:hover {
    color: #6e45e2;
    cursor: pointer;
}

/* Buttons */
button, .btn {
    display: inline-block;
    background: #6e45e2;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    text-transform: uppercase;
}

button:hover, .btn:hover {
    background: #4a2bb7;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

footer p {
    margin: 10px 0;
    letter-spacing: 0.5px;
}

/* Social Media Buttons */
.a2a_kit {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.a2a_button_facebook,
.a2a_button_twitter,
.a2a_button_linkedin,
.a2a_button_email,
.a2a_button_whatsapp {
    background-color: #4a2bb7;
    padding: 12px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    transition: background-color 0.3s ease-in-out;
}

.a2a_button_facebook:hover {
    background-color: #3b5998;
}

.a2a_button_twitter:hover {
    background-color: #1da1f2;
}

.a2a_button_linkedin:hover {
    background-color: #0077b5;
}

.a2a_button_email:hover {
    background-color: #c71626;
}

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

/* Contact Section */
.contact p {
    font-size: 1.2rem;
    margin: 15px 0;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    header h1 {
        font-size: 2.2rem;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin-bottom: 12px;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    button, .btn {
        padding: 12px 25px;
    }

    .a2a_kit {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    header {
        padding: 30px 10px;
    }

    header h1 {
        font-size: 1.8rem;
    }

    main {
        padding: 15px;
    }

    h2 {
        font-size: 1.6rem;
    }

    button, .btn {
        padding: 10px 20px;
    }
}
/* Label to wrap the image and the radio button */
label {
    display: inline-block;
    margin: 10px;
    cursor: pointer;  /* Makes the whole label clickable */
}

/* Hide the default radio button */
label input[type="radio"] {
    display: none;
}

/* Style the images */
label img {
    width: 100%;
    max-width: 500px;  /* You can adjust the max-width to fit your layout */
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);  /* Optional: adds a nice shadow to the image */
    transition: transform 0.3s ease-in-out;  /* Smooth hover effect */
}

/* Hover effect on the image */
label:hover img {
    transform: scale(1.05);  /* Slight zoom effect on hover */
}

/* When radio button is selected, highlight the image */
label input[type="radio"]:checked + img {
    border: 5px solid #6e45e2;  /* Highlight selected image with a border */
}
