.contact-section {
    background-color: var(--bg-color);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 50px;
}

.form-box {
    background-color: white;
    border-radius: 30px;
}

.form-heading {
    font-weight: 600;
    margin-bottom: 30px;
    color: #393939;
}

.custom-input {
    font-size: 16px;
    padding: 10px 15px;
    background-color: transparent !important;
    border: none;
    border-bottom: 2px solid #ccc;
    transition: border-color 0.3s ease;
}

.input-group-text {
    background-color: transparent;
    border: none;
}

.input-icon {
    font-size: 1.3rem;
    color: #007bff;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    color: #2d2d2d;
}

.privacy-policy {
    font-size: 14px;
    font-weight: 500;
}

.privacy-policy a {
    text-decoration: none;
    color: var(--primary-color);
    text-decoration: underline;
}

/* Contact Info Styling */
.contact-info-section {
    color: white;
}

.info-heading {
    font-weight: 500;
    margin-bottom: 20px;
}

.info-subheading {
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-item {
    font-size: 1.1rem;
    color: white;
    border-bottom: 1.5px dashed #ffe51c;
    padding-bottom: 10px;
}

.contact-item i {
    margin-right: 12px !important;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #007bff;
}

/* Social Media Icons */
.social-icon {
    font-size: 1.5rem;
    padding-right: 5px !important;
    padding-left: 0px !important;
    color: white;
    border-color: white;
}

.social-icon:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.follow-us-heading {
    font-weight: 500;
    margin-bottom: 15px;
    color: white;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .contact-info-section {
        margin-top: 3rem;
    }
}

/* Location Section Styling */
.location-section {
    background-color: #f8f9fa;
}

.location-heading {
    font-weight: 600;
    margin-bottom: 10px;
}

.location-subheading {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.map-container iframe {
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
