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

        :root {
            --primary: #001f54;
            --secondary: #ffffff;
            --accent: #0051a8;
            --text: #001f54;
            --bg: #F3F4F6;
            --card-bg: #FFFFFF;
            --shadow: #001f541a;
            --shadow2: #1e53c4ca;
            --tag-bg: #b2cdffca;
        }

        [data-theme="dark"] {
            --primary: #ffffff;
            --secondary: #001f54;
            --accent: #4a90e2;
            --text: #ffffff;
            --bg: #1F2937;
            --card-bg: #1F2937;
            --shadow: rgba(255, 255, 255, 0.1);
            --shadow2: rgba(199, 218, 255, 0.792);
            --tag-bg: #303f5cca;
        }

        body {
            font-family: Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        nav {
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            background: var(--bg);
            z-index: 1000;
            box-shadow: 0 2px 10px var(--shadow);
            transition: background 0.3s ease;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(159deg, rgb(67, 117, 186) 0%, rgb(105, 210, 234) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
            padding-bottom: 4px;
            border-bottom: 2px solid var(--accent);
        }

        .theme-toggle {
            /* background: var(--accent); */
            border: none;
            background: none;
            padding: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .theme-toggle:hover {
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h2 {
            font-size: 40px;
            color: var(--text);
        }

        h2 .anime {
            background: linear-gradient(159deg, rgb(67, 117, 186) 0%, rgb(72, 194, 222) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text .highlight {
            color: var(--accent);
            background: linear-gradient(159deg, rgb(67, 117, 186) 0%, rgb(72, 194, 222) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text p {
            font-size: 20px;
            margin-bottom: 20px;
            opacity: 0.8;
        }

        /* KEYWORDS TAG */
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .tags .tag {
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .tag:hover {
            transform: translateY(-2px);
        }

        /* Colors */
        .tags .green {
            background-color: #82ecc2;
            border: 2px solid #1e825a;
            color: #000;
        }

        .tags .blue {
            background-color: #3d23ff5f;
            border: 2px solid #1a4da7;
            color: #ffffff;
        }

        .tags .purple {
            background-color: #c48aff;
            color: #fff;
            border: 2px solid #5c3087;
        }

        .tags .orange {
            background-color: #f9b182;
            border: 2px solid #ff6600;
            color: #fff;
        }

        .tags .red {
            background-color: #ff9898;
            border: 2px solid #ff4d4d;
            color: #fff;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px var(--shadow);
            opacity: 0.7;
        }

        .btn-secondary {
            border: 2px solid var(--accent);
            color: var(--accent);
        }

        .btn-secondary:hover {
            background: var(--accent);
            color: white;
        }

        .hero-image {
            position: relative;
            text-align: center;
        }

        .img {
            border-radius: 30px;
            width: 350px;
            height: 400px;
            transition: all .3s ease-out;
            animation: myAnime 2s ease-in-out infinite;
        }

        @keyframes myAnime {

            0%,
            100% {
                box-shadow: 0 5px 5px var(--shadow2), 0 5px 40px var(--shadow2);
            }

            50% {
                box-shadow: 0 10px 80px var(--shadow2);
                transform: translateY(5px);
            }
        }

        .profile-img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            font-size: 120px;
            color: white;
            box-shadow: 0 10px 40px var(--shadow);
        }

        /* About Section */
        /* .about-section {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            max-width: 1000px;
            margin: auto;
        } */

        /* Card */
        .about-content {
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        .about-card {
            border: 2px solid #0051a8;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 40px var(--shadow);
        }

        /* Icon */
        .icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* Text */
        .about-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.75rem;
        }

        .about-card p {
            font-size: 1rem;
            line-height: 1.6;
        }


        .section {
            padding: 40px 0;
        }

        .section-title {
            font-size: 36px;
            margin-bottom: 30px;
            text-align: center;
            color: var(--text);
        }

        .title-summary {
            text-align: center;
            padding-bottom: 30px;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content p {
            font-size: 18px;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        /* Skills Section */

        /* skill icons */


        .skills-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            /* width: 100%; */
            margin: 0 auto;
        }

        .icon-svg {
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 18px;
        }

        .skills-parent {
            border: 2px solid #0051a8;
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .skills-parent:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 10px var(--shadow);
        }

        .skills-name {
            text-align: center;
            padding: 10px 0px 40px 0px;
        }

        .skill-item {
            margin-bottom: 20px;
        }

        .skill-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .skill-name {
            font-size: 16px;
            font-weight: 500;
            color: var(--text);
        }

        .skill-percentage {
            font-size: 16px;
            font-weight: 600;
            color: var(--accent);
        }

        .skill-bar-container {
            width: 300px;
            height: 12px;
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: inset 0 2px 4px var(--shadow);
        }

        .skill-bar {
            height: 100%;
            background: linear-gradient(159deg, rgb(67, 117, 186) 0%, rgb(72, 194, 222) 100%);
            border-radius: 10px;
            position: relative;
            width: 0;
            transition: width 1.5s ease-out;
        }

        .skill-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(100%);
            }
        }

        .skill-item.animate .skill-bar {
            width: var(--skill-width);
        }

        /* accents Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 20px var(--shadow);
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px var(--shadow);
        }

        .imgProShow {
            height: 200px;
            width: 400px;
            transition: transform .3s ease-out;
        }

        .imgProShow:hover {
            transform: scale(1.1);
        }

        .project-img {
            width: 100%;
            height: 200px;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: white;
        }

        .project-content {
            padding: 25px;
            cursor: pointer;
        }

        .project-content h3 {
            margin-bottom: 15px;
            color: var(--accent);
        }

        .project-content p {
            margin-bottom: 20px;
            opacity: 0.8;
        }

        /* View CTA */
        .views {
            height: 5px;
            margin: 18px 0px;
        }

        .span a {
            text-decoration: none;
            padding: 8px;
            color: white;
            border-radius: 5px;
            font-size: 0.8rem;
        }

        .icon-viewer {
            cursor: pointer;
        }

        .red a {
            background-color: #5c6c82;
        }

        .green a {
            background-color: #1D4ED8;
        }

        .credentials a {
            color: #3367f5;
            font-weight: 700;
        }

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

        .tag {
            padding: 5px 15px;
            background: var(--tag-bg);
            /* color: white; */
            border-radius: 10px;
            box-shadow: var(--shadow);
            font-size: 12px;
        }

        /* Contact button */
        .ctn-contact {
            display: flex;
            gap: 20px;
            align-items: center;
            background-color: var(--bg);
            padding: 15px;
            border: 0.2px solid #9CA3AF;
            border-radius: 12px;
            box-shadow: 0 5px 10px var(--shadow);
            margin-top: 10px;
        }

        .icon-ctn {
            background-color: var(--tag-bg);
            color: #60A5FA;
            padding: 15px;
            border-radius: 8px;
            overflow: hidden;
        }

        .socio {
            color: #9CA3AF;
            font-weight: 600;
        }

        .text a {
            text-decoration: none;
            font-size: 1rem;
            color: #5C6C82;
        }

        .text a:hover {
            color: #3367f5;
        }

        .contact-container {
            width: 100%;
        }

        .container-son {
            margin: auto;
            max-width: 900px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
        }

        .contact-form {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
        }

        /* .form-group {
            text-align: left;
        } */

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--accent);
            border-radius: 8px;
            background: var(--bg);
            color: var(--text);
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

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

        /* Footer */
        footer {
            background: var(--card-bg);
            padding: 40px 0;
            text-align: center;
            margin-top: 100px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .social-links h3 {
            font-size: 1rem;
        }

        .social-link i {
            font-size: 1.5rem;
            color: #60A5FA;
        }

        .social-link a {
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .social-link i:hover {
            transform: translateY(3px);
            color: #0c34a0;
        }

        .popup {
            border: 0.5px solid #3367F5;
            padding: 12px;
            background-color: #3367f515;
            border-radius: 10px;
            margin-top: 15px;
        }

        .pop-txt {
            color: #3367F5;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text);
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-image {
                order: -1;
                padding-top: 30px;
            }

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

            .cta-buttons {
                justify-content: center;
                width: 100%;
                flex-direction: column;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--bg);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px var(--shadow);
            }

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

            .mobile-menu-btn {
                display: block;
            }

            .tags {
                justify-content: center;

            }

            .img {
                border-radius: 30px;
                width: 300px;
                height: 350px;

            }

            .container-son,
            .contact-form,
            .contact-container {
                flex-direction: column;
            }

            .social-links h3 {
                font-size: 0.86rem;
            }

            .social-links .fa {
                font-size: 1rem;
            }

            .skills-grid,
            .accents-grid {
                grid-template-columns: 1fr;
            }

            .about-content {
                flex-direction: column;
            }
        }