
        /* --- New Design (Based on Image) --- */

        :root {
            /* New Dark Theme Palette */
            --dark-bg: #0a192f;
            --dark-card: #0b1a30; /* Use sidebar color for cards */
            --dark-text: #e6f1ff;
            --dark-text-secondary: #8892b0;
            --dark-accent: #F26A44; /* New Salmon/Orange Accent */
            --dark-accent-hover: rgba(242, 106, 68, 0.1);

            /* New Light Theme Palette */
            --light-bg: #f8f9fa;
            --light-card: #ffffff;
            --light-text: #212529;
            --light-text-secondary: #495057;
            --light-accent: #F26A44; /* New Salmon/Orange Accent */
            --light-accent-hover: rgba(242, 106, 68, 0.1);
        }

        /* --- Base Styles --- */
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark-bg);
            color: var(--dark-text);
            /* Enable Bootstrap Scrollspy */
            position: relative; 
            padding-top: 56px; /* Offset for fixed navbar */
        }

        [data-bs-theme="light"] body {
            background-color: var(--light-bg);
            color: var(--light-text);
        }

        html {
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
        }

        .text-accent {
            color: var(--dark-accent);
        }
        
        .section-divider {
            border-bottom: 1px solid var(--dark-card);
        }
        [data-bs-theme="light"] .section-divider {
            border-bottom: 1px solid #dee2e6;
        }


        /* --- Animations --- */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* --- Navbar --- */
        .navbar {
            background-color: var(--dark-bg);
            border-bottom: 1px solid var(--dark-card);
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }
        [data-bs-theme="light"] .navbar {
            background-color: var(--light-card);
            border-bottom: 1px solid #dee2e6;
        }

        .navbar-brand {
            font-weight: 700;
        }
        
        .nav-link {
            color: var(--dark-text-secondary);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        [data-bs-theme="light"] .nav-link {
            color: var(--light-text-secondary);
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--dark-accent) !important;
        }
        [data-bs-theme="light"] .nav-link:hover,
        [data-bs-theme="light"] .nav-link.active {
            color: var(--light-accent) !important;
        }
        
        .navbar-toggler {
            border: none;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* --- Theme Toggle --- */
        #theme-toggle {
            color: var(--dark-text-secondary);
        }
        [data-bs-theme="light"] #theme-toggle {
            color: var(--light-text-secondary);
        }
        #theme-toggle:hover {
            color: var(--dark-accent);
        }
        [data-bs-theme="light"] #theme-toggle:hover {
            color: var(--light-accent);
        }
        #theme-toggle .fa-sun { display: none; }
        [data-bs-theme="light"] #theme-toggle .fa-sun { display: inline-block; }
        [data-bs-theme="light"] #theme-toggle .fa-moon { display: none; }


        /* --- General Section Styling --- */
        section {
            padding: 80px 0;
            overflow: hidden; /* For animations */
        }
        @media (max-width: 991.98px) {
            section {
                padding: 60px 0;
            }
        }
        
        /* --- Hero Section (#home) --- */
        #home {
            min-height: calc(100vh - 56px); /* Full height minus navbar */
            display: flex;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            font-weight: 700;
            animation: fadeInUp 0.8s ease-out;
        }
        .hero-text h2 {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--dark-text);
            animation: fadeInUp 1s ease-out;
        }
        [data-bs-theme="light"] .hero-text h2 {
            color: var(--light-text);
        }
        .hero-text h2 .text-accent {
            display: block;
        }
        
        .hero-buttons {
            margin-top: 2rem;
            animation: fadeInUp 1.2s ease-out;
        }
        .btn-accent {
            background-color: var(--dark-accent);
            border-color: var(--dark-accent);
            color: #fff;
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            transition: all 0.3s ease;
        }
        .btn-accent:hover {
            background-color: #d1563a;
            border-color: #d1563a;
            color: #fff;
            transform: translateY(-3px);
        }

        .btn-outline-accent {
            border-color: var(--dark-accent);
            color: var(--dark-accent);
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            transition: all 0.3s ease;
        }
        .btn-outline-accent:hover {
            background-color: var(--dark-accent-hover);
            color: var(--dark-accent);
            transform: translateY(-3px);
        }

        .hero-image-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 1s ease-out;
        }
        .hero-image {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--dark-accent);
            box-shadow: 0 0 30px var(--dark-accent-hover);
        }
        
        /* --- Skills Bar Section --- */
        #skills-bar {
            padding: 2rem 0;
            background-color: var(--dark-card);
            text-align: center;
        }
        [data-bs-theme="light"] #skills-bar {
            background-color: #e9ecef;
        }
        
        .skills-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            padding: 0;
            margin: 0;
            list-style: none;
        }
        .skills-list li {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--dark-text-secondary);
            transition: color 0.3s ease;
        }
        .skills-list li:hover {
            color: var(--dark-text);
        }
        [data-bs-theme="light"] .skills-list li {
            color: var(--light-text-secondary);
        }
        [data-bs-theme="light"] .skills-list li:hover {
            color: var(--light-text);
        }

        /* --- Services Section --- */
        .service-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        .service-icon {
            font-size: 1.5rem;
            color: var(--dark-accent);
            background-color: var(--dark-accent-hover);
            padding: 1rem;
            border-radius: 50%;
            margin-right: 1.5rem;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .service-item h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .service-item p {
            color: var(--dark-text-secondary);
        }

        /* --- About Section --- */
        .section-title-left {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .section-title-left::after {
            content: '';
            width: 60px;
            height: 4px;
            background: var(--dark-accent);
            position: absolute;
            bottom: 0;
            left: 0;
        }

        .about-text {
            color: var(--dark-text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--dark-accent);
            margin: 0;
        }
        .stat-item p {
            font-size: 1rem;
            color: var(--dark-text-secondary);
            margin: 0;
        }

        /* --- Projects Section --- */
/* Section Background */
#projects {
    background-color: var(--dark-card, #121212);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

[data-bs-theme="light"] #projects {
    background-color: #f8f9fa;
}

/* Portfolio Card */
.portfolio-item {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* Image */
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s ease;
    backdrop-filter: blur(2px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ===========================
   FULLSCREEN PREVIEW (NO JS)
=========================== */
.img-modal {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(0,0,0,0.92);
    justify-content: center;
    align-items: center;
    padding: 40px;
    z-index: 5000;
}

.img-modal:target {
    display: flex;
}

.img-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    animation: fadeZoom 0.3s ease;
}

/* Close by clicking background */
.img-modal .close {
    position: absolute;
    inset: 0;
}

/* Animation */
@keyframes fadeZoom {
    from { transform: scale(0.7); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}


        /* --- Contact Section --- */
        .contact-icon {
            font-size: 1.5rem;
            color: var(--dark-accent);
        }
        
        #contact .form-control {
            border-radius: 8px;
            background-color: var(--dark-card);
            border: 1px solid var(--dark-text-secondary);
            color: var(--dark-text);
        }
        #contact .form-control:focus {
            background-color: var(--dark-card);
            color: var(--dark-text);
            border-color: var(--dark-accent);
            box-shadow: 0 0 10px var(--dark-accent-hover);
        }
        [data-bs-theme="light"] #contact .form-control {
            background-color: #fff;
            border: 1px solid #ced4da;
            color: var(--light-text);
        }
        [data-bs-theme="light"] #contact .form-control:focus {
            background-color: #fff;
            color: var(--light-text);
            border-color: var(--light-accent);
            box-shadow: 0 0 0 0.25rem var(--light-accent-hover);
        }
        #contact .btn-primary {
            border-radius: 8px;
            padding: 10px 30px;
            font-weight: 700;
            background-color: var(--dark-accent);
            border-color: var(--dark-accent);
            color: #fff;
            transition: all 0.3s ease;
        }
        #contact .btn-primary:hover {
            background-color: #d1563a;
            border-color: #d1563a;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(242, 106, 68, 0.3);
        }

          .whatsapp-float {
                        position: fixed;
                        bottom: 24px;
                        right: 24px;
                        background: #25d366;
                        color: #fff;
                        border-radius: 50%;
                        width: 56px;
                        height: 56px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 2rem;
                        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
                        z-index: 999;
                        transition: background 0.2s;
                        text-decoration: none;
                    }

                    .whatsapp-float:hover {
                        background: #128c7e;
                        color: #fff;
                    }

        /* --- Footer (Inside main content) --- */
        footer {
            background-color: var(--dark-card);
            color: var(--dark-text-secondary);
            padding: 2rem 0;
            text-align: center;
        }
        [data-bs-theme="light"] footer {
            background-color: #e9ecef;
        }
        .footer-social a {
            font-size: 1.25rem;
            color: var(--dark-text-secondary);
            margin: 0 0.75rem;
            transition: all 0.3s ease;
        }
        .footer-social a:hover {
            color: var(--dark-accent);
            transform: scale(1.1);
        }
