/* ==========================================================================
   GLOBAL & RESET STYLES
   ========================================================================== */
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Preloader Smooth Core */
#site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.about-hero-section {
    position: relative;
    width: 100%;
    min-height: 60vh;
    background: linear-gradient(to right, rgba(2, 18, 12, 0.95) 25%, rgba(3, 23, 16, 0.85) 50%, rgba(0, 0, 0, 0.4) 100%), 
                url('https://images.unsplash.com/photo-1605146769289-440113cc3d00?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.breadcrumb-nav .breadcrumb-item, 
.breadcrumb-nav .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
}
.breadcrumb-nav .breadcrumb-item.active {
    color: #00b98f;
}
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: ">";
}

.main-heading {
    font-size: 3.8rem;
    line-height: 1.1;
    letter-spacing: -1px;
}
.brand-name {
    color: #00b98f;
    font-weight: 700;
}
.sub-text {
    font-size: 1.15rem;
    font-weight: 300;
    color: #d1d5db;
    line-height: 1.6;
}

.border-top-custom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.border-start-custom {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    border: 1.5px solid #00b98f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b98f;
    font-size: 1.25rem;
    background: rgba(0, 185, 143, 0.1);
    flex-shrink: 0;
}
.text-light-muted {
    color: #a3a3a3;
}

/* ==========================================================================
   AGENTS FILTER SECTION PREMIUM STYLES
   ========================================================================== */
.bg-light-smooth {
    background-color: #fcfdfe; /* हल्का स्मूथ बैकग्राउंड जो वाइट कार्ड को उभारता है */
}

