.contact-hero {
    height: 60vh;
    background: url('../IMG/17511.jpg') no-repeat center bottom;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    font-family: 'Cairo', sans-serif;
    font-size: 3rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.breadcrumb-item a {
    color: white;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f104';
    font-family: 'Font Awesome 5 Pro';
    color: white;
    padding: 0 0.8rem;
    font-weight: 900;
    font-size: 1.2rem;
}


.contact-section .contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
}

.contact-section .contact-info-box {
    padding: 30px;
}

.contact-section .contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-section .contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-left: 15px;
    flex-shrink: 0;
}

.contact-form-box {
    padding: 30px;
}

.contact-info-item a{
    transition: all 0.3s;
    color: #333;
    font-weight: 500;
}
.contact-info-item a:hover{
    color: var(--primary-color);
    text-decoration: underline;
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(46, 62, 168, 0.25);
}

textarea.form-control {
    min-height: 150px;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.social-contact {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.social-contact a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s;
}

.social-contact a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}




@media (max-width: 991.98px) {

    
    .contact-info-box {
        padding: 20px;
    }
    
    .contact-form-box {
        padding: 20px;
    }
}

@media (max-width: 767.98px) {
    
    .contact-info-item {
        flex-direction: column;
    }
    
    .contact-info-icon {
        margin-left: 0;
        margin-bottom: 15px;
    }
}