
/* Global Career Page Styles */
.sg-header-career {
    margin-top: 10px;
    width: 100%;
}

/* Benefits Section */
.sg-career-benefits {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f9ff 100%);
    padding: 80px 0;
}

.sg-section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.sg-heading {
    color: #022b41;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sg-subheading {
    color: #5a6d8a;
    max-width: 700px;
    margin: 0 auto;
}

.sg-benefit-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid #3A7BD5;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(14, 46, 80, 0.05);
}

.sg-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(14, 46, 80, 0.1);
}

.sg-benefit-icon {
    background-color: rgba(58, 123, 213, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #3A7BD5;
    font-size: 1.2rem;
}

.sg-benefit-card h3 {
    color: #022b41;
    margin-bottom: 1rem;
}

.sg-benefit-card p {
    color: #5a6d8a;
    margin-bottom: 0;
}

.sg-cta {
    margin-top: 3rem;
}

/* Join Our Team Section */
.sg-career-join {
    background-color: #ffffff;
    padding: 6rem 0;
}

.sg-join-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sg-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #022b41 0%, #3A7BD5 100%);
    border-radius: 4px;
    margin: 1rem auto;
}

.sg-apply-box {
    background-color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(14, 46, 80, 0.08);
    border: 1px solid rgba(14, 46, 80, 0.08);
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.sg-apply-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(14, 46, 80, 0.1);
}

.sg-apply-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.sg-apply-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(58, 123, 213, 0.1) 0%, rgba(58, 123, 213, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: #3A7BD5;
    font-size: 1.5rem;
}

.sg-apply-steps {
    margin: 2rem 0;
}

.sg-step-card {
    background-color: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sg-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 46, 80, 0.05);
    border-left-color: #3A7BD5;
}

.sg-step-number {
    color: #3A7BD5;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sg-step-card h4 {
    color: #022b41;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.sg-step-card p {
    color: #5a6d8a;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.sg-apply-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.sg-apply-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.sg-footer-divider {
    width: 30px;
    height: 1px;
    background-color: #e0e6ed;
    margin: 0 1rem;
}

.sg-apply-footer p {
    color: #8a99b5;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Open Positions Section */
.sg-open-positions {
    background-color: #022b41;
    padding: 4rem 0;
}

.sg-section-title {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.sg-position-tabs .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.sg-position-tabs .nav-link:hover,
.sg-position-tabs .nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.sg-position-content {
    color: white;
}

.sg-position-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.sg-position-meta {
    font-style: italic;
    color: white;
}

/* Application Form Section */
.sg-application-form {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.sg-form-container {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sg-form-content h3 {
    color: #022b41;
    margin-bottom: 1.5rem;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .sg-career-join {
        padding: 4rem 0;
    }
    
    .sg-apply-box {
        padding: 2rem;
    }
    
    .sg-apply-header {
        flex-direction: column;
        text-align: center;
    }
    
    .sg-apply-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .sg-career-benefits,
    .sg-career-join {
        padding: 3rem 0;
    }
    
    .sg-heading {
        font-size: 2rem;
    }
    
    .sg-apply-buttons .btn {
        width: 100%;
    }
    
    .sg-application-form {
        padding: 3rem 0;
    }
    
    .sg-form-container .row > div {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .sg-heading {
        font-size: 1.8rem;
    }
    
    .sg-subheading {
        font-size: 1.1rem;
    }
    
    .sg-benefit-card {
        padding: 1.5rem;
    }
    
    .sg-apply-box {
        padding: 1.5rem;
    }
    
    .sg-step-card {
        margin-bottom: 1rem;
    }
    
    .sg-position-tabs {
        margin-bottom: 1.5rem;
    }
}

        .sg-benefit-card
        {
            border-left: 0px!important;
        }
        .sg-benefit-card:hover
        {
            border-left:4px solid #3A7BD5!important
        }
 
    #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;
    }
    

