     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #fff;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(15, 12, 41, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        nav ul {
            display: flex;
            justify-content: center;
            gap: 2rem;
            list-style: none;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s, transform 0.3s;
            display: inline-block;
            cursor: pointer;
        }

        nav a:hover {
            color: #00d4ff;
            transform: translateY(-2px);
        }

        /* Sections */
        section {
            min-height: 100vh;
            padding: 6rem 2rem 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .container {
            max-width: 1200px;
            width: 100%;
        }

        /* Hero Section */
        #hero {
            text-align: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        #hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveBackground 20s linear infinite;
        }

        @keyframes moveBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-content.animate .profile-image,
        .hero-content.animate .profile-placeholder {
            animation: fadeInScale 1s ease-out;
        }

        .hero-content.animate h1,
        .hero-content.animate .tagline,
        .hero-content.animate .cta-btn {
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .profile-image {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
            margin-bottom: 2rem;
            animation: fadeInScale 1s ease-out;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .profile-image:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 50px rgba(0, 212, 255, 0.6);
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .profile-placeholder {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(0,212,255,0.3));
            border: 5px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            margin-bottom: 2rem;
            animation: fadeInScale 1s ease-out;
        }

        h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #fff, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tagline {
            font-size: 1.5rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
        }

        .cta-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
        }

        /* About Section */
        #about {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #00d4ff;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            color: rgba(255,255,255,0.9);
        }

        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .skill-tag {
            padding: 0.5rem 1.2rem;
            background: rgba(0, 212, 255, 0.2);
            border: 2px solid #00d4ff;
            border-radius: 25px;
            font-weight: 600;
            transition: transform 0.3s, background 0.3s;
        }

        .skill-tag:hover {
            transform: scale(1.1);
            background: rgba(0, 212, 255, 0.4);
        }

        .about-image {
            position: relative;
            height: 400px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(102, 126, 234, 0.3));
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* Portfolio Section */
        #portfolio {
            background: linear-gradient(135deg, #141e30, #243b55);
        }

        .portfolio-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .portfolio-header h2 {
            font-size: 3rem;
            color: #00d4ff;
            margin-bottom: 1rem;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
        }

        .project-image {
            height: 200px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .project-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .project-card:hover .project-image::after {
            left: 100%;
        }

        .project-info {
            padding: 1.5rem;
        }

        .project-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #00d4ff;
        }

        .project-info p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
     
        .tag {
            padding: 0.3rem 0.8rem;
            background: rgba(0, 212, 255, 0.2);
            border-radius: 15px;
            font-size: 0.85rem;
              text-decoration: none;
             color: white;
        }
        .googlebtn
        {
            width: 150px;
        }
        /* Contact Section */
        #contact {
            background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
        }

        .contact-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-content h2 {
            font-size: 3rem;
            color: #00d4ff;
            margin-bottom: 2rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            position: relative;
        }

        input, textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #00d4ff;
        }

        textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            border: none;
            border-radius: 50px;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .social-links a {
            color: #fff;
            font-size: 2rem;
            transition: color 0.3s, transform 0.3s;
            text-decoration: none;
        }
        .social-links img
        {
            width: 50px;
        }
        .social-links a:hover {
            color: #00d4ff;
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 1.2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .about-image {
                height: 300px;
                font-size: 6rem;
            }

            .about-text h2, .portfolio-header h2, .contact-content h2 {
                font-size: 2rem;
            }

            nav ul {
                gap: 1rem;
            }

            .profile-image {
                width: 150px;
                height: 150px;
            }

            .profile-placeholder {
                width: 150px;
                height: 150px;
                font-size: 4rem;
            }

            nav a {
                font-size: 0.9rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll behavior */
        html {
            scroll-behavior: smooth;
        }
    /* Testimonials Section */
#testimonials {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.review-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    /* background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(102, 126, 234, 0.1)); */
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)); */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-image img {
    width: 100%;
    height: 100%;
     border-radius: 15px;
    object-fit: contain;
    transition: transform 0.3s;
}

.testimonial-card:hover .review-image img {
    transform: scale(1.05);
}

.review-content {
    text-align: center;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.review-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-style: italic;
}

.client-name {
    font-size: 1rem;
    color: #00d4ff;
    font-weight: 600;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 212, 255, 0.3);
    border: 2px solid #00d4ff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(0, 212, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #00d4ff;
    width: 30px;
    border-radius: 10px;
}

.dot:hover {
    background: rgba(0, 212, 255, 0.6);
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-slider {
        padding: 0 50px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .review-image {
        height: 200px;
    }

    .testimonials-header h2 {
        font-size: 2rem;
    }

    .review-text {
        font-size: 1rem;
    }
}
.about-video {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(102, 126, 234, 0.3));
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    /* animation: float 6s ease-in-out infinite; */
}

.about-video video,
.about-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(0, 212, 255, 0.5);
    border-radius: 20px;
    pointer-events: none;
    transition: border-color 0.3s;
}

.about-video:hover::after {
    border-color: rgba(0, 212, 255, 0.8);
}

/* Responsive video */
@media (max-width: 768px) {
    .about-video {
        height: 300px;
    }
}
