
.bb-one-line-desc{
    font-family: Gilroy-SemiBold;
    font-size: 18px;
    margin-top: 15px;
}

.section-four-bb{
    width: 80%;
    margin-bottom: 60px;
}
.bb-h1 {
    text-align: center;
    margin-bottom: 40px;
    font-family: Gilroy-Bold;
    font-weight: bold;
    font-size: 42px;
}

.month-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.month-box {
    background-color: #E3E4DF;
    border-radius: 10px;
    padding: 0px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.month-box:hover {
    transform: translateY(-5px);
}

.month-box h2 {
    padding: 20px;
    margin-top: 0;
    margin-bottom: 0px;
    font-size: 1.3rem;
    background-color:#3E245C;
    color: white;
    border-radius: 5px;
}

.month-box p {
    margin: 0;
    font-size: 0.95rem;
    color: black;
    height: 15vh;
    background-color: #E3E4DF;
}

.bb-h4{
    width: 80%;
    margin-top: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #E3E4DF;
    margin-bottom: 0px;
    color: #D7425E;
    font-family: Gilroy-Bold;
    font-size: 20px;
    text-align: left;
}
.bb-p{
    text-align: left;
    font-size: 18px;
    font-family: Gilroy-Regular;
    width: 80%;
}

/* Responsive for medium and up screens */
@media (min-width: 768px) {
    .month-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*css for popup form*/
.bb-join-btn {
    padding: 12px 25px;
    background-color:#D7425E;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: Gilroy-Regular;
    margin-top: 40px;
    margin-bottom: 30px;
}

.bb-join-btn:hover {
    background-color: #FBBF18;
    color: black;
}

.bb-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 1000;
    padding: 120px 20px 20px;
}

.bb-popup-form {
    background: #fff;
    padding: 25px;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: fadeIn 0.3s ease;
}

.bb-popup-form h2 {
    color: var(--dark-text);
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
}

.bb-popup-form form input {
    width: 95%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
}

.bb-popup-form form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.bb-popup-form form button {
    background-color:#3E245C;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.bb-popup-form form button:hover {
    background-color: #FBBF18;
}

.bb-close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    color: #6b7280;
    cursor: pointer;
}

.bb-close-btn:hover {
    color: var(--dark-text);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .bb-popup-overlay {
        padding: 90px 0px 0px;
    }
    .bb-popup-form {
        padding: 20px;
    }

    .bb-popup-form h2 {
        font-size: 20px;
    }
}


@media (max-width: 768px) {
    .bb-one-line-desc{
        font-family: Gilroy-SemiBold;
        font-size: 16px;
        text-align: left;
        padding-left:15px;
        padding-right: 15px;
        margin-top: 10px;
    }
    .bb-h1 {
        font-size: 28px;
        margin-top: 20px;
        text-align: left;
    }
    .month-container {
        gap: 30px;
    }
    .month-box p {
        height: 11vh;
    }
    .bb-h4 {
        font-size: 18px;
    }
    .section-four-bb{
        width: 90%;
        margin-bottom: 40px;
    }
}

/* start insta reel section css */
.insta-reel-container {
    padding: 20px 100px; /* Adds horizontal space */
    background: #f9f9f9;
    margin: 0;
}

.insta-section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    /*padding-top: 50px;*/
    padding-bottom: 20px;
}

.insta-slider-container {
    flex: 1;
    max-width: 1200px; /* Instead of %, use fixed max width */
    overflow: hidden;
    position: relative;
}

.insta-slider-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
}

.insta-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.insta-video-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    max-width: 100%;
    margin: auto;
}

.insta-slider-wrapper-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0px;
    box-sizing: border-box;
    width: 100%;
    gap: 30px;
}

@media (min-width: 768px) {
    .insta-video-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

.insta-nav-btn-group{
    display: none;
}

@media (max-width: 768px) {
    .insta-reel-container {
        padding: 15px 0px;
    }
    .insta-slider-wrapper {
        padding-bottom: 10px;
    }
    .insta-slider-wrapper-outer {
        gap:0px;
    }
    .insta-nav-btn-group{
        display: block;
        padding-bottom: 20px;
    }
    .btn-mobile-visibility {
        display: none;
    }
    .insta-reel-section{
        width: 95%;
    }
}

@media (min-width: 1024px) {
    .insta-video-slide {
        flex: 0 0 31.7%;
        max-width: 31.7%;
    }
}

.instagram-media {
    width: 100% !important;
    border-radius: 16px;
}

.insta-nav-btn {
    height: auto;
    background-color: #584595;
    color: #fff;
    border: none;
    padding: 10px;
    /*border-radius: 50%;*/
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    position: relative;
}

.insta-nav-btn.left {
    /*left: 10px;*/
}

.insta-nav-btn.right {
    right: 15px;
}

@media (max-width: 768px) {
    .insta-nav-btn {
        font-size: 16px;
        padding: 9px;
    }
    .insta-nav-btn.right {
        right: 0px;
    }
}

/* end insta reel section css */


