body {
    margin: 0;
    font-family: "Inter", serif;
}

.contact-section {
    background-color: #fafafa; /* Background for form section */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Slide effect */
    transition: all 0.8s ease-in-out;
}

.contact-section.animate-contact {
    opacity: 1;
    transform: translateY(0); /* Slide back to position */
}

h2 {
    color: black; /* Heading color */
}

p {
    color: black; /* Paragraph color */
    font-size: 1.1rem;
}

label {
    color: darkorange; /* Label color */
}

.btn-custom {
    background-color: orange; /* Button color */
    border: none;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: rgb(252, 185, 62); /* Button hover */
}

input, textarea {
    border-radius: 5px;
    border: 1px solid #ddd;
}

input:focus, textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Animations */
@keyframes slideLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-left {
    animation: slideLeft 0.8s ease-out forwards;
}

.slide-right {
    animation: slideRight 0.8s ease-out forwards;
}

.slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Initial state for form elements */
.contact-section .form-control, .contact-section button {
    opacity: 0;
    transform: translateY(20px); /* Start slightly off-screen */
}




/* footer part */

.footer {
    background-color: #222121;
    color: #fff;
    padding: 40px 0;
    opacity: 0; /* Hidden initially */
    transform: translateY(50px); /* Slide-up effect */
    transition: all 0.8s ease-in-out;
}

.footer h5 {
    color: #ff8700;
    font-weight: bold;
}

.footer p, .footer ul li {
    color: #fff;
    font-size: 0.9rem;
    margin: 5px 0;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff8700;
}

.footer img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.footer.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Slide back to position */
}

.footer .fas {
    color: #ff8700; /* Same as the design color */
    margin-right: 10px;
    font-size: 1.2rem;
}

.pickup-text {
    color: #ff8700;
    font-size: 1.2rem;
    font-weight: bold;
}
