﻿/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HERO - Clean, no backgrounds */
.hero {
    width: 100%;
    overflow: hidden;
    background: #000;
    color: #fff;
    margin-bottom: 0; /* Ensure no bottom margin */
}

/* SLIDER - Full screen */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 520px;
}

/* SLIDE */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    overflow: hidden;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 1;
    }

/* HD VIDEO - Pure, untouched, full quality */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    /* No filters, no overlays, pure video */
}

/* CONTENT - Minimal, left-aligned, no background */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* TEXT - Simple, left-aligned, no effects */
.hero-text {
    max-width: 650px;
    padding-left: 5%;
}

    .hero-text h1 {
        font-size: 3rem;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 20px;
        color: white;
        /* No effects, just white text */
    }

    .hero-text p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
        color: white;
        max-width: 550px;
    }

/* BUTTONS - Clean, minimal */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    background: transparent;
    border: 1.5px solid white;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
}

    .btn:hover {
        background: white;
        color: black;
    }

/* STATS - Clean at bottom - REDUCED PADDING */
.hero-stats {
    background: #111;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    padding: 15px 20px; /* Reduced from 25px to 15px top/bottom */
    margin: 0; /* Ensure no margin */
    text-align: center;
}

.stat strong {
    font-size: 1.2rem;
    color: white;
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.stat span {
    font-size: 0.85rem;
    opacity: 0.7;
    color: white;
}

/* DESKTOP */
@media (min-width: 1024px) {
    .hero-slider {
        height: 90vh;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text {
        padding-left: 8%;
    }

    .hero-stats {
        grid-template-columns: repeat(4,1fr);
        padding: 15px 50px; /* Reduced from 30px to 15px top/bottom */
    }

    .stat strong {
        font-size: 1.5rem;
    }

    .stat span {
        font-size: 1rem;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .hero-stats {
        padding: 10px 15px; /* Even smaller on mobile if needed */
    }
}

/* ADD THIS - Target the About section that follows hero */
.about-section {
    margin-top: 0; /* Remove any top margin */
    padding-top: 0; /* Remove any top padding */
}

/* OR if you want a minimal gap, use this instead */
/*
.about-section {
    margin-top: 10px;
}
*/

/* If your about section has a different class name, adjust accordingly */
.stats-cards,
.about-us,
.about-container,
.stats-grid {
    margin-top: 0;
    padding-top: 0;
}
