/* ===== Hero Section ===== */
.hero-single {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.hero-single .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

/* Overlay & Caption */
.hero-single .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: none; /* removed background */
}

.hero-single .h-hero-content {
    max-width: 900px;
    z-index: 2;
    background: none; /* removed box */
    padding: 0;        /* removed extra padding */
    border-radius: 0;  /* removed rounding */
    box-shadow: none;  /* removed shadow */
}

.hero-single .hero-sub {
    color: #FF0000;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 20px;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ff0000, #ff9900);
    margin: 15px auto 25px;
    border-radius: 5px;
}

.hero-single .hero-text {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons a {
    margin: 5px;
    position: relative;
    overflow: hidden;
}

.hero-buttons a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.4s;
}

.hero-buttons a:hover::after {
    left: 0;
}

.hero-tagline {
    margin-top: 30px;
    color: #ff3b3b;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 26px;
}

/* Particles behind overlay */
#particles-js {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

/* ===== Waves ===== */



/* ===== Mobile Adjustments ===== */
@media (max-width: 768px) {
    .hero-single { height: 700px; }
    .hero-single .hero-text { font-size: 16px; }
    .hero-single .hero-tagline { font-size: 18px; }
    .hero-single .h-hero-content { padding: 0; }
   
}