/* Doom Style CSS */
/* This CSS file creates a modern, dark-themed website with a focus on gold accents and smooth animations. It includes a fixed header, responsive design, and various sections for home, about, services, and contact pages. */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(218, 165, 32, 0.3);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 2px solid #DAA520;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(45deg, #DAA520, #FFD700, #B8860B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(218, 165, 32, 0.3);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #DAA520;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: linear-gradient(45deg, #DAA520, #FFD700);
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
        }

        /* Main Content */
        main {
            margin-top: 80px;
            min-height: calc(100vh - 160px);
        }

        .page {
            display: none;
            animation: fadeIn 0.5s ease-in;
        }

        .page.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Home Page */
        .hero {
            text-align: center;
            padding: 4rem 0;
            color: white;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #DAA520, #FFD700);
            color: #000;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(218, 165, 32, 0.6);
            background: linear-gradient(45deg, #FFD700, #DAA520);
        }

        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 4rem 0;
        }

        .service-card {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(218, 165, 32, 0.2);
            transition: all 0.3s ease;
            text-align: center;
            border: 2px solid rgba(218, 165, 32, 0.3);
            color: #fff;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(218, 165, 32, 0.4);
            border-color: #DAA520;
        }

        .service-card h3 {
            color: #DAA520;
            margin: 1rem 0;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* About Page */
        .about-content {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            margin: 2rem 0;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(218, 165, 32, 0.2);
            border: 2px solid rgba(218, 165, 32, 0.3);
            color: #fff;
        }

        .about-content h2 {
            color: #DAA520;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            background: linear-gradient(45deg, #DAA520, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .team {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .team-member {
            text-align: center;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid rgba(218, 165, 32, 0.3);
            color: #fff;
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(218, 165, 32, 0.3);
            border-color: #DAA520;
        }

        .team-member h3 {
            color: #DAA520;
        }

        .team-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #DAA520, #FFD700);
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #000;
        }

        /* Contact Page */
        .contact-content {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            margin: 2rem 0;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(218, 165, 32, 0.2);
            border: 2px solid rgba(218, 165, 32, 0.3);
            color: #fff;
        }

        .contact-content h2 {
            color: #DAA520;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            background: linear-gradient(45deg, #DAA520, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #DAA520;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(218, 165, 32, 0.3);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #DAA520;
            box-shadow: 0 0 10px rgba(218, 165, 32, 0.4);
        }

        .submit-btn {
            background: linear-gradient(45deg, #DAA520, #FFD700);
            color: #000;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
            background: linear-gradient(45deg, #FFD700, #DAA520);
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 15px;
            border: 1px solid rgba(218, 165, 32, 0.3);
            color: #fff;
        }

        .contact-item h3 {
            color: #DAA520;
        }

        .contact-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #DAA520;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.9);
            color: #DAA520;
            text-align: center;
            padding: 2rem 0;
            margin-top: 4rem;
            border-top: 2px solid #DAA520;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #DAA520;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            nav {
                flex-wrap: wrap;
                position: relative;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                padding: 1rem;
                border-radius: 0 0 20px 20px;
                border: 2px solid rgba(218, 165, 32, 0.3);
                border-top: none;
                gap: 0.5rem;
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                padding: 1rem;
                text-align: center;
                border-radius: 10px;
                margin: 0.25rem 0;
            }

            .logo {
                font-size: 1.5rem;
            }

            .hero {
                padding: 2rem 0;
                margin-top: 1rem;
            }

            .hero h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
                padding: 0 1rem;
            }

            .services {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 2rem 0;
            }

            .service-card {
                padding: 1.5rem;
                margin: 0 0.5rem;
            }

            .service-icon {
                font-size: 2.5rem;
            }

            .about-content,
            .contact-content {
                padding: 1.5rem;
                margin: 1rem 0;
            }

            .about-content h2,
            .contact-content h2 {
                font-size: 2rem;
                text-align: center;
            }

            .team {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .team-member {
                padding: 1.5rem;
            }

            .contact-form {
                padding: 0;
            }

            .contact-info {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .contact-item {
                padding: 1rem;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            footer {
                padding: 1.5rem 0;
            }

            footer p {
                font-size: 0.9rem;
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .logo {
                font-size: 1.3rem;
            }

            .service-card {
                margin: 0;
                padding: 1rem;
            }

            .about-content,
            .contact-content {
                padding: 1rem;
            }

            .about-content h2,
            .contact-content h2 {
                font-size: 1.8rem;
            }

            .team-member {
                padding: 1rem;
            }

            .team-avatar {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .contact-item {
                padding: 0.8rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.8rem;
            }

            .submit-btn {
                padding: 0.8rem 1.5rem;
            }
        }
    