/*
Theme Name: land-excavator Child
Template: land-excavator
Description: Child theme for Astra
Author: Your Name
Version: 1.0
*/
/* 
 * Land Excavator - Homepage Styles
 * Primary Color: #ec1c24
 * Supporting colors: Black, White, Light Grey, Off-white
 * Modern, professional, and responsive design
 */

/* ===== GLOBAL RESETS & TYPOGRAPHY ===== */
:root {
    --primary: #ec1c24;
    --primary-dark: #c9141b;
    --primary-light: #f0454c;
    --dark: #1a1a1a;
    --dark-soft: #2c2c2c;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --off-white: #fef9f9;
    --white: #ffffff;
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}
.footer-col img{
	max-width: 250px!important;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section common styling */
section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--gray-light);
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 1.25rem auto 0;
    border-radius: 3px;
}

p {
    color: var(--gray);
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary);
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 28, 36, 0.2);
}

/* ===== HERO SECTION ===== */
/* ===== HERO SECTION - Modern Left-Aligned Design ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Enhanced Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Optional: Animated gradient overlay for depth */
@keyframes gradientShift {
    0% {
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.85) 0%, 
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.4) 100%);
    }
    100% {
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.8) 0%, 
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.35) 100%);
    }
}

/* Container */
.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 24px;
}

/* Hero Content */
.hero-content {
    max-width: 700px;
    animation: fadeInUp 0.8s ease;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(236, 28, 36, 0.15);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(236, 28, 36, 0.3);
    animation: fadeInUp 0.8s ease 0.1s both;
}

/* Hero Heading */
.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Hero Subheading */
.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    box-shadow: 0 5px 15px rgba(236, 28, 36, 0.3);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

/* Outline Light Button */
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    backdrop-filter: blur(10px);
	color: #fff !important;
}

.btn-outline-light svg {
    transition: transform 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-light:hover svg {
    transform: rotate(90deg);
}

/* Hero Statistics */
.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease 0.5s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 2;
    animation: bounce 2s infinite;
    transition: color 0.3s ease;
}

.hero-scroll-indicator:hover {
    color: var(--primary);
}

.hero-scroll-indicator svg {
    animation: scrollArrow 1.5s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scrollArrow {
    0% {
        transform: translateY(-5px);
        opacity: 0;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(5px);
        opacity: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative Elements */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    pointer-events: none;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 90vh;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 85vh;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-badge {
        margin: 0 auto 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        text-align: center;
    }
    
    .stat-item {
        text-align: center;
        flex: 1;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        text-align: center;
    }
}

/* Optional: Add floating animation to content */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease, float 6s ease-in-out infinite;
    animation-delay: 0s, 1s;
}

/* Add smooth transition for background */
.hero-section {
    transition: background-image 0.5s ease;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--white);
}

.services-section h2:after {
    margin-bottom: 0;
}

.services-section > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.service-box {
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    border-radius: 16px;
    margin-bottom: 30px;
    background: var(--white);
    border: 1px solid #eef2f6;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-box:hover img {
    transform: scale(1.05);
}

.service-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--off-white);
}

.about-section .row {
    align-items: center;
    gap: 2rem;
}

.about-section .col-md-6 {
    flex: 1;
    min-width: 280px;
}

.about-section img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-section img:hover {
    transform: scale(1.02);
}

.about-section h2 {
    text-align: left;
}

.about-section h2:after {
    margin: 1rem 0 0 0;
}

.about-section > div > div > div:last-child > div {
    margin: 1.5rem 0;
    color: var(--dark-soft);
    font-size: 1rem;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section ul li {
    padding: 0.6rem 0;
    position: relative;
    padding-left: 28px;
    font-weight: 500;
}

.about-section ul li:before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: var(--white);
    text-align: center;
}

.why-section .col-md-3 {
    padding: 20px 15px;
    transition: var(--transition);
    border-radius: 16px;
}

.why-section .col-md-3:hover {
    background: var(--gray-light);
}

.why-section img {
    width: 55px;
    height: 55px;
    margin-bottom: 1.25rem;
    filter: brightness(0) saturate(100%) invert(23%) sepia(87%) saturate(4000%) hue-rotate(345deg) brightness(95%) contrast(92%);
    transition: var(--transition);
}

.why-section .col-md-3:hover img {
    transform: translateY(-5px);
}

.why-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

/* ===== PROCESS SECTION ===== */
/* ===== PROCESS SECTION - MODERN STEP DESIGN ===== */
.process-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Optional: Decorative background element */
.process-section:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236,28,36,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.process-section:after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236,28,36,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.process-section h2 {
    color: var(--white);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.process-section h2:after {
    background: var(--primary);
    width: 80px;
    height: 4px;
}

.process-section .container {
    position: relative;
    z-index: 2;
}

.process-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

/* Step Card Styles */
.process-step {
    flex: 1;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(236, 28, 36, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Step Number Badge */
.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(236, 28, 36, 0.3);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(236, 28, 36, 0.4);
}

/* Optional: Pulse animation on hover */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 28, 36, 0.7);
    }
    100% {
        box-shadow: 0 0 0 15px rgba(236, 28, 36, 0);
    }
}

.process-step:hover .step-number {
    animation: pulse 1s ease;
}

/* Step Title */
.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.process-step h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.process-step:hover h3:after {
    width: 60px;
}

/* Step Description */
.process-step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Connector Lines - for desktop */
@media (min-width: 992px) {
    .process-step {
        position: relative;
    }
    
    /* Horizontal connector between steps */
    .process-step:not(:last-child):after {
        content: '';
        position: absolute;
        right: -2rem;
        top: 50%;
        transform: translateY(-50%);
        width: 2rem;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), transparent);
        pointer-events: none;
    }
    
    /* Optional: Arrow icon instead of line */
    /* .process-step:not(:last-child):after {
        content: '→';
        position: absolute;
        right: -1.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary);
        font-size: 1.5rem;
        font-weight: bold;
        background: none;
        width: auto;
        height: auto;
    } */
}

/* Alternative: Vertical connector for tablet/mobile */
@media (min-width: 768px) and (max-width: 991px) {
    .process-step {
        flex: 0 0 calc(50% - 2rem);
        min-width: calc(50% - 2rem);
    }
    
    .process-step:not(:last-child):after {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-step {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* Optional: Add a subtle icon/emoji indicator */
.process-step .step-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: none; /* Hidden by default, can be enabled if needed */
}

/* Step Variation - Different colors for each step (optional) */
.process-step:nth-child(1) .step-number {
    background: var(--primary);
}
.process-step:nth-child(2) .step-number {
    background: #e67e22;
}
.process-step:nth-child(3) .step-number {
    background: #2ecc71;
}
.process-step:nth-child(4) .step-number {
    background: #3498db;
}

/* Alternative: Keep all steps with primary color but add gradient */
/* .step-number {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
} */

/* Timeline Style Variation - Uncomment to use timeline layout */
/*
.process-section .row {
    position: relative;
}

.process-section .row:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary), transparent);
}

@media (max-width: 768px) {
    .process-section .row:before {
        display: none;
    }
}
*/

/* Step Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step {
    animation: countUp 0.6s ease backwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

/* Responsive adjustments for step cards */
@media (max-width: 768px) {
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .process-step h3 {
        font-size: 1.3rem;
    }
}

/* Optional: Add a subtle border glow effect on hover */
.process-step:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-image: linear-gradient(135deg, var(--primary), transparent) 1;
}

/* For extra modern touch - gradient text for numbers (alternative) */
/* .step-number {
    background: linear-gradient(135deg, var(--primary), #ff6b6b);
} */

/* ===== FAQ SECTION ===== */
/* ===== FAQ SECTION - Enhanced Accordion Design (Image as inline element) ===== */
.faq-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements (subtle, not overlapping with next section) */
.faq-section:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236,28,36,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section:after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(236,28,36,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Image on left side (default) */
.faq-wrapper:not(.image-right) .faq-image {
    order: 1;
}

.faq-wrapper:not(.image-right) .faq-content {
    order: 2;
}

/* Image on right side */
.faq-wrapper.image-right .faq-image {
    order: 2;
}

.faq-wrapper.image-right .faq-content {
    order: 1;
}

/* FAQ Image Section */
.faq-image {
    flex: 0 0 45%;
    position: relative;
}

.faq-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.faq-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* FAQ Content Section */
.faq-content {
    flex: 1;
}

.faq-content h2 {
    text-align: left;
    margin-bottom: 0.5rem;
}

.faq-content h2:after {
    margin: 1rem 0 0 0;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2f6;
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s ease;
    flex: 1;
}

.faq-item.active .faq-question h3 {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-light);
    transition: all 0.3s ease;
    color: var(--primary);
}

.faq-item:hover .faq-icon {
    background: rgba(236, 28, 36, 0.1);
    transform: rotate(90deg);
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

/* Icon SVG styles */
.plus-icon, .minus-icon {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.minus-icon {
    display: none;
}

.faq-item.active .plus-icon {
    display: none;
}

.faq-item.active .minus-icon {
    display: block;
}

/* Answer section */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    color: var(--gray);
    line-height: 1.7;
    border-top: 1px solid #eef2f6;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust based on content */
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .faq-image {
        flex: 0 0 auto;
        max-width: 500px;
        margin: 0 auto;
        order: 1 !important;
    }
    
    .faq-content {
        order: 2 !important;
    }
    
    .faq-content h2 {
        text-align: center;
    }
    
    .faq-content h2:after {
        margin: 1rem auto 0;
    }
    
    .faq-subtitle {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem 1rem;
    }
}

/* Animation for answer */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer p {
    animation: slideDown 0.3s ease;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    padding: 100px 0;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.75);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.8rem;
}

.cta-section h2:after {
    background: var(--primary);
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.cta-section .btn {
    background: var(--primary);
    border-color: var(--white);
    font-size: 1.1rem;
    padding: 16px 42px;
}

.cta-section .btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .service-box, .why-section .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .service-box, .why-section .col-md-3, .process-section .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .about-section .row {
        flex-direction: column;
    }
    
    .about-section h2 {
        text-align: center;
        margin-top: 2rem;
    }
    
    .about-section h2:after {
        margin: 1rem auto 0;
    }
    
    .process-section .col-md-3:not(:last-child):after {
        content: '↓';
        right: 50%;
        bottom: -20px;
        top: auto;
        font-size: 1.5rem;
    }
    
    .faq-box {
        padding: 1.2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 28px;
    }
    
    .hero-section .btn {
        padding: 12px 28px;
    }
    
    .service-box {
        padding: 20px;
    }
}

/* Additional utility for columns */
.col-md-3, .col-md-4, .col-md-6 {
    padding: 0 15px;
    box-sizing: border-box;
}

.col-md-3 { flex: 0 0 25%; max-width: 25%; }
.col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }

