* {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        /* NAVIGATION BAR */
        .bar {
            height: 55px;
            width: 100%;
            background-color: rgba(216, 215, 215, 0.95);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 8%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .title {
            font-weight: 600;
            font-size: 20px;
            letter-spacing: 1px;
        }

        .pointmain {
            display: flex;
            align-items: center;
        }

        .point {
            margin-left: 35px;
            cursor: pointer;
            font-weight: 600;
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 14px;
            position: relative;
        }

        .point::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: red;
            transition: width 0.3s ease;
        }

        .point:hover,
        .point.active {
            color: red;
        }

        .point:hover::after,
        .point.active::after {
            width: 100%;
        }

        /* LAYOUT CONTAINERS */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 90%;
        }

        /* BACKGROUND IFRAME */
        .bg-frame {
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: 100%;
            border: none;
            z-index: -1;
        }

        /* HERO / INTRO SECTION */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 80px;
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h1 {
            font-size: 55px;
            line-height: 1.2;
            color: #111;
        }

        .hero-text .into-text {
            font-size: 28px;
            margin-top: 20px;
            margin-bottom: 30px;
        }

        .hover-word {
            color: #4146b1;
            cursor: pointer;
            font-weight: 800;
            position: relative;
        }

        .hover-box {
            position: absolute;
            top: 45px;
            left: 0;
            padding: 15px 25px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            width: max-content;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }

        .hover-word:hover .hover-box {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .hover-box p {
            margin: 5px 0;
            font-weight: 700;
            color: #4146b1;
            font-size: 16px;
        }

        .about-btn {
            padding: 12px 35px;
            border: none;
            border-radius: 50px;
            background: #0000ff;
            color: white;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 255, 0.3);
        }

        .about-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 255, 0.4);
        }

        .hero-img {
            flex: 0 0 400px;
            display: flex;
            justify-content: center;
        }

        .cartoonimg {
            width: 350px;
            height: 350px;
            object-fit: cover;
            border-radius: 50px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* SOCIAL LINKS */
        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .link-icon {
            height: 45px;
            width: 45px;
            transition: 0.3s;
        }

        .link-icon:hover {
            transform: translateY(-5px);
        }

        /* ABOUT SECTION */
        .about-me {
            padding: 60px 0;
            background: rgba(255, 255, 255, 0.8);
        }

        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 0 0 300px;
        }

        .main-img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .about-text h4 {
            color: #4146b1;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .about-text p {
            line-height: 1.6;
            margin-bottom: 15px;
            color: #444;
            font-size: 15px;
        }

        .resume-btn {
            padding: 10px 25px;
            border-radius: 8px;
            border: none;
            background-color: #4146b1;
            color: white;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .resume-btn:hover {
            background-color: #3136a1;
        }

        /* SKILLS SECTION */
        .skills-section {
            width: 100%;
            background: linear-gradient(135deg, #1a0a3e 0%, #0d0d5e 40%, #1a1a6e 100%);
            padding: 100px 0;
        }

        .skills-heading {
            color: wheat;
            font-weight: 700;
            font-size: 32px;
            margin-bottom: 35px;
            text-align: center;
        }

        .skills-heading span {
            color: yellow;
        }

        .skills-grid {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 20px;
            max-width: 950px;
            margin: 0 auto;
        }

        .skills-box {
            background: rgba(13, 11, 46, 0.8);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            padding: 20px 10px;
            transition: all 0.3s;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.05);
            min-height: 120px;
        }

        .skills-box:hover {
            transform: translateY(-5px);
            background: rgba(20, 18, 60, 1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .skills-box img {
            width: 45px;
            height: 45px;
            margin-bottom: 12px;
        }

        .skills-box span {
            font-size: 14px;
            font-weight: 500;
            text-align: center;
        }

        /* EDUCATION SECTION */
        .education {
            background: #f6f9ff;
            padding: 60px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .edu-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .edu-header h1 {
            font-size: 30px;
            color: #222;
            font-weight: 700;
        }

        .edu-header h1 span {
            color: #712cf9;
        }

        .edu-header p {
            color: #444;
            font-weight: 500;
            margin-top: 5px;
            font-size: 14px;
        }

        .edu-container {
            width: 90%;
            max-width: 900px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .edu-card {
            background: white;
            border-radius: 5px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid #e1e1e1;
            display: flex;
            flex-direction: row;
            overflow: hidden;
            transition: all 0.3s ease;
            width: 100%;
        }

        .edu-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transform: scale(1.005);
        }

        .edu-img-wrapper {
            width: 240px;
            min-width: 240px;
            height: 140px;
            overflow: hidden;
        }

        .edu-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .edu-content {
            padding: 15px 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .edu-content h2 {
            font-size: 22px;
            color: #012970;
            margin-bottom: 3px;
            font-weight: 800;
        }

        .edu-content h3 {
            font-size: 13px;
            color: #333;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .edu-content h4 {
            font-size: 16px;
            color: #2b8c3d;
            font-weight: 800;
        }

        @media (max-width: 850px) {
            .edu-card {
                flex-direction: column;
            }

            .edu-img-wrapper {
                width: 100%;
                min-width: unset;
                height: 180px;
            }
        }

        /* WORK / PROJECTS SECTION */
        .work {
            background-color: #05041a;
            padding: 80px 20px;
            width: 100%;
        }

        .work-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .work-header h1 {
            font-size: 38px;
            color: #fff;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .work-header h1 .highlight-text {
            color: #fce138;
        }

        .work-header h1 .code-icon {
            background: white;
            color: #000;
            padding: 0 10px;
            border-radius: 6px;
            font-size: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 48px;
        }

        .work-container {
            max-width: 950px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            padding-bottom: 30px;
        }

        .work-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            height: 250px;
        }

        .work-card:hover {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        .work-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #1e1e4a;
        }

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

        .work-card:hover .work-img img {
            transform: scale(1.1);
        }

        .slide-panel {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            transform: translateY(calc(100% - 48px));
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .work-card:hover .slide-panel {
            transform: translateY(0);
        }

        .panel-title {
            background-color: #fce138;
            color: #000;
            padding: 0 15px;
            font-weight: 800;
            font-size: 16px;
            text-align: left;
            height: 48px;
            display: flex;
            align-items: center;
        }

        .panel-body {
            background: rgba(250, 250, 250, 0.95);
            backdrop-filter: blur(8px);
            padding: 15px;
            color: #111;
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-height: 140px;
        }

        .panel-body p {
            font-size: 13px;
            font-weight: 600;
            line-height: 1.4;
            margin: 0;
            text-align: left;
        }

        .panel-buttons {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            margin-top: auto;
        }

        .panel-btn {
            background: #000;
            color: #fff;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: background 0.3s;
            flex: 1;
        }

        .panel-btn:hover {
            background: #333;
            color: #fff;
        }

        @media (max-width: 600px) {
            .work-container {
                grid-template-columns: 1fr;
            }

            .work-header h1 {
                font-size: 30px;
            }
        }

        /* OPEN SOURCE CONTRIBUTIONS SECTION */
        .opensource-section {
            background: linear-gradient(135deg, #0a0a1a 0%, #0d0d30 50%, #0a1628 100%);
            padding: 90px 20px 70px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .opensource-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .opensource-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .os-badge {
            display: inline-block;
            background: rgba(99, 102, 241, 0.15);
            border: 1px solid rgba(99, 102, 241, 0.4);
            color: #a5b4fc;
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .opensource-header h1 {
            font-size: 38px;
            color: #fff;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .opensource-header h1 span {
            background: linear-gradient(90deg, #6366f1, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .opensource-header p {
            color: #94a3b8;
            font-size: 16px;
            font-weight: 500;
        }

        /* Stats Row */
        .os-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 55px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .os-stat-item {
            text-align: center;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 22px 35px;
            min-width: 140px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .os-stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
            border-color: rgba(99, 102, 241, 0.4);
        }

        .os-stat-num {
            display: block;
            font-size: 40px;
            font-weight: 800;
            background: linear-gradient(90deg, #6366f1, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }

        .os-stat-label {
            color: #94a3b8;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Cards Grid */
        .os-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
            gap: 24px;
            max-width: 1150px;
            margin: 0 auto 50px;
            position: relative;
            z-index: 1;
        }

        .os-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            overflow: hidden;
            transition: all 0.35s ease;
            backdrop-filter: blur(10px);
        }

        .os-card:hover {
            transform: translateY(-6px);
            border-color: rgba(99, 102, 241, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(99, 102, 241, 0.2);
        }

        .os-card-header {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 18px 20px;
            background: rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .os-org-logo {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .os-org-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .os-org-logo-text {
            font-weight: 800;
            font-size: 16px;
            color: #06b6d4;
            letter-spacing: 1px;
        }

        .os-card-meta {
            flex: 1;
        }

        .os-org-tag {
            display: inline-block;
            padding: 2px 10px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .redhat-tag {
            background: rgba(220, 38, 38, 0.15);
            color: #f87171;
            border: 1px solid rgba(220, 38, 38, 0.3);
        }

        .cncf-tag {
            background: rgba(6, 182, 212, 0.15);
            color: #67e8f9;
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        .lu-tag {
            background: rgba(34, 197, 94, 0.15);
            color: #86efac;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .os-card-meta h3 {
            color: #e2e8f0;
            font-size: 15px;
            font-weight: 700;
            margin: 0;
        }

        .os-date {
            color: #64748b;
            font-size: 12px;
            margin: 2px 0 0;
        }

        .os-pr-count {
            background: linear-gradient(135deg, #6366f1, #06b6d4);
            color: white;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .os-card-body {
            padding: 16px 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .os-contribution {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            padding: 12px 14px;
            border-left: 3px solid #6366f1;
            transition: border-color 0.3s;
        }

        .os-card:hover .os-contribution {
            border-left-color: #06b6d4;
        }

        .os-merge-badge {
            display: inline-block;
            background: rgba(34, 197, 94, 0.12);
            color: #4ade80;
            border: 1px solid rgba(34, 197, 94, 0.25);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .os-contribution p {
            color: #cbd5e1;
            font-size: 13px;
            line-height: 1.55;
            margin: 0 0 8px;
        }

        .os-contribution p strong {
            color: #e2e8f0;
        }

        .os-pr-link {
            color: #818cf8;
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s;
        }

        .os-pr-link:hover {
            color: #06b6d4;
        }

        .os-tech-tags {
            display: flex;
            gap: 8px;
            padding: 12px 20px 16px;
            flex-wrap: wrap;
        }

        .os-tech-tags span {
            background: rgba(99, 102, 241, 0.1);
            color: #a5b4fc;
            border: 1px solid rgba(99, 102, 241, 0.2);
            padding: 3px 10px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
        }

        /* GitHub CTA */
        .os-github-cta {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .os-github-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #6366f1, #4f46e5);
            color: white;
            text-decoration: none;
            padding: 13px 32px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(99, 102, 241, 0.35);
        }

        .os-github-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
            background: linear-gradient(135deg, #818cf8, #6366f1);
        }

        @media (max-width: 700px) {
            .os-cards-container {
                grid-template-columns: 1fr;
            }
            .os-stats {
                gap: 16px;
            }
            .opensource-header h1 {
                font-size: 28px;
            }
        }

        /* ANIMATIONS */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease-out;
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease-out;
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-zoom {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s ease-out;
        }

        .reveal-zoom.active {
            opacity: 1;
            transform: scale(1);
        }

        /* FOOTER SECTION */
        .footer {
            background-color: #030211;
            padding: 60px 20px 20px;
            color: #d1d1d1;
            font-family: 'Poppins', sans-serif;
            position: relative;
            z-index: 10;
        }

        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-col h2 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 24px;
            font-weight: 600;
        }

        .footer-col p {
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .footer-col a.quick-link {
            display: block;
            color: #d1d1d1;
            text-decoration: none;
            margin-bottom: 12px;
            transition: 0.3s;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col a.quick-link:hover {
            color: #fce138;
            transform: translateX(5px);
        }

        .footer-col .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .footer-col .social-links-footer {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .footer-col .social-links-footer .link-icon {
            height: 35px;
            width: 35px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            font-size: 14px;
            color: #999;
        }

        .footer-bottom strong {
            color: #fce138;
        }

        @media (max-width: 800px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }