footer {
    background-color: #0a0f2b; 
    color: white;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; 
    gap: 30px;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    height: 650px;
}

.footernav {
    display: flex;
    justify-content: space-between;
    align-items: stretch; 
    gap: 30px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
}

.info-containerfoot,
.form-container {
    flex: 1; 
    min-height: 400px; 
}

.info-containerfoot {
    display: flex;
    flex-direction: column;
    gap: 20px; 
    padding: 20px;
    border-radius: 10px;
}

.form-container textarea {
    height: 200px; 
}


.form-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    gap: 10px; 
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
}

.info-boxfot {
    background-color: #00d4fa;
    border-radius: 10px;
    padding: 18px;
    text-align: left;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-container {
    grid-column: span 10;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 70px;
}

.form-container textarea {
    height: 51%;
}

.form-container button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    width: 100%;
}

.form-container button:hover {
    background-color: #0056b3;
}

.footernav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px; 
}

.footer-nav .footer-link {
    color: #131967 !important;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.phone-box {
    display: flex;
    align-items: center;  
    background-color: #131967; 
    padding: 5px 10px; 
    border-radius: 20px; 
    font-weight: bold;
    font-size: 14px;
    color: #333; 
    width: fit-content; 
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); 
}

.phone-box i {
    color: #6a0dad; 
    margin-right: 8px; 
}

.text-darkblue {
    color: #131967 !important; 
}

.footer-nav {
    display: flex;
    justify-content: center; 
    align-items: center; 
    flex-wrap: wrap; 
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px; 
    color: #131967;
}

.footer-item {
    margin: 0;
}

.footer-link {
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #6a0dad; 
}


@media (max-width: 1200px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        height: 100%;
    }

    .footernav {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }


    .info-containerfoot,
    .form-container {
        width: 100%;
    }
}
