
        /* =========================
        RESET & BASE STYLING
        ========================= */
        *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
        }

        body {
        background-color: #0f0f0f;
        color: #fff;
        }

        /* =========================
        HEADINGS & TEXT ANIMATION
        ========================= */
        h2{
        display: flex;
        align-items: center;
        gap: 8px;
        text-align: left;
        }

        h2 span {
        position: relative;
        display: inline-block;
        color: red;
        overflow: hidden;
        height: 1.25em;
        }

        h2 span span {
        display: block;
        animation: anim 10s infinite ease;
        }

        @keyframes anim {
        0% { transform: translateY(0%); }
        20% { transform: translateY(-100%); }
        40% { transform: translateY(-200%); }
        60% { tansform: translateY(-300%); }
        80% { transform: translateY(-400%); }
        100% { transform: translateY(0%); }
        }

        /* =========================
        NAVBAR
        ========================= */
        header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 80px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        }

        h1 {
        font-size: 30px;
        letter-spacing: 0px;
        color: #fff;
        }

        nav a {
        color: #ccc;
        text-decoration: none;
        margin: 0 15px;
        position: relative;
        font-weight: 500;
        }

        nav a span {
        position: relative;
        }

        nav a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0%;
        height: 2px;
        background: linear-gradient(90deg, #fff, #777);
        transition: width 0.3s ease;
        }

        nav a:hover::after {
        width: 100%;
        }

        nav a:hover {
        color: #fff;
        }

        /* =========================
        HERO SECTION
        ========================= */
        .hero {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 160px 80px 100px;
        background: linear-gradient(145deg, #0a0a0a, #1b1b1b);
        flex-wrap: wrap;
        }

        .hero img {
        width: 320px;
        height: 320px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 80px;
        border: 3px solid #555;
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
        }

        .hero img:hover {
        transform: rotateY(0deg) rotateX(0deg) scale(1.05);
        border-color: rgb(156, 24, 212);
        box-shadow:
            0 0 30px rgba(146, 150, 255, 0.5),
            0 0 60px rgba(255, 255, 255, 0.2),
            inset 0 0 25px rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.1);
        }

        .hero-text {
        max-width: 600px;
        }

        .hero-text h2 {
        font-size: 40px;
        margin-bottom: 15px;
        color: #fff;
        }

        .hero-text p {
        font-size: 18px;
        line-height: 1.7;
        color: #aaa;
        }

        /* =========================
        ABOUT SECTION
        ========================= */
        section {
        padding: 100px 80px;
        }

        #about {
        background-color: #111;
        }

        #about h2 {
        font-size: 32px;
        margin-bottom: 45px;
        color: #fff;
        }

        #about p {
        font-size: 17px;
        line-height: 1.8;
        color: #bbb;
        max-width: 800px;
        }

        .about-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 90px;
        flex-wrap: wrap;
        }

        /* 3D Glass Frame */
        .about-image {
        flex: 1;
        display: flex;
        justify-content: center;
        position: relative;
        perspective: 1000px;
        }

        .about-image img {
        width: 450px;
        height: 350px;
        object-fit: auto;
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.05);
        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.5),
            inset 0 0 20px rgba(255, 255, 255, 0.05);
        transform: rotateY(-10deg) rotateX(5deg);
        transition: all 0.6s ease;
        backdrop-filter: blur(8px);
        position: relative;
        overflow: hidden;
        }

        /* Glass shimmer effect */
        .about-image img::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent
        );
        transform: skewX(-25deg);
        transition: all 0.6s ease;
        }

        /* Hover Effects */
        .about-image img:hover {
        transform: rotateY(0deg) rotateX(0deg) scale(1.05);
        border-color: rgb(254, 254, 255);
        box-shadow:
            0 0 30px rgba(146, 150, 255, 0.5),
            0 0 60px rgba(255, 255, 255, 0.2),
            inset 0 0 25px rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.1);
        }

        .about-image img:hover::before {
        left: 125%;
        }

        /* =========================
        SKILLS SECTION
        ========================= */
        .skills-section {
        margin-top: 80px;
        text-align: left;
        }

        .skills-section h2 {
        font-size: 32px;
        color: #fff;
        margin-bottom: 30px;
        }

        .skills-category {
        margin-bottom: 50px;
        }

        .skills-category h3 {
        font-size: 24px;
        color: #ff4b4b;
        margin-bottom: 20px;
        }

        .skills-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        }

        .skill {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 20px 25px;
        width: 150px;
        text-align: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(6px);
        }

        .skill img {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
        }

        .skill span {
        display: block;
        font-size: 14px;
        color: #ddd;
        }

        .skill {
        position: relative;
        overflow: hidden;
        }

        .skill::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent
        );
        transform: skewX(-25deg);
        transition: all 0.7s ease;
        }

        .skill:hover::before {
        left: 125%;
        }


        .skill:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.1);
        }

        /* Responsive */
        @media (max-width: 600px) {
        .skills-grid {
            justify-content: center;
        }
        .skill {
            width: 130px;
            padding: 15px;
        }
        .skills-category h3 {
            font-size: 20px;
        }
        }

        /* Fix visibility for light-colored design icons */
        .bright-bg {
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .bright-bg:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
        }

        /* Tweak icon display for better clarity */
        .skill img {
        width: 45px;
        height: 45px;
        object-fit: contain;
        }




        /* =========================
        PROJECTS SECTION
        ========================= */
        #projects {
        background-color: #0f0f0f;
        }

        #projects h2 {
        font-size: 32px;
        margin-bottom: 30px;
        color: #fff;
        }

        .project-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
        .project-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        }

        @media (max-width: 768px) {
        .project-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        }

        @media (max-width: 480px) {
        .project-grid {
            grid-template-columns: 1fr;
        }
        }


        .project-card {
        background: #1a1a1a;
        padding: 25px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        }

        .project-card h3 {
        color: #fff;
        margin-bottom: 10px;
        }

        .project-card p {
        color: #aaa;
        font-size: 15px;
        line-height: 1.6;
        }

        /* Project Hover Overlay */
        .project-card {
        position: relative;
        overflow: hidden;
        }

        .project-card::before {
        content: "NOT AVAILABLE";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        color: #ff4b4b;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 1px;
        opacity: 0;
        transition: opacity 0.4s ease;
        backdrop-filter: blur(3px);
        }

        .project-card:hover::before {
        opacity: 1;
        }

        .project-card {
            padding: 20px;
        }

        .project-card, a{
            text-decoration: none;
        }


        /* =========================
        CONTACT SECTION
        ========================= */
        #contact {
        background-color: #111;
        text-align: center;
        }


        #contact h2 {
        font-size: 32px;
        margin-bottom: 20px;
        color: #fff;
        }

        #contact p {
        color: #aaa;
        font-size: 17px;
        margin-bottom: 60px;
        }

        .contact-links a {
        display: inline-block;
        margin: 0 15px;
        color: #fff;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 12px 28px;
        border-radius: 30px;
        position: relative;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(8px);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
        transition: all 0.4s ease;
        }

        .contact-links a::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent
        );
        transform: skewX(-25deg);
        transition: all 0.6s ease;
        }

        .contact-links a:hover::before {
        left: 125%;
        }

        .contact-links a:hover {
        border-color: rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.3),
            0 0 60px rgba(255, 255, 255, 0.15);
        transform: translateY(-3px);
        }

        /* =========================
        FOOTER
        ========================= */
        footer {
        text-align: center;
        padding: 25px;
        color: #777;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: #0a0a0a;
        }


        /* =========================
        RESPONSIVE DESIGN
        ========================= */
        @media (max-width: 900px) {
        header {
            padding: 15px 40px;
        }

        nav a {
            margin: 0 10px;
            font-size: 15px;
        }

        .hero {
            flex-direction: column;
            text-align: center;
            padding: 140px 40px 80px;
        }

        .hero img {
            margin: 0 0 30px 0;
            width: 260px;
            height: 260px;
        }

        .hero-text h2 {
            font-size: 32px;
        }

        section {
            padding: 80px 40px;
        }

        .about-container {
            flex-direction: column;
            text-align: center;
        }

        .about-image {
            margin-bottom: -50px;
        }
        }

        @media (max-width: 600px) {
        header {
            flex-direction: column;
            padding: 15px 25px;
        }

        h1 {
            margin-bottom: 10px;
            font-size: 22px;
        }

        nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        nav a {
            margin: 8px;
            font-size: 14px;
        }

        .hero {
            padding-top: 140px;
            padding-bottom: 60px;
        }

        .hero img {
            width: 220px;
            height: 220px;
        }

        .hero-text h2 {
            font-size: 26px;
        }

        .hero-text p {
            font-size: 16px;
        }

        section {
            padding: 60px 25px;
        }

        .contact-links a {
            display: block;
            margin: 15px auto;
            width: 80%;
            text-align: center;
        }
        }

        @media (max-width: 400px) {
        header {
            padding: 10px 20px;
        }

        h1 {
            font-size: 20px;
        }

        nav a {
            font-size: 13px;
            margin: 5px;
        }

        .hero img {
            width: 180px;
            height: 180px;
        }

        .hero-text h2 {
            font-size: 22px;
        }

        .hero-text p {
            font-size: 14px;
        }

        #contact p {
            font-size: 15px;
        }

        footer {
            font-size: 13px;
            padding: 20px;
        }
        }

        

        .project1-card {
        background: #1a1a1a;
        padding: 25px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project1-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        }

        .project1-card h3 {
        color: #fff;
        margin-bottom: 10px;
        }

        .project1-card p {
        color: #aaa;
        font-size: 15px;
        line-height: 1.6;
        }

        /* Project Hover Overlay */
        .project1-card {
        position: relative;
        overflow: hidden;
        }

        .project1-card::before {
        content: "avlable";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        color: #ff4b4b;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 1px;
        opacity: 0;
        transition: opacity 0.4s ease;
        backdrop-filter: blur(3px);
        }

        .project1-card:hover::before {
        opacity: 1;
        }

        .project1-card {
            padding: 20px;
        }

        .project1-card, a{
            text-decoration: none;
        }

        iframe{
            width: 100%;
            height:200px;
            border:none;
            border-radius:10px;
}