:root {
    --primary-bg: #1A1915;
    /* Deep Charcoal */
    --accent-color: #B59410;
    /* Rich Gold */
    --light-cream: #FFFDF5;
    /* Light Cream */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light-cream);
    color: var(--primary-bg);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* --- Custom Navbar (Shared) --- */
.custom-navbar {
    background: var(--primary-bg);
    padding: 15px 0;
    border-bottom: 1px solid rgba(181, 148, 16, 0.2);
}

/* --- About Hero Section --- */
.about-hero {
    background-color: var(--primary-bg);
    padding: 80px 0 60px 0;
    /* Tight Padding */
    border-radius: 0 0 40px 40px;
    text-align: center;
    color: white;
}

/* --- Content Section --- */
.content-section {
    padding: 60px 0;
    /* Balanced Margin */
}

.img-stack {
    position: relative;
    padding: 20px;
}

.main-img {
    border-radius: 30px;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.exp-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    padding: 20px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(181, 148, 16, 0.3);
}

/* --- Skills Section --- */
.skill-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #F0ECE0;
    transition: 0.3s;
}

.skill-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.gold-line {
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    margin-bottom: 20px;
}

/* --- Footer (Simple) --- */
footer {
    background: var(--primary-bg);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

/* counter section css */
.stat-item {
    padding: 10px;
    transition: 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }
}

/* fAQs Section */
.accordion-button:not(.collapsed) {
    background-color: #FDFBF0;
    color: #B59410;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(181, 148, 16, 0.2);
}