
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            text-decoration: none;
            list-style: none;
        }

        :root {
            --bg-color: radial-gradient(circle at 70% 50%, rgba(238, 174, 202, 1) 0%, rgb(145, 167, 192) 100%);
            --text-color: #363636;
            --main-color: brown;
            --shadow-color: rgba(0, 0, 0, 0.2);
            --glow-color: rgba(238, 174, 202, 0.5);
        }

        /* 3D Animation Keyframes */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotateX(0deg); }
            50% { transform: translateY(-20px) rotateX(5deg); }
        }

        @keyframes rotate3d {
            0% { transform: rotateY(0deg) rotateX(0deg); }
            25% { transform: rotateY(90deg) rotateX(10deg); }
            50% { transform: rotateY(180deg) rotateX(0deg); }
            75% { transform: rotateY(270deg) rotateX(-10deg); }
            100% { transform: rotateY(360deg) rotateX(0deg); }
        }

        @keyframes slideIn3D {
            from { 
                transform: translateX(-100px) rotateY(-90deg) translateZ(-100px);
                opacity: 0;
            }
            to { 
                transform: translateX(0) rotateY(0deg) translateZ(0);
                opacity: 1;
            }
        }

        @keyframes pulse3D {
            0% { transform: scale(1) rotateZ(0deg); box-shadow: 0 0 0 0 var(--glow-color); }
            50% { transform: scale(1.05) rotateZ(2deg); box-shadow: 0 0 20px 10px var(--glow-color); }
            100% { transform: scale(1) rotateZ(0deg); box-shadow: 0 0 0 0 var(--glow-color); }
        }

        @keyframes flip3D {
            0% { transform: rotateY(0deg) rotateX(0deg); }
            50% { transform: rotateY(180deg) rotateX(10deg); }
            100% { transform: rotateY(360deg) rotateX(0deg); }
        }

        body {
            min-height: 100vh;
            background: var(--bg-color);
            color: var(--text-color);
            perspective: 1000px;
            overflow-x: hidden;
        }

        /* 3D Scene Container */
        .page {
            /* transform-style: preserve-3d; */
            /* animation: slideIn3D 1s ease-out; */
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            right: 0;
            z-index: 117;
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            background: transparent;
            padding: 28px 0px;
            transition: all .50s ease;
            /* transform-style: preserve-3d; */
            /* animation: slideIn3D 0.8s ease-out; */
        }

        header.scrolled {
            backdrop-filter: blur(4px);
            transform: translateZ(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .logo {
            display: flex;
            align-items: center;
            transform-style: preserve-3d;
        }

        .logo .main-icon {
            width: 0.7rem;
            height: 1.7rem;
            margin-right: 5px;
            background-color: var(--main-color);
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .logo span {
            color: var(--text-color);
            font-size: 1.7rem;
            font-weight: 600;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .navbar {
            display: flex;
            transform-style: preserve-3d;
        }

        .navbar a {
            position: relative;
            color: var(--text-color);
            font-size: 1.1rem;
            font-weight: 600;
            padding: 5px 0;
            margin: 0px 20px;
            transition: all .50s ease;
            display: flex;
            justify-content: center;
            transform-style: preserve-3d;
            transform: translateZ(0);
        }

        .navbar a::before {
            content: "";
            position: absolute;
            top: 0;
            width: 0px;
            height: 2px;
            border-radius: 10px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateZ(5px);
        }

        .navbar a:hover::before {
            width: 100%;
            opacity: 1;
            box-shadow: 0 0 10px var(--glow-color);
        }

        .navbar a:hover {
            color: var(--main-color);
            transform: scale(1.1) translateZ(20px) rotateX(10deg);
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .header .navbar a.active,
        .header .main a.active {
            color: var(--main-color);
        }

        .header .main {
            display: flex;
            align-items: center;
        }

        .header .main a {
            width: 132.4417px;
            color: var(--text-color);
            font-size: 1.1rem;
            font-weight: 600;
            transition: all .50s ease;
        }

        .header .main .user .cm-icon {
            font-size: 22px;
        }

        .user {
            display: flex;
            align-items: center;
        }

        .user i {
            color: var(--main-color);
            font-size: 28px;
            margin-right: 7px;
        }

        .main a:hover {
            color: var(--main-color);
        }

        #menu-icon {
            font-size: 35px;
            color: var(--text-color);
            cursor: pointer;
            z-index: 114;
            display: none;
        }

        .nav-touch-close {
            position: fixed;
            display: none;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            cursor: pointer;
            z-index: 100;
        }

        .nav-touch-close-open {
            display: block;
        }

        .nav-LR-TC {
            background: transparent;
            backdrop-filter: none;
        }

        .footer {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-direction: row;
            column-gap: 10px;
            padding: 10px 20px;
            border-top: 2px solid #ccc;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
        }

        .footer .left {
            font-size: 0.95rem;
            font-weight: 500;
            text-align: center;
        }

        .footer .right {
            display: flex;
            flex-direction: row;
            column-gap: 20px;
        }

        .footer .right .social {
            width: 30px;
            height: 30px;
            border: 2px solid var(--text-color);
            border-radius: 10px;
            font-size: 1.2rem;
            transition: 0.3s;
        }

        .footer .right .social a {
            color: var(--text-color);
            transition: 0.3s;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 10px;
        }

        .footer .right .social:hover {
            color: var(--main-color);
            border: 2px solid var(--main-color);
        }

        .footer .right .social:hover a {
            color: var(--main-color);
        }

        @keyframes letterSlideIn {
            0% {
                transform: translateX(-50px);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @media (max-width: 1200px) {
            header {
                padding: 14px 2%;
                transition: .2s;
                justify-content: space-between;
            }

            .navbar a {
                padding: 5px 0;
                margin: 0px 20px;
            }
        }

        @media (max-width: 1100px) {
            .main .main-items {
                margin-right: 12px;
            }

            .main .menu-icon-container {
                position: relative;
                margin-right: 5px;
                width: 30px;
                height: 30px;
                border-radius: 5px;
                border: 2px solid #ccc;
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(4px);
                cursor: pointer;
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 113;
            }

            .header .main a {
                width: 132.6px;
            }

            #menu-icon {
                display: block;
            }

            .navbar {
                position: absolute;
                top: 100%;
                right: -100%;
                width: auto;
                height: auto;
                border: 2px solid #ccc;
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(4px);
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                border-radius: 10px;
                transition: all .50s ease;
            }

            .navbar a {
                display: block;
                margin: 12px 0;
                padding: 0px 25px;
                transition: all .50s ease;
            }

            .navbar a:before,
            .navbar a:after {
                display: none;
            }

            .navbar a:hover {
                color: var(--text-color);
                transform: translateY(5px);
            }

            .navbar.open {
                right: 2%;
            }
        }

        @media (max-width: 700px) {
            .footer {
                flex-direction: column;
                row-gap: 10px;
            }
        }

        /* About Section Styles */
        .about {
            width: 100%;
            padding-top: 150px;
            min-width: 250px;
            display: flex;
            justify-content: center;
            align-items: center;
            transform-style: preserve-3d;
            animation: slideIn3D 1.2s ease-out;
        }

        .about-content {
            max-width: 1000px;
            padding: 0px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: row;
            /* transform-style: preserve-3d; */
        }

        .column.left {
            text-align: left;
            max-width: 70%;
            /* transform: translateZ(20px); */
            /* animation: slideIn3D 1.5s ease-out 0.3s both; */
        }

        .column.right {
            order: 1;
            width: fit-content;
            display: flex;
            align-items: center;
            justify-content: left;
            /* transform-style: preserve-3d; */
            /* animation: float 4s ease-in-out infinite; */
        }

        .column.right img {
            max-width: 250px;
            margin-left: 50px;
            border-radius: 20px 100px 20px 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            /* transform: rotateY(15deg) rotateX(10deg) translateZ(30px); */
            /* transition: all 0.5s ease; */
            /* animation: pulse3D 3s ease-in-out infinite; */
        }

        .column.right img:hover {
            transform: rotateY(0deg) rotateX(0deg) translateZ(50px) scale(1.1);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .about .text {
            font-size: 2rem;
            font-weight: bold;
            color: var(--text-color);
            transform: translateZ(10px);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: slideIn3D 1.8s ease-out 0.6s both;
        }

        .about .iAm {
            color: #4e54c8;
            animation: pulse3D 2s ease-in-out infinite;
            display: inline-block;
            transform: translateZ(15px);
        }

        .about p {
            font-size: 1.2rem;
            font-weight: 500;
            margin-top: 20px;
            color: var(--text-color);
            transform: translateZ(5px);
            animation: slideIn3D 2s ease-out 0.9s both;
        }

        .about .buttons {
            margin-top: 20px;
            display: flex;
            column-gap: 20px;
            transform-style: preserve-3d;
            animation: slideIn3D 2.2s ease-out 1.2s both;
        }

        .about a {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--main-color);
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            transform: translateZ(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .about a:hover {
            background-color: #4e54c8;
            transform: translateZ(20px) rotateX(10deg);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .about .cm-button {
            color: var(--text-color);
            background-color: transparent;
            outline: 2px solid var(--main-color);
            transform: translateZ(8px);
        }

        .about .cm-button:hover {
            color: white;
            outline: none;
            transform: translateZ(18px) rotateX(10deg);
            background-color: var(--main-color);
        }

        .about .column.left .animate-letter-slide {
            color: #ffffff !important;
            font-size: 1.1rem;
            line-height: 1.6;
            text-shadow: 0 1px 3px rgba(148, 0, 211, 0.5);
            margin: 20px 0;
            display: inline-block;
        }

        .about .column.left .animate-letter-slide span {
            display: inline-block;
            animation: letterSlideIn 1s ease-out forwards;
            animation-delay: calc(var(--char-index) * 0.03s);
        }

        @media (max-width: 850px) {
            .about-content {
                display: block;
                padding: 0px;
                max-width: 100%;
                height: 100%;
            }

            .about-content .column.left {
                max-width: 100%;
                margin-left: 20px;
                margin-right: 20px;
                padding: 0px;
                text-align: center;
            }

            .about-content .column.left .text {
                margin-top: 20px;
                font-size: 1.8rem;
            }

            .about-content .column.left p {
                margin: 0px;
                font-size: 1.1rem;
                margin-top: 10px;
            }

            .about .about-content .buttons {
                display: block;
                margin: 0px;
            }

            .about-content .column.left a {
                margin: 0px;
                margin-top: 20px;
                margin-right: 10px;
                margin-left: 10px;
            }

            .about-content .column.right {
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .about-content .column.right img {
                margin: 0px;
            }
        }

        @media (max-width: 768px) {
            .about .column.left .animate-letter-slide {
                font-size: 1rem;
                margin: 15px 0;
            }
        }

        @media (max-width: 480px) {
            .about .column.left .animate-letter-slide {
                font-size: 0.9rem;
                margin: 10px 0;
            }
        }

        /* Education Section Styles */
        .education-main {
            width: 100%;
            padding-top: 150px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .education-main .education-section {
            width: fit-content;
            min-width: 770px;
            max-width: 800px;
            display: flex;
            flex-direction: column;
            align-items: center;
            row-gap: 50px;
            box-sizing: content-box;
            padding-left: 20px;
            padding-right: 20px;
        }

        .education-main .education-section .study {
            display: flex;
            flex-direction: row;
        }

        .education-main .education-section .study .image {
            display: flex;
            justify-content: center;
        }

        .education-main .education-section .study .image img {
            width: 300px;
            aspect-ratio: 300/180;
            border-radius: 10px;
            border: 2px solid var(--main-color);
        }

        .education-main .education-section .study .line {
            min-width: 2.5px;
            height: 180px;
            margin-top: auto;
            margin-bottom: auto;
            border-radius: 10px;
            margin-left: 20px;
            margin-right: 20px;
            background-color: var(--main-color);
        }

        .education-main .education-section .study.second .image {
            order: 2;
        }

        .education-main .education-section .study.second .line {
            order: 1;
        }

        .education-main .education-section .study.second .texts {
            order: 0;
        }

        .education-main .education-section .study .texts .header {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--main-color);
        }

        .education-main .education-section .study .texts .name {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-color);
            margin-top: 5px;
        }

        .education-main .education-section .study .texts .year {
            font-weight: 600;
            color: var(--text-color);
        }

        .education-main .education-section .study .texts .text {
            font-weight: 500;
            color: var(--text-color);
            margin-top: 10px;
        }

        @media (max-width: 850px) {
            .education-main .education-section .study {
                flex-direction: column;
                border: 2px solid #ccc;
                border-radius: 20px;
                padding: 10px;
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(4px);
            }

            .education-main .education-section {
                min-width: 250px;
                width: 85%;
            }

            .education-main .education-section .study .image img {
                width: 85%;
                min-width: 250px;
            }

            .education-main .education-section .study .line {
                width: 100%;
                height: 4px;
                margin: 0px;
                margin-top: 20px;
                margin-bottom: 5px;
            }

            .education-main .education-section .study .texts {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

            .education-main .education-section .study.second .image {
                order: 2;
            }

            .education-main .education-section .study.second .line {
                order: 3;
            }

            .education-main .education-section .study.second .texts {
                order: 4;
            }

            .education-main .education-section .study .texts .header {
                text-align: center;
            }

            .education-main .education-section .study .texts .name {
                text-align: center;
            }

            .education-main .education-section .study .texts .year {
                text-align: center;
            }

            .education-main .education-section .study .texts .text {
                text-align: center;
            }
        }

        /* Skills Section 3D Enhancements */
        .skills-main {
            width: 100%;
            padding-top: 150px;
            display: flex;
            justify-content: center;
            align-items: center;
            transform-style: preserve-3d;
            animation: slideIn3D 1.5s ease-out;
        }

        .skills-main .skills-section {
            width: 1000px;
            transform-style: preserve-3d;
        }

        .skills-main .skills-section .header {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
            transform: translateZ(20px);
            animation: slideIn3D 1.8s ease-out 0.3s both;
        }

        .skills-main .skills-section .header .text {
            font-size: 1.5rem;
            font-weight: 600;
            transform: translateZ(10px);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .skills-main .skills-section .header .border-line {
            width: 140px;
            height: 4px;
            border-radius: 100px;
            background-color: var(--main-color);
            transform: translateZ(5px);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
            animation: pulse3D 2s ease-in-out infinite;
        }

        .skills-main .skills-section .skills {
            display: flex;
            flex-direction: row;
            justify-content: space-around;
            flex-wrap: wrap;
            row-gap: 50px;
            transform-style: preserve-3d;
        }

        .skills-main .skills-section .skills .skills-group-row {
            width: 400px;
            border: 2px solid #ccc;
            border-radius: 10px;
            margin-left: 20px;
            margin-right: 20px;
            padding: 20px 10px 10px 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            transform: rotateX(15deg) rotateY(10deg) translateZ(0);
            transition: all 0.5s ease;
            animation: slideIn3D 2s ease-out 0.6s both;
            transform-style: preserve-3d;
        }

        .skills-main .skills-section .skills .skills-group-row:hover {
            transform: rotateX(0deg) rotateY(0deg) translateZ(30px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .skills-main .skills-section .skills .skills-group-row .skills-group-header {
            width: fit-content;
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--text-color);
            margin-left: auto;
            margin-right: auto;
            transform: translateZ(15px);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .skills-main .skills-section .skills-group-row .border-line {
            width: 100%;
            height: 4px;
            border-radius: 100px;
            background-color: var(--main-color);
            margin-top: 5px;
            margin-bottom: 25px;
            transform: translateZ(10px);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            animation: pulse3D 3s ease-in-out infinite;
        }

        .skills-main .skills-section .skills-group-row .skill {
            margin-bottom: 25px;
            display: flex;
            flex-direction: row;
            transform: translateZ(5px);
            transition: all 0.3s ease;
        }

        .skills-main .skills-section .skills-group-row .skill:hover {
            transform: translateZ(15px);
        }

        .skills-main .skills-section .skills-group-row .skill-block {
            width: 100%;
            padding-left: 10px;
            transform: translateZ(2px);
        }

        .skills-main .skills-section .skills-group-row .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            transform: translateZ(8px);
        }

        .skills-main .skills-section .skills-group-row .icon-img {
            width: 55px;
            aspect-ratio: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            color: var(--text-color);
            border: 3px solid var(--main-color);
            border-radius: 25%;
            transition: all 0.3s ease;
            animation: rotate3d 10s linear infinite;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .skills-main .skills-section .skills-group-row .skill:hover .icon-img {
            transform: translateZ(10px) scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .skills-main .skills-section .skills-group-row .progress-block {
            width: fit-content;
            height: fit-content;
            padding: 0px 5px;
            border-radius: 50px;
            margin-top: 5px;
            margin-left: 50%;
            transform: translate(-20px, 0px) translateZ(5px);
            background-color: var(--main-color);
            color: white;
            font-size: 0.8em;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        .skills-main .skills-section .skills-group-row .skill:hover .progress-block {
            transform: translate(-20px, 0px) translateZ(10px);
        }

        .skills-main .skills-section .skills-group-row .progress-bar {
            width: 100%;
            height: 7px;
            margin-top: 5px;
            background: gray;
            border-radius: 20px;
        }

        .skills-main .skills-section .skills-group-row .progress-per {
            width: 50%;
            height: 7px;
            border-radius: 20px;
            background-color: var(--main-color);
        }

        .skills-main .skills-section .skills-group-row .block-header {
            color: var(--text-color);
            font-weight: 600;
        }

        .skills-main .skills-section .skills-group-row .block-section {
            font-size: 0.85rem;
            font-weight: 600;
        }

        .skills-main .skills-section .skills-group-row .html .progress-block {
            margin-left: 90%;
        }
        .skills-main .skills-section .skills-group-row .html .progress-per {
            width: 90%;
        }

        .skills-main .skills-section .skills-group-row .js .progress-block {
            margin-left: 85%;
        }
        .skills-main .skills-section .skills-group-row .js .progress-per {
            width: 85%;
        }

        .skills-main .skills-section .skills-group-row .python .progress-block {
            margin-left: 70%;
        }
        .skills-main .skills-section .skills-group-row .python .progress-per {
            width: 70%;
        }

        .skills-main .skills-section .skills-group-row .cpp .progress-block {
            margin-left: 60%;
        }
        .skills-main .skills-section .skills-group-row .cpp .progress-per {
            width: 60%;
        }

        .skills-main .skills-section .skills-group-row .bootstrap .progress-block {
            margin-left: 70%;
        }
        .skills-main .skills-section .skills-group-row .bootstrap .progress-per {
            width: 70%;
        }

        .skills-main .skills-section .skills-group-row .angular .progress-block {
            margin-left: 65%;
        }
        .skills-main .skills-section .skills-group-row .angular .progress-per {
            width: 65%;
        }

        .skills-main .skills-section .skills-group-row .aiml .progress-block {
            margin-left: 78%;
        }
        .skills-main .skills-section .skills-group-row .aiml .progress-per {
            width: 78%;
        }

        .skills-main .skills-section .skills-group-row .aids .progress-block {
            margin-left: 82%;
        }
        .skills-main .skills-section .skills-group-row .aids .progress-per {
            width: 82%;
        }

        .skills-main .skills-section .skills-group-row .uiux .progress-block {
            margin-left: 92%;
        }
        .skills-main .skills-section .skills-group-row .uiux .progress-per {
            width: 92%;
        }

        .skills-main .skills-section .skills-group-row .webdev .progress-block {
            margin-left: 90%;
        }
        .skills-main .skills-section .skills-group-row .webdev .progress-per {
            width: 90%;
        }

        .skills-main .skills-section .skills-group-row .freelancing .progress-block {
            margin-left: 80%;
        }
        .skills-main .skills-section .skills-group-row .freelancing .progress-per {
            width: 80%;
        }

        .skills-main .skills-section .skills-group-row .softwaredev .progress-block {
            margin-left: 92%;
        }
        .skills-main .skills-section .skills-group-row .softwaredev .progress-per {
            width: 92%;
        }

        .skills-main .skills-section .skills-group-row .soft-skills {
            display: flex;
            justify-content: center;
            flex-direction: row;
        }

        @media (max-width: 700px) {
            .skills-main .skills-section .skills .skills-group-row {
                width: 85%;
                min-width: 250px;
            }
        }

        /* Tools Section Styles */
        .tools-main {
            width: 100%;
            padding: 150px 20px 50px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .tools-main .tools-section {
            max-width: 1200px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .tool-card {
            background: #f9f9f9;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            min-height: 200px;
        }

        .tool-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .tool-icon {
            width: 48px;
            height: 48px;
            font-size: 40px;
            margin-bottom: 15px;
            transition: transform 0.3s ease, color 0.3s ease;
            display: inline-block;
            line-height: 48px;
        }

        .tool-icon svg {
            width: 48px !important;
            height: 48px !important;
            fill: currentColor;
        }

        .tool-card:nth-child(1):hover .tool-icon {
            transform: scale(1.2) rotate(5deg);
            color: #007ACC;
        }

        .tool-card:nth-child(2):hover .tool-icon {
            transform: scale(1.2) rotate(-5deg);
            color: #F24E1E;
        }

        .tool-card:nth-child(3):hover .tool-icon {
            transform: scale(1.2);
            color: #F05032;
        }

        .tool-card:nth-child(4):hover .tool-icon {
            transform: scale(1.2) rotate(10deg);
            color: #181717;
        }

        .tool-card:nth-child(5):hover .tool-icon {
            transform: scale(1.2);
            color: #000000;
        }

        .tool-card:nth-child(6):hover .tool-icon {
            transform: scale(1.2) rotate(-5deg);
            color: #000000;
        }

        .tool-card:nth-child(7):hover .tool-icon {
            transform: scale(1.2);
            color: #00C4B4;
        }

        .tool-card:nth-child(8):hover .tool-icon {
            transform: scale(1.2) rotate(5deg);
            color: #4285F4;
        }

        .tool-card:nth-child(9):hover .tool-icon {
            transform: scale(1.2);
            color: #00C7B7;
        }

        .tool-card:nth-child(10):hover .tool-icon {
            transform: scale(1.2) rotate(5deg);
            color: #217346;
        }

        .tool-card:nth-child(11):hover .tool-icon {
            transform: scale(1.2) rotate(-5deg);
            color: #2B579A;
        }

        .tool-card:nth-child(12):hover .tool-icon {
            transform: scale(1.2) rotate(5deg);
            color: #FF6347;
        }

        .tool-card h3 {
            margin: 10px 0;
            font-size: 1.5rem;
            color: #333;
        }

        .tool-card p {
            margin-top: 10px;
            font-size: 1rem;
            color: #666;
            flex-grow: 1;
        }

        /* Career Section Styles */
        .career-main {
            width: 100%;
            padding-top: 150px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .career-main .career-section {
            max-width: 1000px;
            padding: 0px 20px;
        }

        .career-main .career-section .career-header {
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .career-main .career-section .career-header .text {
            font-size: 1.4rem;
            font-weight: 600;
            padding: 5px 10px;
            margin-left: 10px;
            margin-right: 10px;
            border: 2px solid var(--main-color);
            border-bottom: 0px;
            border-radius: 10px 10px 0px 0px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
        }

        .career-main .career-section .header-line {
            width: 100%;
            height: 4px;
            background-color: var(--main-color);
            border-radius: 20px;
        }

        .career-main .career-section .professional-summary .texts {
            margin-top: 20px;
            font-size: 1.05rem;
            font-weight: 500;
            text-align: justify;
        }

        .career-main .career-section .career-goals {
            margin-top: 50px;
        }

        .career-main .career-section .career-goals .goals {
            margin-top: 25px;
            display: flex;
            justify-content: space-evenly;
            flex-direction: row;
            flex-wrap: wrap;
            row-gap: 40px;
            column-gap: 20px;
        }

        .career-main .career-section .career-goals .goals-row {
            width: 100%;
            max-width: 380px;
            min-width: 250px;
            box-sizing: content-box;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .career-main .career-section .career-goals .goals-row .goals-header {
            width: fit-content;
            display: flex;
            align-items: center;
            flex-direction: column;
        }

        .career-main .career-section .career-goals .goals-row .header-line {
            width: 100%;
            height: 4px;
            border-radius: 20px;
            background-color: var(--main-color);
        }

        .career-main .career-section .career-goals .goals-row .goals-header .text {
            font-size: 1.2rem;
            font-weight: 600;
            margin-left: 10px;
            margin-right: 10px;
        }

        .career-main .career-section .career-goals .goals-row .texts {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            row-gap: 10px;
        }

        .career-main .career-section .career-goals .goals-row .text-row {
            min-height: 62.8px;
            font-size: 1.05rem;
            font-weight: 500;
            padding-top: 5px;
            padding-bottom: 5px;
            padding-left: 10px;
            padding-right: 10px;
            border: 2px solid #ccc;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
        }

        .career-main .career-section .career-goals .goals-row .text-row .tr-icon {
            margin-right: 10px;
            min-width: 16.8px;
            min-height: 16.8px;
            border-radius: 50%;
            background-color: var(--text-color);
        }

        /* Certificates Section Styles */
        .certifications-main {
            width: 100%;
            padding: 150px 20px 50px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .certifications-main .certifications-section {
            max-width: 1200px;
            text-align: center;
        }

        .certifications-main .certifications-section .certifications-header {
            margin-bottom: 2rem;
        }

        .certifications-main .certifications-section .certifications-header .header-text {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
        }

        .certifications-main .certifications-section .certifications-header .header-line {
            width: 100px;
            height: 4px;
            background: #007bff;
            margin: 0.5rem auto;
        }

        .certifications-main .certifications-section .internship-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .certifications-main .certifications-section .certifications-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .certifications-main .certifications-section .certificate {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .certifications-main .certifications-section .certificate:hover {
            transform: scale(1.05);
        }

        .certifications-main .certifications-section .certificate img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .certifications-main .certifications-section .certificate .certificate-title {
            padding: 1rem;
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
            text-align: center;
        }

        .certifications-main .certifications-section .certificate .certificate-summary {
            padding: 0 1rem 1rem;
            font-size: 1rem;
            color: #555;
            text-align: left;
        }

        .certifications-main .certifications-section .certificate .full-certificate {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 1rem;
            overflow-y: auto;
            z-index: 10;
        }

        .certifications-main .certifications-section .certificate:hover .full-certificate {
            display: block;
        }

        @media (max-width: 768px) {
            .certifications-main .certifications-section .certifications-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        /* Projects Section Styles */
        .projects-main {
            width: 100%;
            padding: 150px 20px 50px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .projects-main .container {
            max-width: 1200px;
        }

        .projects-main .container .text-center .display-4 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
        }

        .projects-main .container .text-center hr {
            width: 100px;
            height: 4px;
            background: var(--main-color);
            margin: 0.5rem auto;
        }

        .projects-main .container .row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        /* Projects Section 3D Enhancements */
        .projects-main {
            transform-style: preserve-3d;
            animation: slideIn3D 1.5s ease-out;
        }

        .projects-main .container .row {
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .projects-main .container .row .col {
            transform-style: preserve-3d;
            animation: slideIn3D 1.8s ease-out;
        }

        .projects-main .container .row .col .project-card {
            background-color: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.5s ease;
            transform-style: preserve-3d;
            transform: rotateX(10deg) rotateY(5deg) translateZ(0);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            animation: float 6s ease-in-out infinite;
        }

        .projects-main .container .row .col .project-card:hover {
            transform: rotateX(0deg) rotateY(0deg) translateZ(50px) scale(1.1);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            animation: pulse3D 2s ease-in-out infinite;
        }

        .projects-main .container .row .col .project-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: all 0.5s ease;
            transform: translateZ(10px);
        }

        .projects-main .container .row .col .project-card:hover img {
            transform: translateZ(20px) scale(1.05);
        }

        .projects-main .container .row .col .project-card .card-body {
            padding: 1.5rem;
            transform: translateZ(15px);
            transition: all 0.5s ease;
        }

        .projects-main .container .row .col .project-card:hover .card-body {
            transform: translateZ(25px);
        }

        .projects-main .container .row .col .project-card .card-body .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
            transform: translateZ(5px);
            transition: all 0.3s ease;
        }

        .projects-main .container .row .col .project-card:hover .card-body .card-title {
            transform: translateZ(10px);
            color: var(--main-color);
        }

        .projects-main .container .row .col .project-card .card-body .card-text {
            font-size: 1rem;
            color: #666;
            transform: translateZ(2px);
            transition: all 0.3s ease;
        }

        .projects-main .container .row .col .project-card:hover .card-body .card-text {
            transform: translateZ(8px);
        }

        /* Contact Section Styles */
        .contact-main {
            width: 100%;
            padding: 150px 20px 50px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .contact-full {
            max-width: 1000px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .contact-section {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            border: 2px solid #ccc;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
        }

        .contact-section .cs-top {
            display: none;
        }

        .contact-section .cs-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-section .cs-item .icon {
            font-size: 24px;
            color: var(--main-color);
            margin-right: 15px;
        }

        .contact-section .cs-item .text .placeHolder {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-color);
        }

        .contact-section .cs-item .text .info {
            font-size: 1rem;
            color: var(--text-color);
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            border: 2px solid #ccc;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
        }

        .contact-form h1 {
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
            color: var(--text-color);
        }

        .contact-form .border-line {
            width: 140px;
            height: 4px;
            border-radius: 100px;
            background-color: var(--main-color);
            margin: 10px auto;
        }

        .contact-form .form-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-form .form-group {
            display: flex;
            flex-direction: column;
        }

        .contact-form .form-group label {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-color);
            margin-bottom: 5px;
        }

        .contact-form .form-group input,
        .contact-form .form-group textarea {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            color: var(--text-color);
            background: rgba(255, 255, 255, 0.2);
            resize: vertical;
        }

        .contact-form .form-group input:focus,
        .contact-form .form-group textarea:focus {
            outline: none;
            border-color: var(--main-color);
        }

        .contact-form .error,
        .contact-form .email-error {
            display: none;
            color: #d32f2f;
            font-size: 0.9rem;
            margin-top: 5px;
        }

        .contact-form .error .error-icon,
        .contact-form .email-error .error-icon {
            margin-right: 5px;
        }

        .contact-form .contact-submit-after {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
        }

        .contact-form .contact-submit-after .box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .contact-form .contact-submit-after .csa-icon {
            font-size: 2rem;
            color: #28a745;
        }

        .contact-form .contact-submit-after .csa-text {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-color);
        }

        .contact-form .contact-submit-after .csa-ok {
            padding: 8px 20px;
            background-color: var(--main-color);
            color: #fff;
            border-radius: 5px;
            cursor: pointer;
        }

        .contact-form .contact-button {
            position: relative;
            padding: 10px 20px;
            background-color: var(--main-color);
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .contact-form .contact-button:hover {
            background-color: #4e54c8;
        }

        .contact-form .contact-load {
            display: none;
            flex-direction: row;
            gap: 5px;
        }

        .contact-form .contact-load .line {
            width: 6px;
            height: 20px;
            background-color: #fff;
            animation: loading 0.8s infinite;
        }

        .contact-form .contact-load .line:nth-child(2) {
            animation-delay: 0.2s;
        }

        .contact-form .contact-load .line:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes loading {
            0%, 100% {
                transform: scaleY(1);
            }
            50% {
                transform: scaleY(0.4);
            }
        }

        @media (max-width: 768px) {
            .contact-full {
                flex-direction: column;
                align-items: center;
            }

            .contact-section .cs-top {
                display: flex;
                flex-direction: column;
                align-items: center;
                margin-bottom: 20px;
            }

            .contact-section .cs-top h1 {
                font-size: 1.5rem;
                font-weight: 600;
                color: var(--text-color);
            }

            .contact-section .cs-top .border-line {
                width: 140px;
                height: 4px;
                border-radius: 100px;
                background-color: var(--main-color);
            }
        }
  