:root {
            --primary-dark: #140600;
            --secondary-gold: #ffb100;
            --secondary-gold-hover: #e59f00;
            --text-main: #2d3748;
            --bg-light: #fdfcfb;
        }

        body { 
            background-color: var(--bg-light); 
            color: var(--text-main); 
            font-family: 'Inter', sans-serif; 
            /* Subtle texture overlay */
            background-image: radial-gradient(#d1d1d1 0.5px, transparent 0.5px);
            background-size: 20px 20px;
        }
        
        

        /* Navbar */
        .navbar {background: rgba(253, 252, 251, 0.85);backdrop-filter: blur(15px);padding: 10px 0;border: none;}
        .navbar-brand img {
    width: 140px;
}
        .nav-link { color: var(--text-main); font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; margin-left: 30px; transition: 0.3s; }
        .nav-link:hover { color: var(--secondary-gold); }
        .btn-gold { background-color: var(--secondary-gold); color: var(--primary-dark); font-weight: 800; border-radius: 0; padding: 12px 35px; text-transform: uppercase; letter-spacing: 1px; transition: 0.4s; }
        .btn-gold:hover { background-color: var(--secondary-gold-hover); transform: translateY(-4px); box-shadow: 0 10px 20px rgba(255, 177, 0, 0.3); }

        /* Modern Hero */
        .hero-banner { 
            padding: 160px 0; 
            position: relative; 
            /* Subtle dark-to-light gradient background */
            background: linear-gradient(135deg, rgba(20, 6, 0, 0.03) 0%, transparent 70%); 
        }
        .hero-title { font-size: 5.5rem; font-weight: 900; color: var(--primary-dark); line-height: 0.9; margin-bottom: 40px; }
        .accent-text { color: var(--secondary-gold); }
        
        .hero-img { width: 100%; border-radius: 4px; transition: 0.6s; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        .floating-element { position: absolute; top: -30px; right: -30px; width: 150px; height: 150px; background: var(--secondary-gold); z-index: -1; border-radius: 4px; opacity: 0.2; }
        
/*Marquee*/

    .marquee-container {
        background-color: var(--primary-dark);
        color: var(--secondary-gold);
        padding: 20px 0;
        overflow: hidden;
        white-space: nowrap;
        border-top: 1px solid rgba(255, 177, 0, 0.2);
        border-bottom: 1px solid rgba(255, 177, 0, 0.2);
    }

    .marquee-track {
        display: inline-block;
        animation: marqueeScroll 20s linear infinite;
    }

    .marquee-item {
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        letter-spacing: 3px;
        font-size: 0.9rem;
        margin: 0 40px;
    }

    .marquee-divider {
        color: rgba(255, 255, 255, 0.3);
    }

    @keyframes marqueeScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    
        /* Typography Styles */
    .sub-heading { 
        display: block; color: var(--secondary-gold); font-weight: 800; 
        letter-spacing: 3px; font-size: 0.75rem; text-transform: uppercase; margin-bottom: 10px; 
    }
    .section-title { font-size: 3rem; font-weight: 900; color: var(--primary-dark); letter-spacing: -1px; }

    /* Stacked Image Design */
    .image-stack { position: relative; padding: 20px; }
    .img-stack-top { width: 70%; border-radius: 15px; position: relative; z-index: 2; margin-bottom: -150px; margin-left: 30%; transition: 0.4s; }
    .img-stack-bottom { width: 70%; border-radius: 15px; position: relative; z-index: 1; transition: 0.4s; }
    
    .image-stack:hover .img-stack-top { transform: translateY(-10px); }
    .image-stack:hover .img-stack-bottom { transform: translateY(10px); }
    
    
        /* Section & Card Styling */
    .experience-card { position: relative; padding: 20px; border: 1px solid rgba(0,0,0,0.05); border-radius: 25px; background: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
    .card-overlay { position: absolute; bottom: 40px; left: 40px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); padding: 20px; border-radius: 15px; border-left: 5px solid var(--secondary-gold); }
    
    /* Modern Stat Card Styling */
    .modern-stat-card {
        padding: 30px;
        background: #ffffff;
        border: 1px solid rgba(20, 6, 0, 0.05);
        border-radius: 20px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .modern-stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        border-color: var(--secondary-gold);
    }
    .stat-number { font-size: 2.5rem; font-weight: 900; color: var(--primary-dark); line-height: 1; margin-bottom: 8px; }
    .stat-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--secondary-gold); }
    
    
     .portfolio-grid-layout { 
        display: grid; 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    
    @media (min-width: 992px) {
        .portfolio-grid-layout { grid-template-columns: 1.8fr 1.2fr; }
    }
    
    .work-card { 
        padding: 20px; background: #fff; border-radius: 30px; 
        box-shadow: 0 15px 35px rgba(0,0,0,0.06);
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .work-card:hover { transform: translateY(-10px); box-shadow: 0 40px 70px rgba(0,0,0,0.12); }
    .work-card img { border-radius: 20px; width: 100%; transition: 0.5s; }
    .work-info { padding: 25px 10px 10px 10px; }
    .project-title { font-size: 1.4rem; font-weight: 900; color: var(--primary-dark); margin-bottom: 12px; }
    .project-desc { color: var(--text-main); font-size: 0.95rem; line-height: 1.5; margin-bottom: 15px; }
    .tech-tags span { 
        background: rgba(20, 6, 0, 0.05); padding: 4px 12px; 
        border-radius: 50px; font-size: 0.7rem;
        margin-right: 8px; color: var(--secondary-gold); display: inline-block;
    }
    
     /* Global Section Adjustments */
    .contact-section { background-color: #f8f9fa; }
    
    /* Form & Input Styling */
    .contact-form .form-control { 
        background: #ffffff; 
        border: 1px solid #e9ecef; 
        padding: 18px; 
        border-radius: 15px; 
        transition: 0.3s;
    }
    .contact-form .form-control:focus { 
        border-color: var(--secondary-gold); 
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1); 
    }
    
    /* Contact Info Card */
    .contact-card { 
        padding: 30px; 
        border-left: 5px solid var(--secondary-gold); 
        background: #fff; 
        border-radius: 15px; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    /* Footer & Disclaimer Styling */
    .disclaimer-block { margin-top: 20px; }
    .footer a:hover { color: #fff !important; }
    
    
    
    /* --- RESPONSIVE FIXES --- */

/* Hero Section Responsiveness */
@media (max-width: 991px) {
    .hero-title {font-size: 3.2rem;}
    .hero-banner { padding: 80px 0; }
    .hero-image-wrap { margin-top: 50px; }
    .floating-element { display: none; } /* Hide floating decor on mobile */
}

/* Image Stack Responsiveness */
@media (max-width: 768px) {
    .image-stack { padding: 0; }
    .img-stack-top, .img-stack-bottom { 
        width: 100%; 
        margin: 0; 
        margin-bottom: 20px; 
    }
}

/* Stat Cards Responsiveness */
@media (max-width: 576px) {
    .modern-stat-card { padding: 20px; }
    .stat-number { font-size: 2rem; }
    .experience-section .row {
    flex-direction: column-reverse;
}
}

/* General Section Spacing */
@media (max-width: 991px) {
    .section-title { font-size: 2.2rem; }
    .container { padding-left: 20px; padding-right: 20px; }
}

/* Footer Adjustments */
@media (max-width: 768px) {
    .footer .d-flex { flex-direction: column; align-items: center; gap: 15px !important; }
}