/* General Body and Font Styles */
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            margin: 0;
            font-family: 'Inter', sans-serif;
            gap: 1.5rem;
            padding-bottom: 2rem;
        }

        /* Main Title Styling */
        .welcome-title {
            font-size: 4rem;
            font-weight: bold;
            text-align: center;
            background: linear-gradient(90deg, #a78bfa, #818cf8, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            line-height: 1;
            padding-top: 5rem;
            opacity: 0;
            transition: opacity 1s ease-in-out, transform 1s ease-in-out;
            transform: translateY(20px);
        }
        .welcome-title.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Title Adjustments */
        @media (min-width: 768px) {
            .welcome-title { font-size: 5rem; }
        }
        @media (min-width: 1024px) {
            .welcome-title { font-size: 6rem; }
        }

        /* Navigation Bar Styling */
        .navbar {
            position: fixed; /* Changed to fixed for better scrolling */
            top: 1rem;
            left: 50%;
            transform: translateX(-50%);
            width: 70%;
            max-width: 350px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            padding: 0.5rem 0.8rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 0.6rem;
            transition: all 0.3s ease-in-out;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            top: 0.5rem;
        }

        .navbar a {
            color: #ffffff;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.85rem;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
            position: relative; /* Needed for the underline pseudo-element */
        }
        .navbar a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #a78bfa;
        }

        /* Underline animation for the active link */
        .navbar a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #a78bfa; /* Underline color */
            transition: width 0.3s ease-in-out;
            border-radius: 2px;
        }

        .navbar a.active-link::after {
            width: 100%;
        }
        
        /* Acrylic Box Styling */
        .acrylic-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            max-width: 600px;
            width: 90%;
            color: #ffffff;
        }
        
        /* Home Section Specific Styles */
        .top-box {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }
        .bottom-box {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .top-box img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 12px;
        }
        .top-box .text-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            line-height: 1.5;
            opacity: 0.9;
            flex: 1;
        }
        .top-box .text-content .title {
            font-size: 2rem;
            font-weight: bold;
            line-height: 1.3;
        }
        .top-box .text-content .small-text-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            line-height: 1.4;
        }
        .top-box .text-content .small-text {
            opacity: 0.7;
        }
        @media (max-width: 640px) {
            .top-box img {
                margin-left: 35px;
            }
            .top-box .text-content {
                display: flex;
                flex-direction: column;
                justify-content: center;
                line-height: 1.5;
                opacity: 0.9;
                flex: 1;
            }
            .top-box .text-content .title {
                font-size: 1.5rem;
                font-weight: bold;
                line-height: 1.3;
            }
            .top-box .text-content .small-text-container {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                font-size: 1.25rem;
                line-height: 1.4;
            }
        }
        .copy-button {
            background: none;
            border: none;
            color: #60a5fa;
            cursor: pointer;
            font-size: 1.1rem;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .copy-button:hover { color: #93c5fd; }
        .copy-button i { font-size: 1.1rem; }
        .copy-message {
            font-size: 0.9rem;
            color: #a78bfa;
            margin-left: 0.5rem;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }
        .copy-message.show { opacity: 1; }
        .link {
            color: #60a5fa;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
            cursor: pointer;
        }
        .top-box .text-content .link:hover { text-decoration: underline; }

        .small-box, .right-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            text-align: left;
            flex: 1;
            min-width: 250px;
            height: auto;
            min-height: 12rem;
            gap: 0.5rem;
        }
        
        .small-box h2, .right-box h2 {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 1rem 0 1rem;
            width: 100%;
        }

        .small-box .status-content-area, .right-box .activities-content-area {
            padding: 0 1rem 1rem 1rem; 
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .small-box .status-item {
            display: flex;
            justify-content: space-between;
            width: 100%;
            font-size: 1rem;
            line-height: 1.4;
            opacity: 0.9;
            margin: 0;
            padding: 0;
        }
        .small-box p, .right-box p {
            font-size: 1rem;
            line-height: 1.4;
            opacity: 0.9;
            margin: 0;
        }
        
        /* About Section Specific Styles */
        .about-content h3 {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        .about-content p, .about-content ul {
            margin-bottom: 1rem;
        }
        .about-content ul {
            list-style-type: none;
            padding-left: 0;
        }
        .about-content li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }
        /* No need for specific button styles, Tailwind handles it */
        .contact-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        /* Project Carousel Styles */
        .projects-carousel-container {
            position: relative;
            max-width: 100%;
        }

        .carousel-wrapper {
            overflow: hidden;
            width: 100%;
        }
        
        .projects-carousel {
            display: flex;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            transition: transform 0.5s ease-in-out;
        }
        .projects-carousel::-webkit-scrollbar {
            display: none;
        }

        .project-card-wrapper {
            flex: 0 0 100%;
            padding: 0 0.5rem;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 1rem;
            gap: 0.5rem;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            background-color: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
            border: none;
            padding: 0;
        }

        .carousel-dot.active {
            background-color: #a78bfa;
            width: 12px;
            height: 12px;
        }


        /* Responsive Adjustments for Smaller Screens */
        @media (min-width: 640px) {
            .projects-carousel-container {
                width: calc(100% - 4rem); /* To make space for buttons */
            }
            .projects-carousel-container, .acrylic-box {
                max-width: 800px;
            }
            .projects-carousel {
                gap: 1rem;
                justify-content: flex-start;
            }
            .project-card-wrapper {
                flex: 0 0 calc(50% - 0.5rem);
            }
            .welcome-title { font-size: 4rem; padding-top: 6rem; }
        }
        @media (max-width: 640px) {
            .bottom-box {
                flex-direction: column;
                align-items: center;
            }
            .small-box, .right-box {
                width: 100%;
                min-width: unset;
            }
            .welcome-title { font-size: 3rem; padding-top: 6rem; }
            .navbar {
                padding: 0.75rem 1rem;
                flex-wrap: wrap;
                justify-content: center;
                width: 90%;
                max-width: unset;
            }
            .navbar a { padding: 0.5rem 0.75rem; }
            .projects-carousel-container {
                width: 90%;
            }
            .project-card-wrapper {
                flex: 0 0 100%;
            }
        }
