.wp-block-group.alignfull.has-no-padding.has-ast-global-color-6-background-color.has-background.coblocks-animate.mt-0.is-layout-flow.wp-block-group-is-layout-flow.slideInBottom {
    display: none;
}
/* Base Styles */
.bilb-home-wrapper {
    color: #333;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px;
    line-height: 1.6;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Top Hero Section for June 17-20 Promo */
.hero-promo {
    background-color: #f9f6f0;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.hero-promo h2 {
    color: #d18a41;
    font-size: 32px;
    margin-bottom: 10px;
}
.hero-promo p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Video Container Styles */
.video-container {
    max-width: 800px;
    margin: 0 auto 30px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.video-container video {
    width: 100%;
    display: block;
    border-radius: 10px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #00b0ca;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.btn-primary:hover {
    background-color: #000;
	color:#fff;
}
.btn-secondary {
    display: inline-block;
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s ease;
    text-align: center;
}
.btn-secondary:hover {
    background-color: #000;
    color: #fff;
}
.btn-shop {
    display: inline-block;
    background-color: #00b0ca; /* Shop Now button color */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s ease;
    text-align: center;
}
.btn-shop:hover {
    background-color: #000;
    color: #fff;
}

/* Programs Zig-Zag Section */
.programs-section {
    text-align: center;
    margin-bottom: 60px;
}
.programs-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}
.grid-container {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Space between each program row */
}
.program-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: row-reverse; /* 1st, 3rd Card: Text Left, Image Right */
    align-items: stretch;
}
.program-card:nth-child(even) {
    flex-direction: row; /* 2nd, 4th Card: Image Left, Text Right */
}
.program-card:hover {
    transform: translateY(-5px);
}
.program-card img {
    width: 50%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
}
.card-content {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left; 
}
.card-content h3 {
    font-size: 24px;
    color: #d18a41;
    margin-bottom: 15px;
}
.card-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}
.button-group {
    display: flex;
    gap: 15px; /* Learn More ও Shop Now বাটনের মাঝের ফাঁকা জায়গা */
    flex-wrap: wrap;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .program-card,
    .program-card:nth-child(even) {
        flex-direction: column; /* Mobile-এ সবসময় ইমেজ উপরে এবং টেক্সট নিচে থাকবে */
    }
    .program-card img,
    .card-content {
        width: 100%;
    }
    .program-card img {
        min-height: 250px;
    }
    .card-content {
        padding: 25px;
    }
}