* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family:"Raleway", Arial, Helvetica, sans-serif;
            background: linear-gradient(135deg, #12011C 0%, #1a0128 50%, #9536CC 100%);
            color: white;
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        nav {
            padding: 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-links {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            padding: 15px 30px;
            display: flex;
            gap: 30px;
            backdrop-filter: blur(10px);
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.7;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: white;
            text-decoration: none;
        }

        .logo span {
            color: #ffd966;
        }

        /* Hamburger Menu Button */
/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 30px;
        background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 0;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}

        /* Header */
        .page-header {
            text-align: center;
            padding: 40px 0 60px;
            margin-bottom: 50px;
        }

        .page-header h1 {
            font-size: 1.8rem;
            font-weight: 200;
            letter-spacing: 3px;
        }

        .page-header h2 {
            font-size: 2.5rem;
            font-weight: 600;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 0 100px;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 200;
            letter-spacing: 3px;
        }

        .hero h2 {
            font-size: 1.9rem;
            font-weight: 600;
        }

        .hero-title {
            margin-bottom: 60px;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 50px;
            margin-top: 60px;
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgb(230, 230, 230);
        }

        .hero-text {
            font-weight: 400;
            max-width: 500px;
            text-align: left;
        }

        .hero-text p {
            margin-bottom: 30px;
            line-height: 1.8;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #ffd966 0%, #ffb84d 100%);
            color: #1a0b2e;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 217, 102, 0.3);
        }

        /* Services Section */
        .services {
            padding: 80px 0;
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 80px;
            font-weight: 600;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .service-card {
            text-align: center;
        }

        .service-icon {
            width: 20%;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-card p {
            opacity: 0.85;
            line-height: 1.7;
        }

        /* Portfolio & Contact Section */
        .bottom-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding: 80px 0 100px;
        }

        .portfolio, .contact {
            position: relative;
        }

        .portfolio h2, .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .portfolio-preview {
            display: flex;
            gap: 10px;
            margin: 40px 0;
        }

        .preview-box {
            width: 60px;
            height: 60px;
            border-radius: 10px;
        }

        .preview-box:nth-child(1) {
            background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
        }

        .preview-box:nth-child(2) {
            background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
        }

        .preview-box:nth-child(3) {
            background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
        }

        .section-text {
            opacity: 0.9;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 40px 0;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-text {
                text-align: center;
            }

            .bottom-section {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 640px) {
            .nav-links {
                gap: 15px;
                padding: 12px 20px;
            }

            .nav-links a {
                font-size: 0.9rem;
            }
        }