
/* Remove top gap issue */
body {
    margin: 0;
}

/* Fix banner spacing under navbar */
.resource-hero-fix {
    margin-top: 0;
}

.brochure-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.brochure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.brochure-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.brochure-content {
    padding: 22px;
}

.download-btn {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    font-weight: 600;
}



.videos-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

/* FEATURED */
.featured-video {
    padding: 60px 20px;
}

.featured-wrapper iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}

/* CATEGORY */
.video-categories {
    text-align: center;
    margin-bottom: 40px;
}

.video-categories button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    background: #eee;
    border-radius: 20px;
    cursor: pointer;
}

.video-categories .active {
    background: #007bff;
    color: white;
}

/* GRID */
.video-grid .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.video-card {
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.video-card iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

.video-card h4 {
    margin-top: 10px;
}

/* CTA */
.video-cta {
    background: #0b1c3d;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.btn-demo {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #ff3c00;
    color: white;
    border-radius: 30px;
    text-decoration: none;
}

.videos-hero h1,
.videos-hero p {
    color: #ffffff !important;
    position: relative;
    z-index: 2;
}
.videos-hero {
    position: relative;
    background: linear-gradient(135deg, #0b1c3d, #1e3a8a);
    color: white;
    padding: 80px 20px; /* 🔥 ADD TOP SPACE */
    text-align: center;
    overflow: hidden;
}

.videos-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4); /* dark overlay */
    z-index: 0;
}

.videos-hero .container {
    position: relative;
    z-index: 2;
}

.video-cta h2,
.video-cta p {
    color: #ffffff !important;
}