@media (max-width: 992px) {
    .col-md-3, .col-md-4, .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .col-md-3, .col-md-4, .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus, a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}


/* ===== BLOG SECTION - Dynamic Posts Grid ===== */
.blog-section {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background element */
.blog-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236,28,36,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Blog Header */
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: var(--dark);
}

.blog-header h2:after {
    margin: 1rem auto 0;
}

.blog-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Blog Card Styles */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Blog Card Image */
.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

/* Category Badge */
.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.blog-category a {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.blog-category a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Blog Card Content */
.blog-card-content {
    padding: 1.5rem;
}

/* Blog Meta Information */
.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-date, .blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray);
}

.blog-date svg, .blog-read-time svg {
    color: var(--primary);
}

/* Blog Card Title */
.blog-card-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary);
}

/* Blog Card Excerpt */
.blog-card-excerpt {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Read More Button */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-read-more svg {
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.blog-read-more:hover svg {
    transform: translateX(5px);
}

/* Blog Footer - Read All Button */
.blog-footer {
    text-align: center;
    margin-top: 2rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline svg {
    transition: transform 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 28, 36, 0.2);
}

.btn-outline:hover svg {
    transform: translateX(5px);
}

/* No Posts Message */
.blog-no-posts {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    grid-column: 1 / -1;
}

.blog-no-posts p {
    color: var(--gray);
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-header h2 {
        font-size: 2rem;
    }
    
    .blog-header p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card-content {
        padding: 1.25rem;
    }
    
    .blog-card-title {
        font-size: 1.1rem;
    }
    
    .blog-meta {
        gap: 1rem;
    }
    
    .blog-date, .blog-read-time {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-header h2 {
        font-size: 1.75rem;
    }
    
    .blog-card-content {
        padding: 1rem;
    }
    
    .btn-outline {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* Animation for blog cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeInUp 0.6s ease backwards;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }


/*** About Us page ***/

/* ===== ABOUT US PAGE - Complete Styles ===== */


/* Section Common Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-header h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 1rem auto 0;
    border-radius: 3px;
}

.section-header p {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--gray);
    font-size: 1.1rem;
}

/* ===== BANNER SECTION ===== */
.about-banner {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.banner-badge {
    display: inline-block;
    background: rgba(236, 28, 36, 0.2);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(236, 28, 36, 0.3);
}

.banner-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.banner-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ===== COMPANY INTRO ===== */
.about-company {
    background: var(--white);
}

.company-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.company-content {
    flex: 1;
}

.company-content .section-subtitle {
    margin-bottom: 1rem;
}

.company-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    position: relative;
}

.company-content h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-top: 1rem;
    border-radius: 3px;
}

.company-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.company-description p {
    margin-bottom: 1rem;
}

.company-signature {
    margin: 1.5rem 0 1rem;
}

.company-signature img {
    max-width: 150px;
    height: auto;
}

.company-ceo {
    margin-top: 1rem;
}

.company-ceo strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
}

.company-ceo span {
    font-size: 0.9rem;
    color: var(--gray);
}

.company-image {
    flex: 1;
    position: relative;
}

.company-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.company-image img:hover {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.experience-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== MISSION VISION ===== */
.mission-vision {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.mv-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mv-card:hover:before {
    transform: scaleX(1);
}

.mv-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.mv-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mv-list {
    list-style: none;
    padding: 0;
}

.mv-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--gray);
}

.mv-list li:before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ===== WHY TRUST US ===== */
.about-why {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid #eef2f6;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(236, 28, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: var(--white);
}

.why-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.why-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== STATS SECTION ===== */
.about-stats {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    position: relative;
    overflow: hidden;
}

.about-stats:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236,28,36,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== TEAM SECTION ===== */
.about-team {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.social-link {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.team-designation {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-bio {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-footer {
    text-align: center;
    margin-top: 3rem;
}

/* ===== CTA SECTION ===== */
.about-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.75) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 16px 42px;
    font-size: 1.1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .stats-wrapper {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .company-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -20px;
    }
    
    .experience-number {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    
    .mv-card {
        padding: 1.5rem;
    }
    
    .team-info {
        padding: 1rem;
    }
    
    .btn-large {
        padding: 12px 32px;
        font-size: 1rem;
    }
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    animation: countUp 0.6s ease backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== SERVICES PAGE - Complete Styles ===== */

/* ===== BANNER SECTION ===== */
.services-banner {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.services-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}

.services-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.banner-badge {
    display: inline-block;
    background: rgba(236, 28, 36, 0.2);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(236, 28, 36, 0.3);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.banner-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.banner-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* ===== SERVICES LIST SECTION ===== */
.services-list-section {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 80px 0;
    position: relative;
}

.services-list-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(236,28,36,0.03) 0%, transparent 100%);
    pointer-events: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 1rem auto 0;
    border-radius: 3px;
}

.section-header p {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef2f6;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover:before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

/* Featured Service Card */
.service-card.featured-service {
    border: 2px solid rgba(236, 28, 36, 0.2);
    background: linear-gradient(135deg, var(--white) 0%, rgba(236, 28, 36, 0.02) 100%);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* Service Icon */
.dashicons{
	width: auto;
	height: auto;
}
.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: rgba(236, 28, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--primary);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: var(--transition);
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-icon i {
    font-size: 3rem;
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

/* Service Title */
.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--primary);
}

/* Service Description */
.service-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Service Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.service-btn svg {
    transition: transform 0.3s ease;
}

.service-btn:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
    border-bottom-color: var(--primary);
}

.service-btn:hover svg {
    transform: translateX(5px);
}

/* Services Footer CTA */
.services-footer {
    margin-top: 2rem;
    text-align: center;
}

.services-cta {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236,28,36,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.services-cta h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary);
    position: relative;
    z-index: 2;
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

/* No Services Message */
.no-services {
    text-align: center;
    padding: 4rem;
    background: var(--white);
    border-radius: 20px;
    grid-column: 1 / -1;
}

.no-services p {
    color: var(--gray);
    font-size: 1.1rem;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger Animation for Cards */
.service-card {
    animation: fadeInUp 0.6s ease backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .services-list-section {
        padding: 60px 0;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-banner {
        min-height: 50vh;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon img,
    .service-icon i {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .services-cta {
        padding: 2rem;
    }
    
    .services-cta h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .services-list-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* Optional: Add loading animation for icons */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.service-card:hover .service-icon {
    animation: iconPulse 0.6s ease;
}

/* Gradient Border Effect for Featured Cards */
.featured-service {
    position: relative;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--primary), var(--primary-light)) border-box;
    border: 2px solid transparent;
}

/* Hover Effect for Cards with Shadow */
.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 2px rgba(236, 28, 36, 0.1);
}

/* ===== QUALITY COMMITMENT SECTION ===== */
.quality-commitment-section {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    overflow: hidden;
}

/* Background Overlay */
.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.92) 0%, 
        rgba(0, 0, 0, 0.88) 100%);
    z-index: 1;
}

/* If using solid black background instead of image */
.quality-commitment-section.solid-bg {
    background: var(--dark);
}

.quality-commitment-section .container {
    position: relative;
    z-index: 2;
}

.commitment-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.commitment-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.commitment-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(236, 28, 36, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.commitment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(236, 28, 36, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.commitment-item:hover .commitment-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.commitment-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.commitment-item:hover .commitment-icon .dashicons {
    color: var(--white);
}

.commitment-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.commitment-item h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.commitment-item:hover h3:after {
    width: 60px;
}

.commitment-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Optional: Add floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.commitment-item:hover {
    animation: float 0.6s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .quality-commitment-section {
        padding: 60px 0;
    }
    
    .commitment-item {
        padding: 1.5rem;
    }
    
    .commitment-icon {
        width: 70px;
        height: 70px;
    }
    
    .commitment-icon .dashicons {
        font-size: 35px;
        width: 35px;
        height: 35px;
    }
    
    .commitment-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .quality-commitment-section {
        padding: 50px 0;
        background-attachment: scroll;
    }
    
    .commitment-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .commitment-item {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .commitment-icon {
        width: 60px;
        height: 60px;
    }
    
    .commitment-icon .dashicons {
        font-size: 30px;
        width: 30px;
        height: 30px;
    }
    
    .commitment-item h3 {
        font-size: 1.1rem;
    }
    
    .commitment-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .quality-commitment-section {
        padding: 40px 0;
    }
    
    .commitment-item {
        padding: 1.2rem;
    }
}

/* Optional: Add decorative element */
.quality-commitment-section:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 28, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.quality-commitment-section:after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 28, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/*** CALL ICON ***/
.sticky-call-btn {
    position: fixed;
    bottom: 82px;
    right: 13px;
    
    width: 60px;
    height: 60px;
    
    background: #ec1c24;
    color: #fff;
    
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    text-decoration: none;
    
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    
    z-index: 9999;
    
    transition: all 0.3s ease;
}

.sticky-call-btn:hover {
    transform: scale(1.08);
    background: #ec1c24;
	color: #ffffff;
}

.sticky-call-btn .dashicons {
    font-size: 26px;
    width: 26px;
    height: 26px;
}



@media(max-width:768px){
    .sticky-call-btn {
        width: 55px;
        height: 55px;
        bottom: 75px;
    	right: 14px;
    }
}
/*** Other edits ***/
 section.footer-top h2{
	 background-color: transparent;
	 text-align: left;
 }
 .footer-top h2::after {
  margin: 1.25rem auto 0 1.25rem;
}
section:nth-child(2n) {
  background-color: transparent;
}
section.footer-top .widget {
  margin-bottom: 0;
}
.footer-top section, .footer-top .menu-important-links-container {
  padding: 14px 0;
}
.text-white{
	color: #ffffff!important;
}
.header-menu-box {
	background: #ffffff;
}
.custom-logo-link img, footer img {
  border-radius: 5px;
}

@media only screen and (max-width: 767px){
	.nav-menu-header-left, .nav-menu-header-center{
		width: 50%;
		float: left;
	}
	#site-navigation{
		text-align: right;
	}
	.header-menu-box {
		padding-top: 7px;
		padding-bottom: 7px;
	}
	.nav-menu-header-right, .header-info-box{
		display: none!important;
	}
	.menu-main-menu-container {
		position: absolute;
		right: 7px;
		text-align: left;
		z-index: 9;
	  }
	body #masthead .header-menu-box {
		position: fixed !important;
		width: 100%;
		height: auto !important;
	  }
	 .hero-section {
		padding-top: 7em;
	  }

}
/* ===== HELP CENTER CTA ===== */
.help-center-cta {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    margin-top: 2rem;
	margin-bottom: 2em;
    position: relative;
    overflow: hidden;
}

.help-center-cta:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 28, 36, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.help-center-cta:after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 28, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(236, 28, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.cta-button:hover svg {
    transform: translateX(5px);
}
