        :root {
            --primary: #2D3747;
            --accent: #5CB85C;
            --light: #FAFAFA;
            --dark: #1A202C;
            --gray: #E2E8F0;
        }

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

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 5%;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            flex-wrap: wrap;
        }

        .header-content {
            flex: 1;
            min-width: 300px;
            padding-right: 2rem;
        }

        .header-content h1 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .header-content h2 {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .header-content p {
            margin-bottom: 1.5rem;
            max-width: 600px;
        }

        .social-links a {
            display: inline-block;
            margin-right: 1rem;
            color: var(--primary);
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--accent);
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--accent);
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            flex-shrink: 0;
        }

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

        /* Navigation */
        nav {
            width: 100%;
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 1rem 0;
            flex-wrap: wrap;
        }

        nav ul li {
            margin: 0 1.5rem;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
        }

        nav ul li a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        /* Section Styles */
        section {
            padding: 4rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        section h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        section h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }

        /* About Section */
        .about-content {
            display: flex;
            align-items: flex-start;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .code-brackets {
            font-family: monospace;
            background-color: var(--gray);
            padding: 2rem;
            border-radius: 5px;
            position: relative;
            flex: 0 0 300px;
        }

        .code-brackets::before {
            content: "</>";
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: var(--accent);
            opacity: 0.3;
        }

        /* Skills Section */
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }

        .skill-card {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .skill-card:hover {
            transform: translateY(-5px);
        }

        .skill-card h3 {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .skill-card i {
            color: var(--accent);
        }

        .skill-bar {
            height: 8px;
            background-color: var(--gray);
            border-radius: 4px;
            margin-top: 1rem;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background-color: var(--accent);
            border-radius: 4px;
        }

        /* Projects Section */
        .projects-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

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

        .project-image {
            height: 200px;
            background-color: var(--gray);
            position: relative;
            overflow: hidden;
        }

        .project-image.plant {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .project-image.spam {
            background: linear-gradient(135deg, #f5f7fa 0%, #a1c4fd 100%);
        }

        .project-image::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.8;
        }

        .project-image.plant::before {
            background-image: url('./Assets/Plant\ Disease\ Detection.png');
        }

        .project-image.spam::before {
            background-image: url('./Assets/Spam_Detection.png');
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-content h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .project-content p {
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .project-link {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
        }

        .project-link:hover {
            background-color: #4CAF50;
        }

        /* Education Section */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background-color: var(--gray);
        }

        .timeline-item {
            padding: 20px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-content {
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            position: relative;
        }

        .timeline-content::before {
            content: "";
            position: absolute;
            top: 20px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--accent);
            border: 3px solid white;
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -40px;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            left: -40px;
        }

        .timeline-icon {
            position: absolute;
            top: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .timeline-item:nth-child(odd) .timeline-icon {
            right: -60px;
        }

        .timeline-item:nth-child(even) .timeline-icon {
            left: -60px;
        }

        .timeline-date {
            font-weight: bold;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        /* Contact Section */
        .contact-container {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-info ul {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-info i {
            color: var(--accent);
            width: 20px;
        }

        .contact-form {
            flex: 1;
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            min-width: 300px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--gray);
            border-radius: 4px;
            font-size: 1rem;
        }

        .form-group textarea {
            min-height: 120px;
        }

        .submit-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #4CAF50;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 2rem;
            background-color: var(--primary);
            color: white;
        }

        /* Console Effect */
        .console-container {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--dark);
            color: var(--light);
            padding: 0.5rem 1rem;
            font-family: monospace;
            font-size: 0.9rem;
            height: 40px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .console-text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .console-cursor {
            display: inline-block;
            width: 10px;
            height: 15px;
            background-color: var(--accent);
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                text-align: center;
            }

            .header-content {
                padding-right: 0;
                margin-bottom: 2rem;
            }

            .profile-image {
                margin: 0 auto;
            }

            nav ul li {
                margin: 0 0.8rem;
            }

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

            .code-brackets {
                width: 100%;
            }

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

            .timeline::before {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item:nth-child(even) {
                left: 0;
            }

            .timeline-content::before {
                left: -40px;
            }

            .timeline-item:nth-child(odd) .timeline-icon,
            .timeline-item:nth-child(even) .timeline-icon {
                left: -60px;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 3rem 2rem;
            }

            nav ul li {
                margin: 0 0.5rem;
                font-size: 0.9rem;
            }

            .header-content h1 {
                font-size: 2rem;
            }

            .header-content h2 {
                font-size: 1rem;
            }

            .profile-image {
                width: 150px;
                height: 150px;
            }
        }
