* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.navbar {
    background-color: #000000;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #FFD700;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FFD700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFD700;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #cccccc;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    color: #cccccc;
}

.cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

/* About Section */
.about {
    padding: 80px 0;
    background-color: #111111;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #FFD700;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: #222222;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #FFD700;
    transition: transform 0.3s ease;
}

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

.about-card h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: #cccccc;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #000000;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #FFD700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
}

.service-card h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: #111111;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #FFD700;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step {
    background-color: #222222;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
}

.step-number {
    background-color: #FFD700;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: #cccccc;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #000000;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFD700;
}

.contact > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cccccc;
}

.contact-card {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid #FFD700;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.email-link {
    color: #FFD700;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #FFA500;
}

/* Motto Section */
.motto-section {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.motto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
    pointer-events: none;
}

.motto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.motto-content {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 3px solid #000000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.3s ease;
}

.motto-content:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}

.motto-text {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

.motto-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Footer */
footer {
    background-color: #111111;
    padding: 2rem 0;
    border-top: 2px solid #FFD700;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-info p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .about h2,
    .services h2,
    .process h2,
    .contact h2 {
        font-size: 2rem;
    }

    .about-grid,
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .motto-text {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .motto-tagline {
        font-size: 1.2rem;
    }

    .motto-content {
        padding: 2rem 1.5rem;
        transform: none;
    }

    .motto-content:hover {
        transform: translateY(-3px);
    }
}

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

    .hero p {
        font-size: 1rem;
    }

    .about-card,
    .service-card,
    .process-step {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .motto-text {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }

    .motto-tagline {
        font-size: 1rem;
    }

    .motto-content {
        padding: 1.5rem 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section spacing for fixed header */
section {
    scroll-margin-top: 80px;
}