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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* Navbar */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid rgba(209, 0, 0, 0.1);
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
        }

        .logo .white {
            color: #fff;
        }

        .logo .red {
            color: #d10000;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-menu li a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #d10000;
            transition: width 0.3s ease;
        }

        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #d10000;
        }

        .nav-menu li a:hover::after,
        .nav-menu li a.active::after {
            width: 100%;
        }

        .hamburger {
            display: none;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 80px 50px;
            position: relative;
        }

        .hero-container {
            max-width: 1200px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 80px;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
        }

        .hero-content h3 {
            font-size: 20px;
            font-weight: 400;
            margin-bottom: 15px;
            color: #ddd;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-content h3 .name {
            color: #d10000;
            font-weight: 600;
        }

        .hero-content h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .hero-content h1 .typing {
            color: #d10000;
            border-right: 3px solid #d10000;
            animation: blink 0.7s infinite;
        }

        @keyframes blink {
            0%, 50% { border-color: #d10000; }
            51%, 100% { border-color: transparent; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #aaa;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            margin-top: 35px;
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
        }

        .btn {
            padding: 14px 32px;
            border: 2px solid #d10000;
            background: transparent;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #d10000;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .btn:hover::before {
            left: 0;
        }

        .btn:hover {
            color: #fff;
            box-shadow: 0 0 20px rgba(209, 0, 0, 0.5);
        }

        .btn-secondary {
            background: #d10000;
            border-color: #d10000;
        }

        .btn-secondary::before {
            background: transparent;
        }

        .btn-secondary:hover {
            background: transparent;
            color: #d10000;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            animation: fadeInUp 0.8s ease-out 0.8s backwards;
        }

        .social-icons a {
            width: 50px;
            height: 50px;
            background: #1a1a1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            text-decoration: none;
        }

        .social-icons a:hover {
            background: #d10000;
            transform: translateY(-5px);
            border-color: #d10000;
            box-shadow: 0 5px 20px rgba(209, 0, 0, 0.5);
        }

        /* Profile Image */
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: fadeInRight 1s ease-out 0.5s backwards;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .profile-circle {
            position: relative;
            width: 450px;
            height: 450px;
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .profile-circle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(209, 0, 0, 0.3) 0%, transparent 70%);
            filter: blur(30px);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .profile-circle:hover::before {
            opacity: 1;
        }

        .profile-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #d10000;
            box-shadow: 0 0 40px rgba(209, 0, 0, 0.6),
                        inset 0 0 40px rgba(209, 0, 0, 0.2);
            transition: all 0.5s ease;
            background: #1a1a1a;
        }

        .profile-circle:hover .profile-img {
            transform: scale(1.05);
            box-shadow: 0 0 60px rgba(209, 0, 0, 0.8),
                        inset 0 0 60px rgba(209, 0, 0, 0.3);
        }

        .glow-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 110%;
            height: 110%;
            border: 2px solid rgba(209, 0, 0, 0.3);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.05);
                opacity: 0.2;
            }
        }

/* About Section */
.about {
    min-height: 100vh;
    padding: 100px 80px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    max-width: 1200px;
    width: 100%;
}

.about h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
}

/* About Content Styles */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-photo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    border: 5px solid #00CED1;
    box-shadow: 0 0 40px rgba(0, 206, 209, 0.6);
    transition: all 0.3s ease;
}

.about-photo img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(0, 206, 209, 0.8);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #00CED1;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 15px;
    text-align: justify;
}

blockquote {
    font-style: italic;
    font-size: 18px;
    color: #00CED1;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 4px solid #00CED1;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-photo img {
        max-width: 300px;
    }

    .about-text h3 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}



        /* Skills Section */
        .skills {
            min-height: 100vh;
            padding: 100px 80px 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .skills-container {
            max-width: 1200px;
            width: 100%;
        }

        .skills h2 {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 60px;
            color: #fff;
        }

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    width: 300px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 206, 209, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.6);
    border-color: #00CED1;
}

