       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #fff;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
.reviews {
    padding: 100px 0;
    background: #1e1e1e;
    color: #fff;
}

.reviews .section-title {
    color: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
    text-align: right;
}

        /* Header */
        header {
            background: rgba(0, 0, 0, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

      .nav {
        width: 100%;
        position: fixed;
        top: 0;
        background: rgba(0, 0, 0, 0.85);
        z-index: 1000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .inside_nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        padding: 0 20px;
        max-width: 1400px;
        margin: 0 auto;
        }

        .left img {
        height: 35px;
        width: auto;
        }

        .center {
        display: flex;
        gap: 15px;
        }

        .center > div {
        padding: 8px 16px;
        cursor: pointer;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
        transition: background-color 0.2s ease;
        }

        .center > div:hover {
        background-color: rgba(255, 255, 255, 0.15);
        }

        .right {
        display: flex;
        gap: 12px;
        }

        .right img {
        width: 28px;
        height: 28px;
        cursor: pointer;
        opacity: 0.8;
        transition: opacity 0.2s ease;
        }

        .right img:hover {
        opacity: 1;
        }

        
        .mobile-menu-btn {
            padding-left: 24px;
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        }

        .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        }

        .mobile-menu.active {
        display: block;
        }

        .mobile-menu > div {
        padding: 12px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .nav-links a:hover {
            color: #ccc;
        }
 a{
            text-decoration: none;
            color: #fff;
        }
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            background: linear-gradient(45deg, #000 0%, #333 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .cta-button {
            display: inline-block;
            background: transparent;
            color: white;
            padding: 15px 40px;
            border: 2px solid white;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .cta-button:hover {
            background: white;
            color: black;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        /* Projects Section */
        .projects {
            padding: 100px 0;
            background: #f8f8f8;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #333;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #333;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .project-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .project-image {
            height: 250px;
            background: linear-gradient(45deg, #ddd, #bbb);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
        }

        .project-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.1) 10px,
                rgba(255,255,255,0.1) 20px
            );
        }

        .project-content {
            padding: 2rem;
        }

        .project-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .project-content p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .project-link {
            color: #333;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .project-link:hover {
            border-bottom-color: #333;
        }

        /* Contact Section */
       

        /* Footer */
        footer {
            background: #000;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }
        }
        .behance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.behance-grid iframe {
    width: 100%;
    max-width: 400px;
    height: 316px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.behance-grid iframe:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 2px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu > div {
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}
  @media (max-width: 768px) {
        .inside_nav {
            height: 60px;
            padding: 0 15px;
        }

        .center {
            display: none;
        }

        .mobile-menu-btn {
            display: block;
        }

        .right {
            gap: 8px;
        }

        .right img {
            width: 24px;
            height: 24px;
        }


        .scroll-section img {
            height: 100vh !important;
            margin-bottom: 8px;
        }
         .main {
            flex-direction: column;
            height: auto;
            overflow-y: auto;
        }
        .scroll-section {
            width: 100%;
            height: auto;
            overflow: visible;
            margin-bottom: 20px;
        }
        .scroll-container {
            position: relative;
        }
        .center > div {
            font-size: 13px;
            padding: 6px 12px;
        }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
        .inside_nav {
            padding: 0 10px;
        }

        .left img {
            height: 30px;
        }

        .right img {
            width: 22px;
            height: 22px;
        }

        .scroll-section img {
            height: 100vh !important;
        }
        }

       
        @media (max-width: 1024px) {
        html {
            scroll-behavior: smooth;
        }
        }

