/* Color Palette & Variables */
:root {
    --black: #000000;
    --white: #ffffff;
    --yellow: #ffd700; /* Premium Yellow */
    --light-gray: #f9f9f9;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.section { padding: 80px 0; }
.text-center { text-align: center; }
.bg-alt { background-color: var(--light-gray); }

/* Navigation */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--black);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 50px; }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    margin-left: 25px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.badge {
    background: var(--yellow);
    color: var(--black);
    padding: 5px 15px;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 20px;
}

.hero h1 { font-size: 3.5rem; margin: 20px 0; letter-spacing: -1px; }

.hero-btns { margin-top: 30px; }

.btn {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    margin: 10px;
    transition: 0.3s;
}

.primary-btn { background: var(--yellow); color: var(--black); }
.secondary-btn { background: transparent; color: var(--white); border: 2px solid var(--white); }
.primary-btn:hover { background: var(--white); }

/* About Us */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-title { font-size: 2.2rem; margin-bottom: 20px; color: var(--black); }

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 10px 10px 0px var(--yellow);
}

.stats { display: flex; gap: 30px; margin-top: 30px; }
.stat-item strong { display: block; font-size: 1.5rem; color: var(--black); }

/* Category & Service Cards */
.category-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.category-card, .service-card {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s;
}

.category-card i, .service-card i {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 15px;
}

.category-card:hover { border-bottom: 5px solid var(--yellow); transform: translateY(-5px); }

/* Legal Box */
.legal-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #f0f0f0;
    padding: 40px;
    border-radius: 8px;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.dele {
    color: #ffd700;
}

.footer-logo { height: 60px; filter: brightness(0) invert(1); margin-bottom: 20px; }

.footer-contact h4 { margin-bottom: 15px; color: var(--yellow); }
.footer-contact p { margin-bottom: 10px; font-size: 0.9rem; }

.footer-bottom { border-top: 1px solid #333; padding-top: 20px; font-size: 0.8rem; }

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /* This matches the yellow shadow style from your "About" section image */
    box-shadow: 10px 10px 0px #f4cc3d; 
    height: 250px;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translate(-5px, -5px);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid #f4cc3d;
    padding: 10px 20px;
    background: rgba(0,0,0,0.5);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Center the small intro text */
.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* Stacks vertically on mobile */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid, .footer-grid, .legal-box { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .nav-links { display: none; }
}
