/* 
* Global Gate Healthcare Recruiters
* Home Page CSS Styles
*/

/* Hero section specific styles */
.hero-section {
    background: linear-gradient(rgba(30, 136, 229, 0.8), rgba(30, 136, 229, 0.9)), 
                url('../img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 140px 0;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
}

/* Services cards animation */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-card .icon-box {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-card:hover .icon-box {
    background-color: var(--primary);
    color: white;
}

/* Testimonial section customizations */
.testimonial-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

/* Program steps animation */
.timeline-step-icon {
    position: relative;
    transition: all 0.3s ease;
}

.timeline-step-icon:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

/* Why Join Us section styles */
.check-list .me-3 {
    color: var(--primary);
}

/* Media queries */
@media (max-width: 992px) {
    .hero-section {
        padding: 100px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-left: 0 !important;
    }
}
