.hero-about {
    background-size: cover !important;
    background-position: center !important;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}


.hero-about div {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Contact Page Styles */
.contact-section .contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.contact-section .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


.contact-details-box {
    background-color: rgba(255, 255, 255, 0.95);
}

.contact-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    background: var(--primary-color) !important;
    transition: all 0.3s ease;
}


.item h5 {
    font-weight: 700;
    color: var(--secondary-color) !important;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 5px;
}




.item p {
    color: var(--secondary-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.item a {
    color: var(--secondary-light) !important;
    transition: all 0.2s ease;
}





.contact-section .contact-form-box {
    padding: 30px;
}

.contact-section .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    transition: var(--transition);
}

.contact-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(223, 1, 0, 0.25);
}

.contact-section textarea.form-control {
    min-height: 100px;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 300px;
    margin-top: 30px;
}


@media (max-width: 991.98px) { 
    .contact-form-box {
        padding: 20px;
    }
}
