
    #submitButton1 {
    color: white; /* Text color */
    }

    /* Honeypot field - properly hidden */
    .hp-field1 {
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    /* Contact Hero */
    .contact-hero1 {
        height: 300px;
        background: white;
        display: flex;
        align-items: center;
        color: #0E2E50;
        border-bottom: 1px solid #e0e6ed;
    }
    
    /* Contact Cards */
    .contact-card1 {
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
        border-left: 4px solid #3A7BD5;
    }
    
    .contact-card1:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(14, 46, 80, 0.1);
    }
    
    .contact-icon1 {
        width: 60px;
        height: 60px;
        background-color: rgba(58, 123, 213, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    /* Form Styles */
    .contact-form1 {
        position: relative;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 30px rgba(14, 46, 80, 0.1);
        padding: 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .contact-form1::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #0E2E50 0%, #3A7BD5 100%);
        border-radius: 10px 10px 0 0;
    }
    
    .form-container {
        flex: 1;
    }
    
    .form-group {
        position: relative;
        margin-bottom: 1.5rem;
    }
    
    .form-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #5a6d8a;
        transition: all 0.3s ease;
    }
    
    .form-floating>label {
        padding-left: 40px;
        color: #5a6d8a;
        transition: all 0.3s ease;
    }
    
    .form-control {
        padding-left: 40px !important;
        border: 1px solid #e0e6ed;
        border-radius: 8px !important;
        /*height: calc(3.5rem + 2px);*/
        transition: all 0.3s ease;
        background-color: rgba(255,255,255,0.9);
    }
    
    .form-control:focus {
        border-color: #3A7BD5;
        box-shadow: 0 0 0 0.25rem rgba(58, 123, 213, 0.15);
        background-color: white;
    }
    
    .form-control:focus ~ .form-icon {
        color: #3A7BD5;
        transform: translateY(-50%) scale(1.1);
    }
    
    textarea.form-control {
        height: auto;
        min-height: 120px;
        padding-top: 1rem !important;
    }
    
    /* Button Styles */
    .btn-submit1 {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        font-weight: 600;
        letter-spacing: 0.5px;
        background-color: #0E2E50;
        border: none;
        padding: 12px 24px;
        transition: all 0.3s ease;
    }
    
    .btn-submit1:hover {
        background-color: #3A7BD5;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(14, 46, 80, 0.2);
    }
    
    /* Map Styles */
    .map-container1 {
        height: 100%;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 30px rgba(14, 46, 80, 0.1);
    }
    
    .map-container1 iframe {
        width: 100%;
        height: 100%;
        min-height: 450px;
        border: none;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .contact-hero1 {
            height: 250px;
        }
        
        .contact-card1 {
            margin-bottom: 20px;
        }
        
        .map-container1 iframe {
            min-height: 350px;
        }
    }
    .contact-card1 {
    border-left: 0px!important;
    }
    .contact-card1:hover
    {
        border-left:4px solid #3A7BD5!important;
    }

