/* Talent Page Specific Styles */

.talent-hero {
    background-color: rgba(230, 126, 34, 0.05); 
}


.bullet-soft-primary i {
    color: #E67E22 !important;
    background-color: rgba(230, 126, 34, 0.1);
    padding: 5px;
    border-radius: 50%;
    font-size: 14px;
}

/* Form Styling */
.card {
    border: none;
    border-radius: 15px;
}

.form-control:focus, .form-select:focus {
    border-color: #E67E22;
    box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.25);
}

.form-floating label {
    color: #60697b;
    font-weight: 500;
}

/* Transition for Interactive Elements */
.btn-primary {
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #d35400 !important; 
}

/* --- Talent Page Enhancements --- */


html {
    scroll-behavior: smooth;
}


.lift {
    transition: all 0.3s ease-in-out;
}

.lift:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 1rem 3rem rgba(230, 126, 34, 0.15) !important;
}


.badge.bg-soft-primary {
    background-color: rgba(230, 126, 34, 0.1) !important;
    color: #E67E22 !important;
}

/* Custom File Input Styling */
.custom-file-input {
    border: 2px dashed rgba(230, 126, 34, 0.3);
    padding: 1.5rem;
    background: #fff;
    text-align: center;
}

/* Bullet icon colors */
.bullet-soft-primary i {
    background-color: rgba(230, 126, 34, 0.1) !important;
    color: #E67E22 !important;
}


.text-primary {
    color: #E67E22 !important;
}


[data-cue] {
    visibility: hidden; 
}


.bg-soft-primary {
    background-color: rgba(230, 126, 34, 0.03) !important;
}

/* Responsive spacing */
@media (max-width: 991.98px) {
    .pt-10 { padding-top: 5rem !important; }
    .pb-12 { padding-bottom: 6rem !important; }
}

/* Card Hover Animations */
.lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.lift:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.15) !important;
}

/* Form Styling */
.form-floating .form-control:focus {
    border-color: #E67E22;
    box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.1);
}

.form-label {
    font-weight: 500;
}

/* Icons and Badges */
.badge.bg-soft-primary {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

.icon-list.bullet-bg i {
    color: #E67E22 !important;
}
/* Styling the User Icon in Nav */
.navbar-nav .nav-link i.uil-user {
    color: #343f52; /* Match your menu color */
    transition: color 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover i.uil-user {
    color: #E67E22 !important; /* LeaderHire Orange */
}

/* Enhancing the Gateway Cards */
.card.border-primary {
    border: 1px solid rgba(230, 126, 34, 0.3) !important;
}

.btn-soft-primary {
    background-color: rgba(230, 126, 34, 0.1);
    color: #E67E22;
}
/* Moves the header down and pushes all subsequent content accordingly */
header.wrapper {
    padding-top: 30px !important; /* Adjust this value (e.g., 40px or 50px) to your liking */
}

/* Small & Compact Search Bar Styles */
.compact-search-bar {
    border: 1px solid #e7eaf3;
    max-width: 800px; /* Limits total width */
    margin: 0 auto;
}

.compact-search-bar .form-control {
    font-size: 0.9rem !important; /* Smaller text */
    height: 38px; /* Reduced height */
}

.compact-search-bar .input-group-text {
    font-size: 0.9rem;
}

.compact-search-bar .btn-primary {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
}

/* Thinner divider */
.compact-search-bar .border-start {
    border-color: #f0f0f0 !important;
}

@media (max-width: 767.98px) {
    .compact-search-bar .border-start {
        border-left: 0 !important;
        border-top: 1px solid #eee !important;
        margin-top: 5px;
        padding-top: 5px;
    }
}

/* --- High-End Executive Animations --- */

/* Text Sliding Up */
.animate-fade-in-up {
    animation: fadeInUp 0.9s cubic-bezier(0.2, 0.6, 0.2, 1) both;
}

/* Image Zooming In */
.animate-zoom-in {
    animation: zoomIn 1.2s cubic-bezier(0.2, 0.6, 0.2, 1) both;
    animation-delay: 0.2s; /* Image appears slightly after the text */
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Force override any hidden states from the old library */
[data-cue], [data-cues] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}