/* --- Home Page Specific Styles --- */
.header_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.header_content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 80px;
    text-align: center;
}

.header_content h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

/* --- Services Section Upgrade --- */
.services-scroll {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-scroll::-webkit-scrollbar {
    display: none;
}

.service-card {
    min-width: 320px;
    height: 400px;
    border-radius: 20px !important;
    position: relative;
    overflow: hidden;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    margin: 0 12px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(12, 42, 82, 0.9), transparent);
    z-index: 2;
    transition: var(--transition);
}

.service-card-content {
    position: relative;
    z-index: 3;
}

.service-card-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-btn-circle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
    z-index: 4;
    opacity: 0;
    transform: translateX(20px);
}

.service-card:hover .service-btn-circle {
    opacity: 1;
    transform: translateX(0);
    background: var(--accent);
    border-color: var(--accent);
}
