body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

/* Logo animation container */
.logo-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    z-index: 9999;
    transition: opacity 1s ease;
}

.logo-animation img {
    width: 200px;
    animation: logoFadeIn 2s ease;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hide {
    opacity: 0;
    pointer-events: none;
}

/* Mobile-friendly layout */
.video-container {
    position: relative;
    height: 300px;
    z-index: -1;
}

.video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.logo-overlay img {
    width: 200px;
    height: auto;
}

/* Profile section styling */
.profile-section {
    background-color: #1a7747;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.profile-section h2 {
    font-size: 28px;
    margin: 10px 0;
}

.profile-section p {
    font-size: 16px;
    margin-bottom: 0;
}

.profile-section img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-top: -55px;
}

/* Contact section styling */
.contact-section {
    padding: 15px;
    text-align: center;
}

.contact-section a {
    display: inline-block;
    margin: 10px;
    color: #1a7747;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.contact-section a i {
    margin-right: 10px;
}

.contact-section a:hover {
    color: #0056b3;
}

/* Button section styling */
.button-section {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    margin-top: 10px;
}

.button-section a {
    background-color: #1a7747;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-section a:hover {
    background-color: #0056b3;
}

/* Modal form styling */
.modal-content {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

/* Form group and button styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline-color: #28a745;
}

.form-group button {
    padding: 12px 24px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.form-group button:hover {
    background-color: #218838;
}

.form-group textarea {
    resize: vertical;
    height: 150px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .profile-section img {
        width: 100px;
        height: 100px;
    }

    .profile-section h2 {
        font-size: 22px;
    }

    .profile-section p {
        font-size: 14px;
    }

    .button-section a {
        font-size: 14px;
        padding: 10px 15px;
    }

    .contact-section a {
        font-size: 14px;
    }

    .modal-content {
        padding: 20px;
    }

    .form-group input, .form-group select, .form-group textarea {
        font-size: 14px;
    }
}
