/* ============================================
   Services Page CSS
   ============================================ */

/* Navbar user icon hover */
.navbar-nav .nav-link i.uil-user {
    color: #343f52;
    transition: color 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover i.uil-user {
    color: #E67E22 !important;
}

/* Methodology section connectors */
.icon-number {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vertical-line {
    width: 2px;
    background: rgba(230, 126, 34, 0.2);
    flex-grow: 1;
    margin-top: 10px;
    margin-bottom: -30px;
}

/* Letter spacing utility */
.ls-xl {
    letter-spacing: 0.1rem;
}

/* Image blob used in "Why LeaderHire" */
.img-blob {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Mobile fix for methodology connector */
@media (max-width: 991px) {
    .vertical-line {
        display: none;
    }
}


/* Glassmorphism Effect */
.bg-blur-white {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Text Gradient - Matching LeaderHire Orange */
.text-gradient.gradient-orange {
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Improvements */
.rounded-xl {
    border-radius: 1.5rem !important;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

/* Subtle Divider */
.border-gray {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* 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 */
}

/* ============================================
   End of Services Page CSS
   ============================================ */