/* ===================== */
/* Global Reset & Base   */
/* ===================== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7fc;
    color: #333;
}

/* ===================== */
/* Section Spacing       */
/* ===================== */
section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* ===================== */
/* Gallery Hover Effect  */
/* ===================== */
.gallery-img {
    transition: transform 0.3s ease;
}

    .gallery-img:hover {
        transform: scale(1.05);
    }

/* Hero Section with Animation */
.hero-section {
    background-image: url('/Content/Video/Boundarywall.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

.hero-overlay {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    flex-direction: column;
}

.hero-text {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpFade 1s ease-out forwards;
}

    .hero-text h1 {
        font-size: 3.5rem;
        font-weight: bold;
        color: #fff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    .hero-text h5 {
        font-size: 1.6rem;
        margin-top: 15px;
        color: #fff;
    }

    .hero-text p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 20px auto 0;
        color: #fff;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    }

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h5 {
        font-size: 1.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}


/* ===================== */
/* Button Hover          */
/* ===================== */
.btn-warning:hover {
    background-color: #e0a800;
    color: #fff;
}

/* ===================== */
/* Section Backgrounds   */
/* ===================== */
section.bg-white,
.bg-white {
    background-color: #ffffff !important;
}

section.bg-light,
.bg-light {
    background-color: #f8f9fa !important;
}

section.bg-warning.bg-opacity-10 {
    background-color: rgba(255, 193, 7, 0.05) !important;
}