/* Header Text Styles */
.agents-sub-title {
    color: #00b98f; /* इमेज का ग्रीन/टील कलर */
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}
.agents-main-title {
    color: #092644; /* नेवी ब्लू कलर */
    font-size: 2.3rem;
    letter-spacing: -0.5px;
}
.agents-title-line {
    width: 45px;
    height: 3px;
    background-color: #00b98f;
    margin: 12px auto 0;
    border-radius: 2px;
}
.agents-desc-text {
    font-size: 0.98rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Filter Card Box Setup */
.filter-card-wrapper {
    border-color: rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(9, 38, 68, 0.03) !important;
}

/* Form Label Customization */
.text-dark-navy {
    color: #092644;
    font-size: 0.92rem;
    letter-spacing: -0.2px;
}

/* Inputs & Dropdowns Styling */
.filter-input {
    height: 50px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #4a5568;
    padding-left: 15px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Input Focus state */
.filter-input:focus {
    border-color: #00b98f;
    box-shadow: 0 0 0 3px rgba(0, 185, 143, 0.1);
    color: #092644;
}

/* Search Name Input Icon Styling */
.input-icon-group .filter-input {
    padding-right: 45px; /* आइकॉन के लिए स्पेस */
}
.input-field-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #092644;
    font-size: 0.95rem;
    pointer-events: none; /* क्लिक डिस्टर्ब न करे */
}

/* Custom Styled Select Dropdown Arrow */
.select-custom-wrapper .form-select {
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23092644' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 12px;
}

/* Premium Search Button Custom Styling */
.btn-search-agents {
    height: 50px;
    background-color: #00b98f;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 185, 143, 0.15);
}

.btn-search-agents:hover, 
.btn-search-agents:focus {
    background-color: #009652;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 185, 143, 0.25);
}

.btn-search-agents:active {
    transform: translateY(1px);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (FOR ALL SMALL & LARGE DEVICES)
   ========================================================================== */

/* छोटे लैपटॉप और टैबलेट के लिए (Medium Screen) */
@media (max-width: 991.98px) {
    .agents-main-title {
        font-size: 1.9rem;
    }
    .filter-card-wrapper {
        padding: 25px !important;
    }
}

/* मोबाइल डिवाइस के लिए कस्टमाइजेशन (Mobile View) */
@media (max-width: 767.98px) {
    .agents-main-title {
        font-size: 1.6rem;
    }
    .agents-desc-text {
        font-size: 0.9rem;
    }
    
    /* मोबाइल पर फॉर्म इनपुट्स के बीच का स्पेस */
    .filter-card-wrapper {
        padding: 20px !important;
        border-radius: 18px !important;
    }
    
    .filter-input, .btn-search-agents {
        height: 48px; /* मोबाइल पर हल्का सा छोटा और परफेक्ट टच साइज */
    }
}

/* ==========================================================================
   AGENTS GRID PRESERVED CUSTOM STYLES
   ========================================================================== */
.bg-light-smooth {
    background-color: #f8fafc; /* स्मूथ लाइट बैकग्राउंड */
}

/* Card General Styling */
.agent-card {
    border-color: rgba(0, 0, 0, 0.06) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(9, 38, 68, 0.07) !important;
}

/* Colors Variables */
.text-navy {
    color: #092644; /* गहरा नेवी ब्लू */
}
.text-teal {
    color: #00b98f; /* थीम ग्रीन/टील कलर */
}

/* Image Wrapper and Rounded Photo Styling */
.agent-img-wrapper {
    width: 140px;
    height: 140px;
    z-index: 1;
}
.agent-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background-color: #eaeaea;
}

/* Floating Home Icon on Image */
.agent-floating-icon {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 32px;
    height: 32px;
    background-color: #00b98f;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.85rem;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Typography Customizations */
.agent-name {
    font-size: 1.15rem;
    letter-spacing: -0.3px;
}
.agent-designation {
    font-size: 0.88rem;
}

/* Metadata Text (Experience, Specialties, Location) */
.agent-meta-info {
    font-size: 0.88rem;
    border-top: 1px dashed #e2e8f0;
    padding-top: 15px;
}
.meta-icon {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
}
.meta-text {
    font-weight: 500;
    color: #64748b !important;
}

/* Call Button Action Styling */
.btn-call-agent {
    border: 1px solid #00b98f;
    color: #00b98f;
    background-color: transparent;
    border-radius: 8px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}
.btn-call-agent:hover {
    background-color: rgba(0, 185, 143, 0.08);
    color: #009652;
    border-color: #009652;
}

/* View Profile Button Styling */
.btn-view-profile {
    background-color: #00b98f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    transition: all 0.25s ease;
}
.btn-view-profile:hover {
    background-color: #009652;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 185, 143, 0.2);
}

/* ==========================================================================
   RESPONSIVE DESIGN CORRECTIONS
   ========================================================================== */
@media (max-width: 575.98px) {
    .agent-img-wrapper {
        width: 130px;
        height: 130px;
    }
    .agent-card {
        padding: 20px !important;
    }
}


/* ==========================================================================
   JOIN OUR TEAM CTA BANNER PRESERVED STYLES
   ========================================================================== */

/* Main Banner Container Box Layout */
.join-team-banner {
    background: linear-gradient(135deg, #f4f9f6 0%, #f7faf9 100%); /* बेहद हल्का और स्मूथ ग्रीनिश-वाइट ग्रेडिएंट */
    border-color: rgba(0, 185, 143, 0.12) !important; /* थीम के अनुसार हल्का बॉर्डर */
    box-shadow: 0 10px 30px rgba(9, 38, 68, 0.02);
}

/* Typography Customizations */
.text-navy {
    color: #092644; /* गहरा नेवी ब्लू */
}

.cta-title {
    font-size: 1.95rem;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 1.02rem;
    line-height: 1.6;
    color: #5a6A85 !important;
}

/* Vector Image Adjustments */
.cta-image-wrapper {
    max-width: 280px;
    margin: 0 auto;
}
.cta-vector-img {
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.05));
}

/* Premium Apply Now Button Style */
.btn-apply-now {
    background-color: #00b98f; /* थीम ग्रीन/टील कलर */
    color: #ffffff;
    border: none;
    padding: 13px 35px;
    font-size: 1.05rem;
    border-radius: 10px;
    min-width: 170px;
    box-shadow: 0 4px 15px rgba(0, 185, 143, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-apply-now i {
    transition: transform 0.25s ease;
}

/* Button Hover State */
.btn-apply-now:hover {
    background-color: #009652;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 185, 143, 0.35);
    transform: translateY(-2px);
}

/* एरो आइकॉन का थोड़ा बाहर खिसकना (Hover Animation) */
.btn-apply-now:hover i {
    transform: translateX(4px);
}

.btn-apply-now:active {
    transform: translateY(1px);
}

/* Bottom Brand Text Styling */
.brand-note-text {
    font-weight: 500;
    color: #64748b !important;
    white-space: nowrap; /* डेस्कटॉप पर लाइन ब्रेक होने से रोकेगा */
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

/* बड़ी और मीडियम स्क्रीन्स के लिए फाइन-ट्यूनिंग */
@media (min-width: 992px) {
    .cta-image-wrapper {
        margin-top: -30px;
        margin-bottom: -30px; /* बड़ी स्क्रीन पर इलस्ट्रेशन को परफेक्ट अलाइन करने के लिए */
        max-width: 100%;
    }
}

/* टैबलेट डिवाइस के लिए */
@media (max-width: 991.98px) {
    .cta-title {
        font-size: 1.7rem;
    }
    .cta-image-wrapper {
        max-width: 220px;
    }
}

/* छोटे मोबाइल डिवाइस के लिए (Mobile View Setup) */
@media (max-width: 575.98px) {
    .join-team-banner {
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }
    .cta-title {
        font-size: 1.45rem;
    }
    .cta-desc {
        font-size: 0.92rem;
    }
    .btn-apply-now {
        padding: 12px 25px;
        font-size: 0.98rem;
    }
    .brand-note-text {
        white-space: normal; /* मोबाइल पर टेक्स्ट ऑटोमैटिक नीचे एडजस्ट हो जाएगा */
        font-size: 0.82rem;
    }
}