:root {
            --charcoal: #121212;
            --deep-slate: #1a202c;
            --amber: #f59e0b;
            --amber-hover: #d97706;
            --text-light: #f8fafc;
            --text-dim: #94a3b8;
            --white: #ffffff;
            --bg-light: #f1f5f9;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--white);
            color: var(--charcoal);
            line-height: 1.7;
        }

        nav {
            background: rgba(18, 18, 18, 0.98);
            padding: 0.8rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--amber);
        }

        .logo {
            font-family: 'Oswald', sans-serif;
            color: var(--white);
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img { height: 45px; width: auto; margin-right: 15px; border-radius: 50%; }
        .logo span { color: var(--amber); }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            margin-left: 2rem;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .nav-links a:hover { color: var(--amber); }

        header {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('header-bg.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        header h1 { font-family: 'Oswald', sans-serif; font-size: clamp(2.2rem, 7vw, 4rem); margin-bottom: 1rem; text-transform: uppercase; }
        header p { font-size: 1.25rem; max-width: 800px; margin-bottom: 2.5rem; font-weight: 300; color: var(--text-light); }

        .btn {
            background: var(--amber);
            color: var(--charcoal);
            padding: 1.1rem 2.8rem;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .btn:hover { transform: translateY(-3px); background: var(--amber-hover); }

        #services { padding: 120px 5%; background: var(--bg-light); }
        .section-header { text-align: center; margin-bottom: 80px; }
        .section-header h2 { font-family: 'Oswald', sans-serif; font-size: 2.8rem; text-transform: uppercase; color: var(--charcoal); }
        .accent-line { width: 120px; height: 5px; background: var(--amber); margin: 15px auto; }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-card:hover { transform: translateY(-10px); border-left: 8px solid var(--amber); }

        .service-card i { color: var(--amber); margin-bottom: 25px; display: block; }

        .service-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.6rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            color: var(--deep-slate);
            min-height: 4.5rem;
            display: flex;
            align-items: center;
        }

        .service-card p { flex-grow: 1; }

        #about { padding: 120px 5%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 80px; }
        .about-image img { width: 100%; border-radius: 8px; box-shadow: 20px 20px 0px var(--amber); }
        .about-content h2 { font-family: 'Oswald', sans-serif; font-size: 2.8rem; margin-bottom: 25px; text-transform: uppercase; }
.about-content p {
            margin-bottom: 20px;
            color: #4a5568;
            font-size: 1.1rem;
        }

        .stats-bar { background: var(--deep-slate); color: var(--white); padding: 60px 5%; display: flex; justify-content: space-around; flex-wrap: wrap; text-align: center; border-top: 2px solid var(--amber); }
        .stat-item { padding: 20px; min-width: 200px; }
        .stat-number { font-family: 'Oswald', sans-serif; font-size: 3rem; color: var(--amber); display: block; }
        .stat-label { text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; font-weight: 600; }

        #final-cta { padding: 120px 5%; background: var(--charcoal); color: var(--white); text-align: center; }

        footer { padding: 40px 5%; background: #0a0a0a; color: #4b5563; text-align: center; font-size: 0.9rem; }
        .footer-content { display: flex; align-items: center; justify-content: center; gap: 15px; }
        .easter-egg { color: var(--text-dim); opacity: 0.2; transition: all 0.3s ease; display: flex; align-items: center; cursor: pointer; }
        .easter-egg:hover { opacity: 1; color: var(--amber); transform: scale(1.2); }

        @media (max-width: 900px) {
            #about { grid-template-columns: 1fr; text-align: center; }
            .nav-links { display: none; }
            .footer-content { flex-direction: column; gap: 10px; }
        }
		/* --- Testimonials Styling --- */
#testimonials { 
    padding: 120px 5%; 
    background: var(--bg-light); 
}

.carousel-wrapper {
    position: relative;
    max-width: 800px; /* Limits the width so the text isn't too long to read */
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.testimonials-grid { 
    display: flex; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    width: 100%;
}

.testimonials-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.testimonial-card { 
    background: var(--white); 
    padding: 45px; 
    border-radius: 12px; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); 
    border-top: 5px solid var(--amber); 
    
    /* Forces one card at a time */
    flex: 0 0 100%; 
    width: 100%;
    box-sizing: border-box;
    scroll-snap-align: center; 
}

.testimonial-stars {
    color: var(--amber);
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-card p { 
    font-style: italic; 
    color: var(--charcoal); 
    margin-bottom: 25px; 
    line-height: 1.8;
}

.testimonial-author { 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 1px; 
    color: var(--deep-slate);
}

.testimonial-location { 
    display: block; 
    font-weight: 400; 
    color: var(--text-dim); 
    font-size: 0.75rem; 
    margin-top: 5px;
}

/* Subtle Arrow Buttons */
.carousel-btn {
    background: transparent; 
    border: none; 
    color: var(--text-dim); /* Subtle grey color */
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.5; /* Keeps them faded out slightly */
}

.carousel-btn:hover {
    opacity: 1; /* Brightens up slightly when the mouse touches them */
    color: var(--charcoal); 
}

.prev-btn { left: -50px; }
.next-btn { right: -50px; }

/* Adjust arrow placement for mobile screens */
@media (max-width: 950px) {
    .prev-btn { left: -25px; }
    .next-btn { right: -25px; }
    .testimonial-card { padding: 40px 25px; } 
}

.carousel-btn:hover {
    background: var(--amber);
    color: var(--white);
}

.prev-btn { left: -60px; }
.next-btn { right: -60px; }

/* Adjust arrow placement for mobile screens */
@media (max-width: 950px) {
    .prev-btn { left: -10px; }
    .next-btn { right: -10px; }
    .testimonial-card { padding: 40px 25px; } /* Slightly smaller padding on mobile */
}