        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #000000;

        }

        ::-webkit-scrollbar {
            background-color: #000000;
            width: 10px;
        }

        ::-webkit-scrollbar-thumb {
            /* background-color: ; */
            border-radius: 100px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            display: flex;
            min-height: 100vh;
            background-color: #000000;
            overflow-x: hidden;
        }

        /* Left Navigation Panel */
        .side-panel {
            width: 280px;
            background-color: #000000;
            color: #3a42e2;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: fixed;
            height: 100vh;
            overflow-y: auto;
            z-index: 1000;
        }

        .profile-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #17F018;
            margin-bottom: 20px;
        }

        .name {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 5px;
            text-align: center;
            line-height: 20px;
        }

        .title {
            color: #17F018;
            font-size: 16px;
            margin-bottom: 30px;
            text-align: center;
        }

        .nav-links {
            list-style: none;
            width: 100%;
        }

        .nav-links li {
            margin-bottom: 15px;
        }

        .nav-links a {
            color: #17F018;
            text-decoration: none;
            display: flex;
            align-items: center;
            padding: 12px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background-color: #41c941;
            color: white;
        }

        .nav-links i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
            border: none;
        }

        /* Main Content Area */
        .main-content {
            flex: 1;
            margin-left: 280px;
            position: relative;
        }

        .section {
            min-height: 100vh;
            padding: 80px 40px;
            display: flex;
            align-items: center;
            background-color: #000000;
            border-bottom: 1px solid #eee;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

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

        .section-content {
            max-width: 800px;
            width: 100%;
        }

        .section-title {
            font-size: 32px;
            margin-bottom: 30px;
            color: #17F018;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #17F018;
            /* color: #3a42e2; */
        }

        /* Home Section */
        .home-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #41c941;
        }

        .home-content h2 {
            font-size: 28px;
            color: #17F018;
            margin-bottom: 30px;
        }

        .home-content p,
        strong {
            font-size: 20px;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #17F018;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #17F018;
            color: #000000;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #41c941;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* About Section */
        .about-content p {
            font-size: 20px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #17F018;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
            color: #41c941;
        }

        .info-item {
            margin-bottom: 15px;
        }

        .info-item strong {
            color: #17F018;
            display: inline-block;
            width: 120px;
        }

        /* Education Section */
        .education-item {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            color: #17F018;
        }

        .education-item:last-child {
            border-bottom: none;
        }

        .education-item h3 {
            color: #17F018;
            margin-bottom: 5px;
        }

        .education-item .date {
            color: #41c941;
            font-weight: 600;
            margin-bottom: 10px;
        }

        
        /*Skills Section*/

        div.skills-content {
            width: 100%;
            overflow: auto;
            color: #17F018;
        }

        div.skills-content div {
            width: 33%;
            float: left;
        }
        #item-icon{
            width: 105px;
        }
        #item-icon-backend{
            width: 140px;
        }
        #skills-content-databases{
            width: 240px;
            align-items: center;
            margin-right: 20px;
        }
        .item-icon-database p{
            width: 180px;
        }
        .skills-content h2{
            font-size: 18px;
            color: #3a42e2;
        }
        .skills-content p{
            font-size: 14px;
            border: 1px solid gray;
            border-radius: 5px;
            padding-left: 20px;
            height: 30px;
            margin-top: 10px;
        }
        .skills-content p i{
            margin-top: 7px; 
            align-items: center;
        }

        .skills-item {
            color: #17F018;
        }


        /* Portfolio Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .project-card {
            background-color: #000000;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(224, 26, 26, 0.562);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
        }

        .project-img {
            height: 180px;
            overflow: hidden;
        }

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

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

        .project-info {
            padding: 20px;
        }

        .project-info h3 {
            margin-bottom: 10px;
            color: #17F018;
        }

        .project-info p {
            color: #17F018;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .project-links {
            display: flex;
            gap: 15px;
        }

        .project-links a {
            color: #41c941;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        /* Contact Section */
        .contact-content {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: #000000;
            color: #17F018;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 20px;
        }

        .contact-text {
            color: #17F018;
        }

        .contact-text-liks p {
            font-size: 25px;
            color: #41c941;
            font-weight: 800;
            text-decoration: underline;
        }

        .contact-text-liks ul li {
            color: #17F018;
        }

        .contact-text-liks ul li a {
            color: #3a42e2;
            text-decoration: none;
            font-size: 17px;
        }

        .contact-text h4 {
            color: #17F018;
            margin-bottom: 5px;
        }

        .contact-form {
            flex: 1;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #17F018;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #41c941;
            border-radius: 5px;
            font-size: 16px;
        }

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

        /* Scroll Indicator */
        .scroll-indicator {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        .scroll-dot {
            display: block;
            width: 12px;
            height: 12px;
            margin: 15px 0;
            background-color: #17F018;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.5;
        }

        .scroll-dot.active {
            opacity: 1;
            transform: scale(1.3);
        }

        .copyRight-content {
            margin-top: 20px;
            color: #17F018;
            justify-items: center;
        }
        #paragraph{
            margin-top: 40px;
            font-size: 14px;
        }
        .copyRight-icon a{
            margin-left: 20px;
            color: #41c941;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            body {
                flex-direction: column;
            }

            .side-panel {
                position: relative;
                width: 100%;
                height: auto;
                padding: 20px;
            }

            .main-content {
                margin-left: 0;
            }

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

            .scroll-indicator {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .projects-grid {
                grid-template-columns: 1fr;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .home-content h1 {
                font-size: 36px;
            }

            .home-content h2 {
                font-size: 22px;
            }

            .section {
                padding: 60px 20px;
            }
        }