.service-card i {
    font-size: 50px;
    color: #00CED1;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

.service-btn {
    padding: 10px 25px;
    background: #00CED1;
    border: none;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background: #006666;
}

        /* Responsive */
        @media (max-width: 1024px) {
            nav {
                padding: 20px 50px;
            }

            .hero {
                padding: 100px 50px 50px;
            }

            .hero-container {
                gap: 50px;
            }

            .hero-content h1 {
                font-size: 48px;
            }

            .profile-circle {
                width: 380px;
                height: 380px;
            }

            .about {
                padding: 100px 50px 50px;
            }

            .about-square {
                width: 350px;
                height: 350px;
            }

            .skills {
                padding: 100px 50px 50px;
            }

            .skills-flip {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                padding: 0 20px;
            }

            .skill-flip-card {
                width: 100%;
                height: 180px;
            }

            .skill-flip-front i {
                font-size: 45px;
            }

            .skill-flip-front h3 {
                font-size: 18px;
            }

            .skill-flip-back h3 {
                font-size: 18px;
            }

            .skill-flip-back p {
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 20px 30px;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                position: relative;
                gap: 20px;
            }

        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            flex-direction: column;
            gap: 10px;
            font-size: 14px;
            align-items: center;
            padding: 20px 0;
            display: none;
            border-top: 1px solid rgba(0, 206, 209, 0.1);
        }

        nav.active .nav-menu {
            display: flex;
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #00CED1;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

            .hero {
                padding: 180px 30px 50px;
            }

            .hero-container {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }

            .hero-image {
                order: -1;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-content h3 {
                font-size: 16px;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .hero-content p {
                font-size: 15px;
            }

            .cta-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }

            .profile-circle {
                width: 300px;
                height: 300px;
            }

            .social-icons {
                justify-content: center;
            }

            .about {
                padding: 80px 30px 50px;
            }

            .about h2 {
                font-size: 36px;
                margin-bottom: 40px;
            }

            .about-content {
                flex-direction: column;
                gap: 40px;
            }

            .about-square {
                width: 300px;
                height: 300px;
            }

            .about-text {
                text-align: left;
            }

            .about-text p {
                font-size: 15px;
            }

            .skills {
                padding: 80px 30px 50px;
            }

            .skills h2 {
                font-size: 36px;
                margin-bottom: 40px;
            }

            .skills-flip {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }

            .skill-flip-card {
                width: 100%;
                height: 160px;
            }

            .skill-flip-front i {
                font-size: 40px;
            }

            .skill-flip-front h3 {
                font-size: 16px;
            }

            .skill-flip-back h3 {
                font-size: 16px;
            }

            .skill-flip-back p {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 20px;
            }

            .nav-menu {
                gap: 10px;
                font-size: 12px;
            }

            .hero {
                padding: 140px 20px 50px;
            }

            .hero-content h3 {
                font-size: 14px;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .hero-content p {
                font-size: 14px;
            }

            .btn {
                padding: 12px 24px;
                font-size: 14px;
            }

            .profile-circle {
                width: 250px;
                height: 250px;
            }

            .about h2 {
                font-size: 28px;
            }

            .about-square {
                width: 250px;
                height: 250px;
            }

            .social-icons a {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .skills h2 {
                font-size: 28px;
            }

            .skills-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .skill-card {
                padding: 25px 15px;
            }

            .skill-icon {
                font-size: 45px;
            }

            .skill-name {
                font-size: 16px;
            }
        }
        .projects {
    min-height: 100vh;
    padding: 100px 80px 50px;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.projects h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    width: 300px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 206, 209, 0.2), transparent);
    transition: left 0.5s ease;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.6);
    border-color: #00CED1;
}

.project-btn {
    margin-top: 15px;
    padding: 10px 25px;
    background: #00CED1;
    border: none;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.project-btn:hover {
    background: #006666;
}

.project-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.project-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 14px;
    color: #aaa;
}


.certificates {
    min-height: 100vh;
    padding: 100px 80px 50px;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.certificates h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-card {
    position: relative;
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 206, 209, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.certificate-card:hover::before {
    left: 100%;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.5);
}

.certificate-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.certificate-card p {
    padding: 10px 15px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.contact {
    min-height: 100vh;
    padding: 100px 80px 50px;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
}

.contact-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
}

.contact-info {
    flex: 1;
    text-align: left;
    font-size: 16px;
    color: #aaa;
    line-height: 2;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: #1a1a1a;
    border: 2px solid #00CED1;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00CED1;
    box-shadow: 0 0 30px rgba(0, 206, 209, 0.5);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 15px 40px;
    background: #00CED1;
    border: 2px solid #00CED1;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.5);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-submit:hover::before {
    left: 0;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(0, 206, 209, 0.8);
}

@media (max-width: 768px) {
    .projects h2,
    .certificates h2,
    .contact h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .project-img {
        height: 150px;
    }

    .project-card {
        width: 100%;
        max-width: 300px;
    }

    .service-card {
        width: 100%;
        max-width: 300px;
    }

    .certificate-img {
        height: 150px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .certificate-card {
        width: 100%;
        max-width: 300px;
    }

    .carousel-wrapper .certificate-card {
        flex: 0 0 100%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .projects-carousel {
        width: 100%;
    }

    .project-slide {
        flex: 0 0 100%;
    }

    .contact h2 {
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .contact-info {
        font-size: 15px;
        text-align: center;
    }

    .contact-form {
        align-items: center;
    }

    .btn-submit {
        align-self: center;
    }
}
