/* Responsive Enhancements */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-content {
    animation: fadeInUp 1s ease-in-out;
    margin-left: -50px;
    max-width: 100%;
}

.contact-content h1 {
    color: #17B19D;
    font-size: clamp(1.5rem, 2vw, 2.5rem);
}

#ul {
    list-style-type: none;
    padding: 0;
}

#icon {
    color: #17B19D;
    margin-right: 10px;
}

ul li {
    color: #5B5755;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

#h1 {
    color: #5B5755;
}

#img {
    margin-left: 0;
    width: 100%;
    max-width: 500px;
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background-color: #000;
}

/* Individual Slides with Gradient */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlider 12s infinite;
    transition: opacity 1s ease-in-out;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }

/* Content Overlay */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 600px;
}

.content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    animation: moveUpDown 4s infinite ease-in-out;
}

#heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.content p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    animation: moveLeftRight 6s infinite ease-in-out;
}

@keyframes fadeSlider {
    0% { opacity: 0; }
    10% { opacity: 1; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

.form-wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 600px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-content {
        margin-left: 0;
        text-align: center;
    }
    .slider-container {
        height: 60vh;
    }
    .form-wrapper {
        margin-left: 0;
        width: 100%;
    }
}
footer h2{
    margin-bottom: 20px;
    color: #ffffff;
    font-family: "Poppins",'san-serif';
    font-size: 20px;
    font-weight: 800;
}
a, a:hover, a:focus {
    text-decoration: none;
}
footer li {
    margin: 5px 0;
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 300;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.5em;
    letter-spacing: 0px;
    color: #ffffff;
    transition: .3s;
}