/* ... your existing CSS ... */

.contact-item {
    margin-bottom: 1.5rem;
    display: flex; /* Use flexbox for icon alignment */
    align-items: center; /* Center icons vertically */
    justify-content: center; /* center items */
    flex-wrap: wrap; /* allow wrapping on small screens */
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    width: 100%; /* Make h3 take full width */
    text-align: center; /* center the heading */
}

.contact-item a {
    font-size: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex; /* align icon and text */
    align-items: center;
    margin: 5px; /* add spacing */
}

.contact-item a:hover {
    color: var(--link-hover-color);
}

.contact-item i { /* Style icons */
    margin-right: 0.5rem;
    font-size: 1.2rem; /* Icon size */
    color: var(--accent-color); /* Icon color */
}

.whatsapp-available { /* Style for WhatsApp availability */
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-block; /* allows margin and padding to work */
}

/* ... your existing CSS ... */

/* Define color variables */
:root {
    --primary-color: #0077b6;    /* Main blue color */
    --secondary-color: #00b4d8;  /* Lighter blue for hover effects */
    --accent-color: #0096c7;     /* Accent blue for links */
    --background-color: #f2f2f2; /* Light background */
    --card-bg-color: #ffffff;    /* White background for the card */
    --shadow-color: rgba(0, 0, 0, 0.1); /* Light shadow */
    --shadow-hover-color: rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
    --footer-bg-color: #333333;  /* Footer dark background */
    --footer-text-color: #ffffff; /* Footer text color */
    --link-hover-color: #0096c7;  /* Link hover color */
}

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

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Contact Info Section */
.contact-info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 1rem;
    flex: 1; /* Ensures this section takes up available space */
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.8); /* Add transparency */
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow-color);
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px var(--shadow-hover-color);
}

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item a {
    font-size: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--link-hover-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: rgba(26, 26, 26, 0.8); /* Add transparency to the darker background */
    color: #ffffff; /* Ensure text remains readable */
    position: relative;
    bottom: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }

    .contact-card h2 {
        font-size: 1.5rem;
    }
}

#myVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Ensure the video stays in the background */
}

