/* Services Hero Section */
.services-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-top: 80px;
    background: url('/assets/images/cigher.png') center/cover no-repeat;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Inheriting these styles from main styles.css */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Services Section */
.services-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h2 {
    color: #1a1a1a;
    margin: 1rem 0;
    font-size: 1.8rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    margin: 0.8rem 0;
    color: #666;
}

.fa-3x {
    color: #c4a47c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        height: 50vh;
    }
    
    .service-container {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin: 1rem;
    }
}

/* Mobile Menu Styles */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    position: fixed;
    top: 20px;
    right: 20px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.98);
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    right: 0;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        padding: 0;
    }

    .nav-links li {
        margin: 0;
        padding: 0;
    }

    .nav-links li a {
        display: flex;
        align-items: center;
        padding: 15px 25px;
        font-size: 1rem;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li a i {
        margin-right: 12px;
        font-size: 1.1rem;
        color: #c4a47c;
    }

    .mobile-menu {
        display: block;
    }
} 