/* ==========================================================================
   1. BASE & RESET
   ========================================================================== */
*, *::before, *::after { 
    box-sizing: border-box; 
}

body { 
    font-family: Arial, Helvetica, sans-serif; 
    margin: 0; 
    padding: 0; 
    color: #333; 
    line-height: 1.6; 
}

h1, h2, h3 { 
    margin-top: 0; 
}

.container { 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* ==========================================================================
   2. BUTTONS
   ========================================================================== */
.cta-button { 
    display: inline-block; 
    padding: 14px 30px; 
    background-color: #252525; 
    color: #fff; 
    text-decoration: none; 
    font-weight: bold; 
    border-radius: 4px; 
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover { 
    background-color: #C8F31D; 
    color: #252525; 
}

.cta-button.primary { 
    background-color: #C8F31D; 
    color: #252525; 
}

.cta-button.primary:hover { 
    background-color: #a8cc18; 
}

/* ==========================================================================
   1. HERO BANNER (FIXED BACKGROUND & COLORS)
   ========================================================================== */
.hero-banner { 
    position: relative; 
    background-color: #252525 !important; /* Image na hone par dark background */
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?q=80&w=1600&auto=format&fit=crop') !important; /* Working direct image link */
    background-size: cover !important; 
    background-position: center !important; 
    text-align: center; 
    padding: 140px 0 !important; 
    border-bottom: 5px solid #C8F31D !important; /* Tumhara Brand Color */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75) !important; /* Image ko dark karega */
    z-index: -1;
}

.hero-banner h1 { 
    font-size: 48px !important; 
    color: #ffffff !important; 
    margin-bottom: 15px !important; 
    position: relative;
    z-index: 2;
}

.hero-banner .subtitle { 
    font-size: 20px !important; 
    color: #e0e0e0 !important; 
    max-width: 700px;
    margin: 0 auto 30px auto !important;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   4. 2. SERVICES SECTION (Grid)
   ========================================================================== */
.services-section { 
    padding: 80px 0; 
    text-align: center; 
}

.services-section h2 { 
    font-size: 36px; 
    margin-bottom: 40px; 
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

.service-card { 
    background: #fff; 
    padding: 30px; 
    border: 1px solid #eee; 
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); 
    transition: transform 0.3s; 
}

.service-card:hover { 
    transform: translateY(-5px); 
    border-bottom: 3px solid #C8F31D; 
}

.service-card h3 { 
    color: #252525; 
}

/* ==========================================================================
   5. 3. TESTIMONIALS SECTION (Grid)
   ========================================================================== */
.testimonials-section { 
    background-color: #252525; 
    color: #fff; 
    padding: 80px 0; 
    text-align: center; 
}

.testimonials-section h2 { 
    font-size: 36px; 
    margin-bottom: 40px; 
    color: #C8F31D; 
}

.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
}

.testimonial-card { 
    background: #333; 
    padding: 30px; 
    border-radius: 8px; 
    font-style: italic; 
}

.testimonial-card cite { 
    display: block; 
    margin-top: 15px; 
    font-weight: bold; 
    font-style: normal; 
    color: #C8F31D; 
}

/* ==========================================================================
   6. 4. CONTACT CTA
   ========================================================================== */
.contact-cta { 
    padding: 80px 0; 
    text-align: center; 
    background-color: #f4f6f8; 
}

.contact-cta h2 { 
    font-size: 36px; 
    margin-bottom: 10px; 
}

/* WordPress ke default header text ko hide karna */
.site-header .site-branding,
.site-header .main-navigation {
    display: none !important;
}

/* Page ke top margin ko khatam karna taake banner upar se shuru ho */
body, .site-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ==========================================================================
   7. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 768px) {
    .services-grid { 
        grid-template-columns: 1fr; /* Services stack vertically on mobile */
    }
    
    .testimonials-grid { 
        grid-template-columns: 1fr; /* Testimonials stack vertically on mobile */
    }
    
    .hero-banner h1 { 
        font-size: 36px; 
    }
}