/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
}

.logo {
    color: white;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: white;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-links li a:hover {
    color: #888;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button {
    padding: 15px 30px;
    font-size: 1.2em;
    background: white;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about {
    padding: 100px 50px;
    background: white;
}

.about h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
    margin-bottom: 50px;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #424242;
    max-width: 800px;
    margin: 0 auto 20px;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat {
    margin-bottom: 30px;
}

.stat i {
    font-size: 2.5em;
    color: black;
    margin-bottom: 15px;
}

.stat h3 {
    color: black;
    font-size: 2.5em;
    margin: 10px 0;
}

/* Services Section */
.services {
    padding: 100px 50px;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

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

.card i {
    font-size: 3em;
    color: black;
    margin-bottom: 20px;
}

.card h3 {
    color: black;
    margin-bottom: 15px;
    font-size: 1.5em;
}

/* Footer Update */
footer {
    background: black;
    color: white;
    padding: 70px 50px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo h2 {
    font-size: 2em;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.contact-info {
    margin: 30px 0;
}

.contact-info p {
    margin: 15px 0;
    font-size: 1.1em;
}

.contact-info i {
    margin-right: 10px;
    color: #888;
}

.copyright {
    color: #888;
    font-size: 0.9em;
    margin-top: 20px;
}

/* Update Responsive Design */
@media (max-width: 768px) {
    footer {
        padding: 50px 20px;
    }

    .contact-info p {
        font-size: 1em;
    }
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    font-size: 1.8em;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-stats {
        flex-wrap: wrap;
    }

    .stat {
        width: 45%;
        margin-bottom: 40px;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    nav {
        padding: 20px;
    }

    .menu-icon {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex !important; /* Important to override other display properties */
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        margin: 0;
        font-size: 1.2em;
        display: block;
        padding: 10px 20px;
        width: 100%;
    }

    /* Hero Section Mobile */
    .hero-content h1 {
        font-size: 2.5em;
        padding: 0 20px;
    }

    .hero-content p {
        font-size: 1.2em;
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
        align-items: center;
    }

    /* About Section Mobile */
    .about {
        padding: 60px 20px;
    }

    .about h2 {
        font-size: 2em;
    }

    .about-text p {
        font-size: 1em;
    }

    .about-stats {
        flex-direction: column;
    }

    .stat {
        width: 100%;
        margin-bottom: 30px;
    }

    /* Services Section Mobile */
    .services {
        padding: 60px 20px;
    }

    .services h2 {
        font-size: 2em;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 30px 20px;
    }

    /* Footer Mobile */
    footer {
        padding: 50px 20px;
    }

    .footer-logo h2 {
        font-size: 1.8em;
    }

    .contact-info p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .stat h3 {
        font-size: 2em;
    }
} 