
body{
    background-color: #f4f4f4;
}
.custom-contact-header {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(to right, #7f1d1d, #1e1b4b);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10%;
    text-align: center;
    margin-top: 60px;
}

/* Custom Contact Title */
.custom-contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    font-family: 'Crimson Pro';
}

/* Custom Breadcrumb */
.custom-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Crimson Pro';
}

/* Contact Icons */
.custom-contact-icons {
    display: flex;
    gap: 10px;
}

/* Icon Container */
.custom-icon-container {
    position: relative;
    /* cursor: pointer; */
    /* transition: transform 0.3s ease-in-out; */
}

.custom-icon-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    filter: blur(8px);
    transform: scale(1.1);
    transition: transform 0.3s;
}

/* .custom-icon-container:hover {
    transform: scale(1.25) translateY(-5px);
    
} */

.custom-icon-glow {
    transform: scale(1.25);

}

.custom-icon {
    position: relative;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-icon i {
    font-size: 24px;
    color: white;
}

/* Responsive Design */
@media (min-width: 992px) {

    /* Large screens */
    .custom-contact-header {
        padding: 20px 15%;
    }

    .custom-contact-title {
        font-size: 3rem;
    }

    .custom-contact-icons {
        gap: 20px;
    }

    .custom-icon {
        padding: 18px;
    }

    .custom-icon i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {

    /* Mobile screens */
    .custom-contact-header {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
    }

    .custom-contact-title {
        font-size: 2rem;
    }

    .custom-contact-icons {
        position: static;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
        
    }

    .custom-icon {
        padding: 14px;
    }

    .custom-icon i {
        font-size: 20px;
    }
}

.contact-form-container {
    background: #f4f4f4;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1.2s ease-out;
    
}

/* Form Layout */
.contact-form {
    padding: 40px;
}

/* Form Title */
.form-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 30px;
    position: relative;
    font-family: 'Crimson Pro';
}

.form-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 4px;
    background: linear-gradient(to right, #7f1d1d, #1e1b4b);
    border-radius: 2px;
}

/* Form Labels */
.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Crimson Pro';
    font-size: 1.5rem;
}

/* Input Fields */
.form-control {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Crimson Pro';
    font-size: 1.2rem;
}

.form-control:focus {
    border-color: #1a237e;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #7f1d1d, #1e1b4b);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    opacity: 0.9;
}

.submit-btn:active {
    transform: translateY(2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 20px;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .submit-btn {
        padding: 12px 25px;
    }
}


.wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch; 
    gap: 20px; 
    background: #f4f4f4;
    padding: 20px;
    flex-wrap: wrap;
}

.box {
    flex: 1; 
    min-height: 350px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; 
    box-sizing: border-box;
}

.left-box {
    background: linear-gradient(135deg, #7f1d1d, #1e1b4b);
    color: white;
}

.right-box {
    background: #f4f4f4;
    color: #333;
    border: 1px solid #ddd;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Crimson Pro';
}

.info {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    font-family: 'Crimson Pro';
    flex-grow: 1;
}

.highlight {
    font-weight: bold;
    font-family: 'Crimson Pro';
    font-size: 1.3rem;
}


@media (max-width: 1024px) {
    .wrapper {
        gap: 15px; 
    }

    .box {
        min-width: 45%; 
    }
}

@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
        align-items: center;
        padding: 10px; 
    }

    .box {
        width: 100%;
        margin-bottom: 20px;
    }

    .title {
        font-size: 2.5rem; 
    }

    .info {
        font-size: 1rem; 
    }
}

@media (max-width: 480px) {
    .wrapper {
        padding: 10px; 
    }

    .title {
        font-size: 2rem; 
    }

    .info {
        font-size: 0.9rem;
    }
}



      /* Fullscreen Overlay */
      .spinner-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Semi-transparent blue background */
        display: none; /* Initially hidden */
        justify-content: center;
        align-items: center;
        z-index: 3050; /* Higher than Bootstrap modals */
    }
    
    /* Custom Animated Spinner */
    .custom-spinner {
        width: 60px;
        height: 60px;
        border: 6px solid rgba(255, 255, 255, 0.3);
        border-top-color: #007bff; /* Bootstrap primary blue */
        border-radius: 50%;
        animation: spin 1s linear infinite, glow 1.5s ease-in-out infinite alternate;
    }
    
    /* Rotation Effect */
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    /* Glowing Effect */
    @keyframes glow {
        0% { box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); } /* Blue glow */
        100% { box-shadow: 0 0 20px rgba(0, 123, 255, 0.8); }
    }