        .hero {
            position: relative;
            height: 100vh;
        }

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

        .hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-100%, -50%);
            text-align: center;
            color: rgb(55, 105, 4);
            font-family: 'Lexend Mega', serif;
        }

        .oi-regular {
            font-family: "Oi", serif;
            font-weight: 400;
            font-style: normal;
        }

        .rubik-gemstones-regular {
            font-family: "Rubik Gemstones", system-ui;
            font-weight: 400;
            font-style: normal;
        }

        .lexend-mega-normal {
            font-family: "Lexend Mega", sans-serif;
            font-optical-sizing: auto;
            font-weight: 100;
            font-style: normal;
        }

        .about-section {
            background-color: #B0CE88;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .about-section img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-content {
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.95);
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            margin-left: auto;
            margin-right: 50px;
            max-width: 650px;
            text-align: left;
            font-family: 'Lexend Mega';
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .about-content h1 {
            color: rgb(55, 105, 4);
            margin-bottom: 25px;
        }

        .about-content h5 {
            color: #333;
            font-weight: 400;
            line-height: 1.8;
        }

        .achievement-section {
            position: relative;
            min-height: 100vh;
            padding: 60px 20px;
        }

        .achievement-text {
            text-align: center;
            margin-bottom: 40px;
            font-family: 'Lexend Mega', serif;
            position: relative;
            z-index: 2;
            color: white;
        }
        .experience-text {
            text-align: center;
            margin-bottom: 40px;
            font-family: 'Lexend Mega', serif;
            position: relative;
            z-index: 2;
            color: black;
        }

        .card-title {
            font-family: 'Lexend Mega', serif;

        }


        .card-text {
            font-family: open sans-serif, sans-serif;
            font-size: 15px;
            text-align: justify;
        }

        .hover-card {
            transition: all 0.3s ease;
        }
        
        .social-icon {
            transition: all 0.3s ease;
        }
        
        .fade-in {
            animation: fadeIn 1s ease-in;
        }
        
        .fade-in-delayed {
            animation: fadeIn 1s ease-in 0.5s both;
        }
        
        .slide-in {
            animation: slideIn 1s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .scroll-btn {
            transition: all 0.3s ease;
        }
        
        .scroll-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(55, 105, 4, 0.3);
        }
        
        .nav-link.active {
            color: rgb(55, 105, 4) !important;
        }

        /* ==============================
           MOBILE RESPONSIVE STYLES
           ============================== */

        /* Tablet & Mobile Devices */
        @media (max-width: 768px) {
            /* Navbar */
            .navbar-brand {
                font-size: 1.2rem !important;
            }
            
            .navbar-nav {
                text-align: center;
                padding: 10px 0;
            }

            .nav-link {
                padding: 10px 15px !important;
            }

            /* Hero Section */
            .hero {
                height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .hero-text {
                transform: translate(-50%, -50%) !important;
                padding: 20px;
                width: 90%;
            }

            .hero-text h2 {
                font-size: 1.5rem !important;
            }

            .hero-text h1 {
                font-size: 2rem !important;
            }

            .hero-text h5 {
                font-size: 1rem !important;
            }

            .hero-text .btn {
                font-size: 0.9rem !important;
                padding: 12px 24px !important;
            }

            /* About Section */
            .about-content {
                margin: 20px !important;
                padding: 25px 20px !important;
                text-align: center;
                max-width: none !important;
            }

            .about-content h1 {
                font-size: 2rem !important;
            }

            .about-content h5 {
                font-size: 0.95rem !important;
                line-height: 1.6 !important;
                text-align: justify;
            }

            /* Achievement Section */
            .achievement-section {
                padding: 40px 15px !important;
            }

            .achievement-text h1 {
                font-size: 2rem !important;
            }

            .achievement-text h5 {
                font-size: 1rem !important;
                padding: 0 15px;
            }

            /* Experience Section */
            .experience-section {
                padding: 40px 15px !important;
            }

            .experience-text h1 {
                font-size: 2rem !important;
            }

            .experience-text h5 {
                font-size: 1rem !important;
            }

            /* Cards */
            .card {
                margin-bottom: 20px;
            }

            .card-body {
                padding: 20px !important;
            }

            .card-title {
                font-size: 1.1rem !important;
            }

            .card-text {
                font-size: 0.9rem !important;
            }

            /* Contact Section - Let's Connect */
            #contact h4 {
                font-size: 1.2rem !important;
                transform: translateY(-50px) !important;
            }

            #contact h1 {
                font-size: 3rem !important;
                transform: translateY(0px) !important;
            }

            #contact > div > div {
                transform: translateY(80px) !important;
                gap: 20px !important;
            }

            .social-icon > div {
                width: 50px !important;
                height: 50px !important;
            }

            .social-icon svg {
                width: 25px !important;
                height: 25px !important;
            }

            /* Back to Top Button */
            #backToTop {
                width: 45px !important;
                height: 45px !important;
                bottom: 15px !important;
                right: 15px !important;
                font-size: 1.2rem;
            }

            /* Footer */
            footer {
                padding: 15px 10px !important;
            }

            footer p {
                font-size: 12px !important;
            }

            footer a {
                font-size: 12px !important;
                margin: 0 10px !important;
            }
        }

        /* Small Mobile Devices (Phones in portrait) */
        @media (max-width: 576px) {
            /* Hero Section */
            .hero-text {
                width: 95%;
            }

            .hero-text h1 {
                font-size: 1.75rem !important;
            }

            .hero-text h2 {
                font-size: 1.2rem !important;
            }

            .hero-text h5 {
                font-size: 0.85rem !important;
            }

            .hero-text .btn {
                font-size: 0.8rem !important;
                padding: 10px 20px !important;
            }

            /* About Section */
            .about-content {
                margin: 15px !important;
                padding: 20px 15px !important;
            }

            .about-content h1 {
                font-size: 1.75rem !important;
            }

            .about-content h5 {
                font-size: 0.85rem !important;
            }

            /* Section Titles */
            .achievement-text h1,
            .experience-text h1 {
                font-size: 1.75rem !important;
            }

            .achievement-text h5,
            .experience-text h5 {
                font-size: 0.9rem !important;
            }

            /* Cards */
            .card-img-top {
                height: 180px !important;
            }

            /* Contact Section */
            #contact h1 {
                font-size: 2.5rem !important;
            }

            #contact h4 {
                font-size: 1rem !important;
            }

            #contact > div > div {
                flex-direction: column;
                align-items: center;
                transform: translateY(60px) !important;
            }

            .social-icon {
                margin-bottom: 15px;
            }

            /* Badges */
            .badge {
                font-size: 0.75rem !important;
                padding: 4px 8px !important;
            }

            /* Buttons */
            .btn-lg {
                font-size: 0.9rem !important;
                padding: 12px 24px !important;
            }
        }

        /* Extra Small Mobile Devices */
        @media (max-width: 380px) {
            .hero-text h1 {
                font-size: 1.5rem !important;
            }

            .hero-text h2 {
                font-size: 1rem !important;
            }

            .hero-text h5 {
                font-size: 0.75rem !important;
            }

            .about-content h1 {
                font-size: 1.5rem !important;
            }

            #contact h1 {
                font-size: 2rem !important;
            }

            .navbar-brand {
                font-size: 1rem !important;
            }
        }

        /* Landscape Orientation on Mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                height: auto;
                min-height: 100vh;
                padding: 80px 0 40px 0;
            }

            .hero-text {
                position: relative;
                transform: none !important;
                top: auto;
                left: auto;
            }

            #contact {
                min-height: auto;
                padding: 60px 20px;
            }

            #contact > div > div {
                transform: translateY(40px) !important;
            }
        }