/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Animated Top Image Section */
.top-image-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.top-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: infiniteZoom 10s ease-in-out infinite;
}

@keyframes infiniteZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}



@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

/* Contact Details Section */
.contact-details {
    background-color: #fff;
    padding: 3rem 1rem;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.detail-item {
    flex: 1 1 45%;
    display: flex;
    align-items: flex-start;
    background-color: #d7e2db;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.detail-item i {
    font-size: 2rem;
    color: #1c222c;
    margin-right: 1rem;
    min-width: 40px;
}

.detail-item h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.detail-item p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .detail-item {
        flex: 1 1 100%;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 3rem 1rem;
    background-color: #f4f4f4;
}

.form-container {
    max-width: 800px;
    margin: auto;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    position: relative;
}

.form-container h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #1c222c;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.required {
    color: #1c222c;
    margin-left: 2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1c222c;
    outline: none;
}

.btn {
    display: block;
    width: 100%;
    background-color: #1c222c;
    color: #fff;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

#form-response {
    margin-top: 1rem;
    text-align: center;
    font-size: 1rem;
    color: #27ae60;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 600px) {
    .form-container {
        padding: 1.5rem;
    }
}

