    html {
        scroll-behavior: smooth;
    }

    body {

        background: linear-gradient(to right, #000000, #152331);

        font-family: Arial, Helvetica, sans-serif;         
        margin: 0;
        color: white;
        overflow-x: hidden;
    }

    /* AMBIENT GLOW ANIMATIONS */
    .ambient-glow {
        position: absolute;
        border-radius: 50%;
        filter: blur(120px);
        z-index: -1;
        animation: floatOrb 10s infinite alternate ease-in-out;
        opacity: 0.35;
        pointer-events: none;
    }

    .glow-1 {
        width: 400px;
        height: 400px;
        background: #ff477e;
        top: -10%;
        left: -10%;
    }

    .glow-2 {
        width: 500px;
        height: 500px;
        background: #9d4edd;
        top: 40%;
        right: -15%;
    }

    @keyframes floatOrb {
        0% { transform: translateY(0) scale(1); }
        100% { transform: translateY(-50px) scale(1.1); }
    }

    /* GLOBAL SECTIONS */
    section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }


    /* NAVBAR */

    .navbar {
        width: fit-content;
        margin: 20px auto;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 40px;
        display: flex;
        align-items: center;
        gap: 20px;
        position: sticky;
        top: 10px;
        z-index: 1000;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 10px;
        padding: 0;
        margin: 0;
    }

    .nav-links li {
        padding: 10px 18px;
        border-radius: 20px;
        transition: 0.3s;
    }

    .nav-links a {
        text-decoration: none;
        color: #aaa;
    }

    .nav-links li:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-links li:hover a {
        color: white;
    }

    .nav-links .active {
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }

    .nav-links .active a {
        color: white;
    }


    /* BUTTON */

    .call-btn {
        padding: 10px 20px;
        border-radius: 25px;
        border: none;
        background: #1a1a1a;
        color: white;
        cursor: pointer;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
        transition: 0.3s;
    }

    .call-btn:hover {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    }


    /* HERO */

    /* HERO */

    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        position: relative;
    }

    .hero-content {
        max-width: 700px;
        text-align: center;
        z-index: 2;
    }

    .hero h1 {
        font-size: 70px;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
        color: #fff;
        letter-spacing: -2px;
        animation: fadeInDown 1s ease-out;
    }

    .gradient-text {
        background: linear-gradient(90deg, #ff477e, #ff9a44);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero h2 {
        font-size: 32px;
        color: #ddd;
        font-weight: 500;
        margin-bottom: 25px;
        display: flex;
        justify-content: center;
    }

    .typing-effect {
        display: inline-block;
        overflow: hidden;
        border-right: 3px solid #ff477e;
        white-space: nowrap;
        animation: typing 3.5s steps(40, end) forwards, blink-caret 0.8s step-end infinite;
    }

    @keyframes typing {
        from { width: 0 }
        to { width: 100% }
    }

    @keyframes blink-caret {
        from, to { border-color: transparent }
        50% { border-color: #ff477e; }
    }

    .hero p {
        color: #aaa;
        font-size: 20px;
        line-height: 1.7;
        margin-bottom: 40px;
        animation: fadeInUp 1s ease-out 0.4s backwards;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        animation: fadeInUp 1s ease-out 0.6s backwards;
        margin-bottom: 40px;
    }

    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        color: #aaa;
        animation: bounce 2s infinite;
        z-index: 10;
    }

    .scroll-indicator p {
        margin: 0;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .scroll-indicator a {
        color: white;
        transition: 0.3s;
    }

    .scroll-indicator a:hover {
        color: #ff477e;
    }

    .scroll-indicator svg {
        width: 30px;
        height: 30px;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0) translateX(-50%);
        }
        40% {
            transform: translateY(-15px) translateX(-50%);
        }
        60% {
            transform: translateY(-7px) translateX(-50%);
        }
    }

    .hero-btn {
        padding: 14px 35px;
        border-radius: 30px;
        text-decoration: none;
        font-size: 17px;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .primary-btn {
        background: linear-gradient(45deg, #ff477e, #ff9a44);
        color: #000;
        box-shadow: 0 4px 15px rgba(255, 71, 126, 0.4);
    }

    .primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 71, 126, 0.6);
    }

    .secondary-btn {
        background: transparent;
        color: #fff;
        border: 2px solid #ff477e;
    }

    .secondary-btn:hover {
        background: rgba(255, 71, 126, 0.1);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 71, 126, 0.2);
    }

    @media (max-width: 900px) {
        .hero {
            flex-direction: column;
            text-align: center;
            padding-top: 150px;
        }
        .hero-content {
            text-align: center;
        }
        .hero-buttons {
            justify-content: center;
        }
        .hero-visual {
            display: none;
        }
    }

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

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


    /* REDESIGNED ABOUT */
    .about.redesigned-about {
        padding: 100px 20px;
        background: transparent;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 60px;
        color: #fff;
    }

    .section-title span {
        color: #ff477e;
    }

    .about-bento {
        display: flex;
        gap: 30px;
        width: 100%;
        max-width: 1200px;
        align-items: stretch;
    }

    .bento-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 30px;
        padding: 40px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .bento-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255, 71, 126, 0.3);
        box-shadow: 0 30px 60px rgba(255, 71, 126, 0.15);
        background: rgba(255, 255, 255, 0.05);
    }

    .bento-main {
        flex: 1.2;
        justify-content: center;
    }

    .bento-grid-right {
        flex: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .bento-small {
        padding: 30px;
        justify-content: flex-start;
    }

    .bento-icon {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .bento-main .bento-title {
        font-size: 36px;
        font-weight: 700;
        color: #fff;
        margin-top: 0;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .bento-main p {
        font-size: 18px;
        color: #bbb;
        line-height: 1.8;
        margin-bottom: 35px;
    }

    .bento-buttons {
        display: flex;
        gap: 15px;
    }

    .bento-small h4 {
        font-size: 20px;
        color: #fff;
        margin: 0 0 10px 0;
        font-weight: 600;
    }

    .bento-small p {
        font-size: 15px;
        color: #aaa;
        line-height: 1.6;
        margin: 0;
    }

    @media (max-width: 950px) {
        .about-bento {
            flex-direction: column;
        }
        .bento-grid-right {
            grid-template-columns: 1fr;
        }
        .bento-card[style*="span 2"] {
            grid-column: span 1 !important;
        }
    }

    .read-btn {
        display: inline-block;
        margin-top: 20px;
        padding: 10px 20px;
        background: #1a1a1a;
        border-radius: 20px;
        text-decoration: none;
        color: white;
    }


    /* PROJECTS */

    .projects {
        padding: 80px 20px;
        text-align: center;
    }

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

    .project-card {
        background: #1a1a1a;
        flex: 1 1 280px;
        max-width: 350px;
        border-radius: 16px;
        overflow: hidden;
        text-align: left;
        box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(255,255,255,0.05);
    }

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(255, 71, 126, 0.2);
        border-color: rgba(255, 71, 126, 0.3);
    }

    .project-img-container {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .project-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .project-card:hover .project-img {
        transform: scale(1.05);
    }

    .project-content {
        padding: 25px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .project-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 15px;
    }

    .project-tag {
        background: rgba(255, 255, 255, 0.05);
        color: #aaa;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .project-content h3 {
        margin: 0 0 10px 0;
        font-size: 22px;
        color: #fff;
    }

    .project-content p {
        color: #bbb;
        font-size: 14px;
        line-height: 1.6;
        flex-grow: 1;
        margin-bottom: 25px;
    }

    .project-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
    }

    .live-link-btn {
        background: #ff477e;
        color: #000;
        padding: 8px 18px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 14px;
        font-weight: bold;
        transition: 0.3s;
    }

    .live-link-btn:hover {
        background: #fff;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    }

    .github-link {
        color: #aaa;
        transition: 0.3s;
        display: flex;
        align-items: center;
    }

    .github-link:hover {
        color: #fff;
        transform: scale(1.1);
    }

    /* REDESIGNED BLOG SECTION */
    .blog.redesigned-blog {
        padding: 100px 20px;
        background: transparent;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .blog-header {
        margin-bottom: 50px;
    }

    .blog-header h2 {
        font-size: 36px;
        color: #fff;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .blog-header h2 span {
        color: #ff477e;
    }

    .blog-header p {
        color: #aaa;
        font-size: 16px;
    }

    .blog-container.redesigned {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .premium-blog-card {
        flex: 1 1 350px;
        max-width: 450px;
        background: #1a1a1a;
        border-radius: 20px;
        overflow: hidden;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        text-align: left;
        border: 1px solid rgba(255,255,255,0.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        transition: all 0.4s ease;
        position: relative;
    }

    .premium-blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(255, 71, 126, 0.15);
        border-color: rgba(255, 71, 126, 0.3);
    }

    .blog-card-visual {
        height: 180px;
        width: 100%;
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 20px;
        box-sizing: border-box;
    }

    .blog-card-visual.gradient-1 {
        background: linear-gradient(135deg, #FF6B6B, #556270);
    }

    .blog-card-visual.gradient-2 {
        background: linear-gradient(135deg, #ff477e, #0052D4);
    }

    .platform-badge {
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255,255,255,0.2);
    }

    .blog-card-content {
        padding: 25px 30px 30px 30px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .blog-meta {
        display: flex;
        justify-content: space-between;
        color: #888;
        font-size: 13px;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: bold;
    }

    .premium-blog-card h3 {
        font-size: 22px;
        color: #fff;
        margin-bottom: 12px;
        line-height: 1.4;
        transition: color 0.3s;
    }

    .premium-blog-card:hover h3 {
        color: #ff477e;
    }

    .premium-blog-card p {
        color: #aaa;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
        flex-grow: 1;
    }

    .read-more-link {
        color: #ff477e;
        font-weight: bold;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: auto;
    }

    .read-more-link .arrow {
        transition: transform 0.3s;
    }

    .premium-blog-card:hover .read-more-link .arrow {
        transform: translate(4px, -4px);
    }

    /* REDESIGNED CONTACT */
    .contact.redesigned-contact {
        padding: 100px 20px;
        background: transparent;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .contact-header h2 {
        font-size: 36px;
        margin-bottom: 15px;
        color: #fff;
    }

    .contact-header h2 span {
        color: #ff477e;
    }

    .contact-header p {
        color: #aaa;
        font-size: 16px;
    }

    .contact-container {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        width: 100%;
        justify-content: center;
    }

    /* LEFT: Info */
    .contact-info {
        flex: 1 1 300px;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }

    .contact-info h3 {
        font-size: 24px;
        color: #fff;
        margin-bottom: 10px;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 71, 126, 0.1);
        color: #ff477e;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
    }

    .info-text h4 {
        margin: 0 0 5px 0;
        font-size: 16px;
        color: #ddd;
    }

    .info-text p {
        margin: 0;
        color: #aaa;
        font-size: 14px;
    }

    .social-connect {
        margin-top: 10px;
    }

    .social-connect h4 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 18px;
    }

    .social-icons {
        display: flex;
        gap: 15px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        background: #1a1a1a;
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        transition: 0.3s;
        font-size: 18px;
        border: 1px solid rgba(255,255,255,0.05);
    }

    .social-icons a:hover {
        background: #ff477e;
        color: #000;
        transform: translateY(-3px);
    }

    /* RIGHT: Form */
    .contact-form-container {
        flex: 1 1 350px;
        max-width: 600px;
        background: #1a1a1a;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.05);
    }

    .contact-form-container h3 {
        font-size: 24px;
        color: #fff;
        margin-bottom: 30px;
        text-align: left;
    }

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

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
        text-align: left;
    }

    .form-group label {
        color: #bbb;
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        border-radius: 10px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        color: #fff;
        font-family: inherit;
        font-size: 14px;
        transition: 0.3s;
        box-sizing: border-box;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #ff477e;
        background: rgba(255, 71, 126, 0.05);
    }

    .send-btn {
        background: #ff477e;
        color: #000;
        padding: 15px;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
        margin-top: 10px;
    }

    .send-btn:hover {
        background: #fff;
        box-shadow: 0 0 20px rgba(255,255,255,0.2);
    }

    @media (max-width: 768px) {
        .contact-form-container {
            padding: 25px;
        }
    }


    /* FOOTER */

    footer {
        text-align: center;
        padding: 20px;
        background: #111;
        color: #888;
    }

    .projects-container,
    .blog-container {
        display: flex;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
    }

    .card,
    .blog-card {
        width: 260px;
        max-width: 90%;
    }

    @media (max-width:768px) {

        .navbar {
            flex-direction: column;
            gap: 10px;
            padding: 10px;
        }

        .nav-links {
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero h1 {
            font-size: 32px;
        }

        .projects-container,
        .blog-container {
            flex-direction: column;
            align-items: center;
        }

        .card,
        .blog-card {
            width: 90%;
        }

        .about,
        .contact,
        .projects,
        .blog,
        .education {
            padding: 50px 15px;
        }

    }

    @media (max-width:480px) {

        .hero {
            padding: 80px 15px;
        }

        .hero h1 {
            font-size: 26px;
        }

        .hero h2 {
            font-size: 18px;
        }

        .nav-links li {
            padding: 8px 12px;
            font-size: 14px;
        }

        .call-btn {
            padding: 8px 15px;
            font-size: 14px;
        }

    }

    @media (max-width:768px) {
        .navbar {
            margin: 15px;
            width: auto;
            justify-content: center;
        }
    }

    /* REDESIGNED SKILLS */
    .skills.redesigned-skills {
        padding: 100px 20px;
        background: transparent;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        min-height: auto; 
    }

    .skill-tabs {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }

    .skill-tab {
        display: inline-block;
        background: transparent;
        color: #aaa;
        border: none;
        padding: 10px 20px;
        border-radius: 20px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
    }

    .skill-tab:hover {
        background: #ff477e;
        color: #fff;
    }

    /* CSS Only Tab Active States */
    #filter-all:checked ~ .skill-tabs .tab-all,
    #filter-frontend:checked ~ .skill-tabs .tab-frontend,
    #filter-backend:checked ~ .skill-tabs .tab-backend,
    #filter-tools:checked ~ .skill-tabs .tab-tools {
        background: #ff477e;
        color: #fff;
    }

    /* CSS Only Filtering Logic */
    #filter-all:checked ~ .skills-grid .skill-item { display: flex; }
    
    #filter-frontend:checked ~ .skills-grid .skill-item { display: none; }
    #filter-frontend:checked ~ .skills-grid .skill-item[data-category="frontend"] { display: flex; }
    
    #filter-backend:checked ~ .skills-grid .skill-item { display: none; }
    #filter-backend:checked ~ .skills-grid .skill-item[data-category="backend"] { display: flex; }
    
    #filter-tools:checked ~ .skills-grid .skill-item { display: none; }
    #filter-tools:checked ~ .skills-grid .skill-item[data-category="tools"] { display: flex; }

    .skills-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        width: 100%;
    }

    .skill-item {
        background: #1a1a1a;
        flex: 1 1 220px;
        max-width: 280px;
        padding: 20px 25px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        transition: 0.3s;
        border: 1px solid rgba(255,255,255,0.05);
        box-sizing: border-box;
    }

    .skill-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(255, 71, 126, 0.2);
        border-color: rgba(255, 71, 126, 0.3);
    }

    .skill-info {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        width: 100%;
        justify-content: center;
    }

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

    .skill-name {
        font-size: 18px;
        color: #fff;
        font-weight: bold;
    }

    .progress-bar-container {
        width: 100%;
        background: rgba(255,255,255,0.1);
        height: 6px;
        border-radius: 3px;
        overflow: hidden;
        margin-bottom: 10px;
    }

    .progress-bar {
        height: 100%;
        background: #ff477e;
        border-radius: 3px;
    }

    .skill-percent {
        font-size: 14px;
        color: #aaa;
        align-self: flex-end;
    }
