
        html {
            scroll-behavior: smooth;
        }

        * {
            box-sizing: border-box;
        }
        
        body {
            background-color: rgb(216, 216, 216);
            margin: 0;
            font-family: Arial, sans-serif;
            transition: background-color 0.4s, color 0.4s;
        }

        header {
            position: fixed;
            top: 2vh;
            left: 50%;
            transform: translateX(-50%);
            width: min(80vw, 1200px);
            height: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1vh 2vh;
            border-radius: 30px;
            background-color: rgb(136, 140, 136);
            box-shadow: 2px 2px 10px rgba(17, 49, 11, 0.5);
            z-index: 999;
        }

        header img {
            width: clamp(60px, 10vw, 120px);
            height: auto;
            object-fit: contain;
            margin: 1vw 0;
        }

        header nav {
            display: flex;
            gap: clamp(1rem, 4vh, 2.5rem);
            padding-right: 2vh;
        }

        header nav a {
            color: aliceblue;
            text-decoration: none;
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            font-weight: bold;
            transition: color 0.3s, text-decoration 0.3s;
            font-family: "Roboto Slab", serif;
            font-optical-sizing: auto;
            white-space: nowrap;
        }

        header nav a:hover {
            color: lightgreen;
        }

        header .nav-option {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        header .nav-option button {
            background-color: transparent;
            border: none;
            width: auto;
            height: auto;
            object-fit: contain;
            cursor: pointer;
        }

        header .nav-option button img {
            width: clamp(35px, 6vw, 50px);
            height: auto;
            object-fit: contain;
        }

        header img:hover {
            animation: glowPulse 2s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% {
                filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
            }
            50% {
                filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1));
            }
        }

        #togglelanguagebutton {
            color: aliceblue;
            text-decoration: none;
            font-size: clamp(0.8rem, 2vw, 1.1rem);
            font-weight: bold;
            transition: color 0.3s, text-decoration 0.3s;
            border: solid;
            border-radius: 12px;
            border-style: dashed;
            padding: 0.5rem;
            cursor: pointer;
        }

        #Home {
            padding-top: clamp(6rem, 15vh, 10rem);
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 70vh;
            gap: 2rem;
        }

        #homediv1 {
            display: flex;
            flex-direction: column;
            padding: 2rem clamp(1rem, 4vw, 4rem);
            font-family: "Roboto Slab", serif;
            font-optical-sizing: auto;
            flex: 1;
            max-width: 600px;
        }

        #homediv1 h2 {
            color: rgba(30, 23, 4, 0.7);
            font-family: 'Georgia', serif;
            font-size: clamp(1.2rem, 4vw, 2rem);
            font-weight: bold;
            margin: 0 0 1rem 0;
            padding: 0;
        }

        #homediv1 h1 {
            color: rgba(30, 23, 4, 0.7);
            font-family: 'Georgia', serif;
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 900;
            margin: 0 0 1rem 0;
        }

        #homediv1 p {
            font-family: 'Arvo', serif;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            font-weight: 600;
            color: #4CAF50;
            line-height: 1.4;
        }

        #Home > div:last-child {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 500px;
        }

        #Home > div:last-child img {
            width: 100%;
            max-width: 400px;
            height: auto;
            object-fit: contain;
        }

        footer {
            background-color: #2d2d2d;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem 1rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: relative;
            width: 100%;
        }

        footer h1 {
            font-size: clamp(1.2rem, 4vw, 2rem);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: fadeIn 2s ease-out;
            text-align: center;
        }

        #footerbox {
            display: flex;
            gap: 1rem;
            align-items: center;
            justify-content: center;
            font-size: clamp(1rem, 3vw, 1.2rem);
            border-top: 1px solid #444;
            padding-top: 1rem;
            margin-top: 1rem;
            opacity: 0.8;
        }

        #footerbox h2 {
            margin: 0;
            font-weight: normal;
        }

        #footerbox p {
            margin: 0;
            font-weight: bold;
            color: #00ffd5;
            transition: color 0.3s;
        }

        #footerbox p:hover {
            color: #ff0090;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        #Contact {
            padding: 2rem;
        }

        #Contact h1 {
            display: flex;
            justify-content: center;
            color: rgba(30, 23, 4, 0.7);
            font-size: clamp(1.5rem, 4vw, 2rem);
            margin-bottom: 2rem;
        }

        .social-icons {
            display: flex;
            gap: clamp(0.5rem, 2vw, 1rem);
            justify-content: center;
            align-items: center;
            padding: 2rem;
            flex-wrap: wrap;
        }

        .icon {
            width: clamp(45px, 8vw, 60px);
            height: clamp(45px, 8vw, 60px);
            background-color: #4CAF50;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .icon img {
            width: 60%;
            height: 60%;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .icon:hover {
            transform: scale(1.1);
            background-color: #3a9a3a;
        }

        #Projects {
            padding: 2rem;
        }

        #Projects h1 {
            display: flex;
            justify-content: center;
            color: rgba(30, 23, 4, 0.7);
            font-size: clamp(1.5rem, 4vw, 2rem);
            margin-bottom: 1rem;
        }

        #Projects h2 {
            display: flex;
            justify-content: center;
            color: rgba(17, 60, 6, 0.7);
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            margin-bottom: 1rem;
        }

        #project-section {
            padding: 2rem;
            background-color: #edf7ed;
            text-align: center;
        }

        .section-title {
            font-family: 'Georgia', serif;
            font-size: clamp(1.2rem, 4vw, 2rem);
            font-weight: bold;
            color: #2c5e2e;
            border: 3px dashed green;
            padding: 0.5rem 1rem;
            display: inline-block;
            border-radius: 10px;
            margin: 0 auto 2rem auto;
        }

        #project {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            padding: 1rem 0 2rem 0;
        }

        .project-card {
            display: block;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            width: 100%;
            max-width: 280px;
            min-width: 200px;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .project-card img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            border-radius: 12px;
        }

        .project-card:hover {
            transform: rotateZ(-2deg) rotateX(2deg) scale(1.04);
            box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: aliceblue;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive Breakpoints */
        
        /* Tablet styles */
        @media (max-width: 1024px) {
            header {
                width: 90vw;
                padding: 1rem;
            }

            header nav {
                gap: 1.5rem;
            }

            #Home {
                padding: 8rem 2rem 2rem 2rem;
            }

            #homediv1 {
                padding: 2rem;
            }
        }

        /* Mobile styles */
        @media (max-width: 768px) {
            header {
                width: 95vw;
                padding: 0.8rem 1.5rem;
                border-radius: 20px;
            }

            header img {
                width: 50px;
                margin: 0;
            }

            header nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: rgb(136, 140, 136);
                flex-direction: column;
                padding: 1rem;
                border-radius: 0 0 20px 20px;
                gap: 1rem;
            }

            header nav.active {
                display: flex;
            }

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

            header .nav-option {
                gap: 0.5rem;
            }

            header .nav-option button img {
                width: 30px;
            }

            #togglelanguagebutton {
                font-size: 0.8rem;
                padding: 0.3rem;
            }

            #Home {
                flex-direction: column;
                align-items: center;
                padding: 6rem 1rem 2rem 1rem;
                text-align: center;
                min-height: auto;
            }

            #homediv1 {
                padding: 1rem;
                margin-bottom: 2rem;
                align-items: center;
            }

            #Home > div:last-child {
                max-width: 300px;
            }

            .social-icons {
                gap: 0.8rem;
                padding: 1rem;
            }

            .section-title {
                margin: 0 1rem 2rem 1rem;
            }

            #project {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }

            .project-card {
                max-width: 90%;
                min-width: 250px;
            }

            #footerbox {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        /* Extra small screens */
        @media (max-width: 480px) {
            header {
                width: 98vw;
                padding: 0.5rem 1rem;
            }

            header img {
                width: 40px;
            }

            header .nav-option button img {
                width: 25px;
            }

            #togglelanguagebutton {
                font-size: 0.7rem;
                padding: 0.2rem 0.4rem;
            }

            #Home {
                padding: 5rem 0.5rem 2rem 0.5rem;
            }

            #homediv1 {
                padding: 0.5rem;
            }

            #homediv1 h1 {
                font-size: 2rem;
            }

            #homediv1 h2 {
                font-size: 1.2rem;
            }

            #homediv1 p {
                font-size: 0.9rem;
            }

            .social-icons {
                gap: 0.5rem;
                padding: 0.5rem;
            }

            .icon {
                width: 40px;
                height: 40px;
            }

            #project {
                gap: 1rem;
            }

            .project-card {
                min-width: 200px;
            }
        }

        /* Large screens */
        @media (min-width: 1200px) {
            header {
                max-width: 1200px;
            }

            #Home, #Contact, #Projects {
                max-width: 1200px;
                margin: 0 auto;
            }
        }
