.contact-section {
    background-color: #000;
    padding: 80px 0;
    color: #fff;
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-image {
    height: 100%;
    overflow: hidden;
}

.contact-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background-color: #f8f9fa;
    transition: all 0.3s;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(18, 22, 60, 0.25);
    border-color: #12163c;
}

.btn-submit {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #12163c;
    border: none;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #12163c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 22, 60, 0.2);
}

.contact-info-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-card {
    background: #ddd;
    border-radius: 10px;
    padding: 25px 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #12163c;
    color: white;
    margin: 0 auto 15px;
}

.contact-info-title {
    font-weight: 600;
    color: #12163c;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-info-text {
    color: #12163c;
}

.contact-info-text a {
    color: #12163c;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-text a:hover {
    color: #12163c;
    text-decoration: underline;
}

.alert-success {
    background-color: #12163c;
    border: none;
    color: white;
    border-radius: 8px;
    padding: 15px 20px;
}
@media (min-width: 1400px) {
    .container-fluid.px-10 {
        padding-left: 10% !important;
        padding-right: 10% !important;
    }
}
