/* ==========================================================================/* ==========================================================================
   GLOBAL STANDARDIZED SLIDERS (SWIPER)
   ========================================================================== */

/* 1. Main Banner Swiper */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

/* Spacing Utility Class */
.spacing {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.p-0 {
    padding: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.banner-box {
    position: absolute;
    z-index: 9;
    left: 0px;
    bottom: 0px;
    right: 0;
    margin: auto;
    max-width: 900px;
    border-radius: 0;
}

.banner-box .text-box {
    border-radius: 0;
    text-align: center;
    background: transparent;
    max-width: 100%;
    display: flex;
    flex-flow: column;
    color: #fff;

}

.banner-box .text-box span,
.banner-box .text-box b,
.banner-box .text-box p {
    color: #fff;
}

.banner-box .banner-heading {
    font-size: clamp(20px, 4vw, 40px);
}

.banner-swiper {
    width: 100%;
    height: 90vh;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .banner-swiper {
        height: 60vh;
    }
}

.banner-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #000, transparent, transparent);
    z-index: 1;
}

.banner-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    object-position: center top;
}

.banner-swiper .button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
}

/* Active Slide Animations */
.banner-swiper .swiper-slide-active h1,
.banner-swiper .swiper-slide-active p,
.banner-swiper .swiper-slide-active .button-group {
    opacity: 1;
    transform: translateY(0);
}

/* Override style.css white box */
.banner-swiper .text-box {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-width: 100% !important;
    color: #fff !important;
}

.banner-swiper .text-box h1 {
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.banner-swiper .text-box p {
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.banner-swiper .button-group .theme-btn {
    padding: 18px 35px;
    font-size: 16px;
    border-radius: 50px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-swiper .button-group .theme-btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Custom Controls */
.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev,
.teacher-swiper .swiper-button-next,
.teacher-swiper .swiper-button-prev,
.retreat-swiper .swiper-button-next,
.retreat-swiper .swiper-button-prev {
    display: none;
}


.banner-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.banner-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 576px) {
    .banner-swiper .button-group {
        flex-direction: column;
        align-items: center;
    }
}

/* 2. Why Choose Us Swiper */
.choose-grid {
    position: relative;
    padding: 40px 0;
    background: transparent;
}

.choose-swiper {
    padding-bottom: 60px !important;
}

.choose-swiper .swiper-wrapper {
    display: flex !important;
    align-items: stretch !important;
}

.choose-slide {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex !important;
    flex-direction: column;
    height: auto !important;
    /* Let flex stretch handle it */
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.choose-slide .ch-cont {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.choose-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(211, 97, 50, 0.1);
    border-color: var(--primary-color);
}

.choose-slide .ch-img {
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
}

.choose-slide .ch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choose-slide .ch-cont h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.choose-slide .ch-cont p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Custom Controls for Choose Swiper */
.choose-swiper .swiper-button-next,
.choose-swiper .swiper-button-prev {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.choose-swiper .swiper-button-next:after,
.choose-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.choose-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}



.testimonial-swiper .card-slide {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    opacity: 0.5;
    transform: scale(0.9);
}

.testimonial-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(211, 97, 50, 0.15);
    border-color: rgba(211, 97, 50, 0.1);
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
    display: none;
}

.testimonial-swiper .quote-icon {
    font-size: 50px;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.2;
}

.testimonial-swiper .review-text {
    font-size: 18px;
    color: #444;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-swiper .review-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.testimonial-swiper .review-footer img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-swiper .review-info strong {
    display: block;
    font-size: 17px;
    color: #222;
    font-weight: 700;
}

.testimonial-swiper .review-info span {
    font-size: 14px;
    color: #777;
    display: block;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

/* 4. Teachers Swiper */
.teacher-swiper {
    padding: 30px 0 60px !important;
}

.teacher-swiper .swiper-wrapper {
    display: flex !important;
    align-items: stretch !important;
}

.teacher-slide {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    text-align: center;
    display: flex !important;
    flex-direction: column;
    height: auto !important;
    padding: 10px !important;
    transition: all 0.3s ease;
}

.teacher-slide img {
    width: 100%;
    height: 380px !important;
    object-fit: cover;
    border: 1.5px solid var(--primary-color);
    padding: 8px;
    background: #fff;
    transition: all 0.4s ease;
    box-sizing: border-box;
    /* Fix width overflow */
    display: block;
    /* Remove bottom whitespace */
}

.teacher-slide:hover {
    transform: translateY(-5px);
}

.teacher-slide:hover img {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(211, 97, 50, 0.1);
}

.teacher-info {
    padding: 0 !important;
    position: relative;
    z-index: 2;
}

.teacher-info h3 {
    background: var(--primary-color);
    color: #fff !important;
    padding: 14px 10px;
    margin: 0 !important;
    font-size: clamp(14px, 1.2vw, 17px) !important;
    font-weight: 700;
    text-transform: capitalize;
}

.teacher-info p {
    background: #fff;
    border: 1.5px solid var(--primary-color);
    border-top: none;
    color: #444 !important;
    padding: 12px 10px;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    text-transform: none !important;
    letter-spacing: 0 !important;
}


.teacher-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* 5. Retreats Section Swiper */

.site-retreats {
    background: linear-gradient(135deg, #fdf8f7 0%, #fff 100%);
    padding: 100px 0;
    overflow: hidden;
}

.site-retreats .container {
    overflow: hidden;
}

.site-retreats .section-header {
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.site-retreats .section-desc {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
    line-height: 1.7;
}

/* Swiper Container */
.retreat-swiper {
    padding: 0px 0px 40px !important;
    overflow: visible !important;
    margin: 0 auto !important;
}

/* Horizontal Card Design */
.retreat-horizontal-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
    opacity: 0.8;
}

.swiper-slide-active .retreat-horizontal-card {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 15px 40px rgba(235, 94, 64, 0.1);
}

/* Overlapping Image */
.retreat-card-image {
    flex: 0 0 320px;
    position: relative;
    margin-left: -20px;
    margin-top: -20px;
    margin-bottom: -20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.retreat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.swiper-slide-active .retreat-card-image img {
    transform: scale(1.05);
}

.retreat-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color, #eb5e40);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Area */
.retreat-card-content {
    flex: 1;
    padding: clamp(20px, 3vw, 40px);
    display: flex;
    flex-direction: column;
}

.retreat-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.retreat-card-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Pricing Table */
.retreat-table-wrap {
    background: #fcfcfc;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.retreat-pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.retreat-pricing-table th {
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    padding-bottom: 8px;
    border-bottom: 1px solid #f5f5f5;
}

.retreat-pricing-table td {
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    border-bottom: 1px solid #f9f9f9;
}

.retreat-pricing-table td:last-child,
.retreat-pricing-table th:last-child {
    text-align: right;
}

.retreat-pricing-table td:nth-child(2),
.retreat-pricing-table td:nth-child(3) {
    color: var(--primary-color, #eb5e40);
}

/* Actions */
.retreat-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.retreat-actions .theme-btn,
.retreat-actions .theme-btn-outline {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
}


.retreat-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.retreat-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color, #eb5e40);
    width: 30px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 1100px) {
    .retreat-horizontal-card {
        max-width: 85%;
    }
}

@media (max-width: 900px) {
    .retreat-horizontal-card {
        flex-direction: column;
        max-width: 500px;
        margin-top: 50px;
    }

    .retreat-card-image {
        flex: 0 0 300px;
        margin: -40px auto 0;
        width: calc(100% - 40px);
    }

    .retreat-card-content h3 {
        font-size: clamp(20px, 4vw, 28px);
    }
}

@media (max-width: 600px) {
    .site-retreats {
        padding: 60px 0;
    }

    .retreat-horizontal-card {
        max-width: 95%;
    }

    .retreat-actions {
        gap: 10px;
    }
}

/* 5. Highlights Section Redesign */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.highlight-card .card-image {
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
}

.highlight-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px 30px;
    transition: all 0.5s ease;
}

.highlight-card .card-content {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
}

.highlight-card .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    opacity: 0.8;
    transition: all 0.5s ease;
}

.highlight-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
    transition: all 0.5s ease;
}

.highlight-card .card-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

/* Hover States */
.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.highlight-card:hover .card-image {
    transform: scale(1.1);
}

.highlight-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(211, 97, 50, 0.95) 0%, rgba(211, 97, 50, 0.4) 100%);
}

.highlight-card:hover .card-content {
    transform: translateY(0);
}

.highlight-card:hover .card-icon {
    transform: scale(1.1);
    opacity: 1;
}

.highlight-card:hover p,
.highlight-card:hover .card-link {
    opacity: 1;
}

.highlight-card .card-link:hover {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .highlight-card {
        height: 320px;
    }

    .highlight-card .card-content {
        transform: translateY(0);
    }

    .highlight-card p,
    .highlight-card .card-link {
        opacity: 1;
    }
}

.bg-alt,
.bg {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.bg {
    background: transparent !important;
}

.bg-white {
    background: #fff !important;
}

.bg-alt {
    background: var(--bg-light);
}

.bg-alt::before,
.bg::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: url(../img/bg-mandala.webp) no-repeat;
    background-size: contain;
    z-index: -1;
    opacity: 0.2;
    bottom: -200px;

}

.bg-alt::before {
    right: -250px;
    background-position: left bottom;

}

.bg::before {
    left: -250px;
    background-position: right bottom;
}

.blog-wrapper .blog-card {
    width: 100%;
    background: var(--bg-light);
    padding: 0;
    border-radius: 0;
    height: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.blog-wrapper .blog-card img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 18rem;
    border-radius: 0;
}

.blog-card-wrap {
    margin: 20px 0;
}

.blog-wrapper .blog-card a {
    padding: 12px 15px;
    display: block;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
}

.faq-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.faq-item {
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    text-align: left;
    padding: 18px 48px 18px 20px;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    color: var(--black);
    position: relative;
}

/* Chevron icon */
.faq-toggle::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-toggle::after {
    transform: translateY(-50%) rotate(-135deg);
}

.faq-content {
    display: none;
    padding: 0 20px 20px;
    font-family: var(--font-body);
    color: #555;
    line-height: 1.7;
}

.faq-item.is-open .faq-content {
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
}



/* Why Choose Section 2 - Video Background Redesign (Compact) */
.why-choose-section2 {
    position: relative;
    padding: 0 !important;
    min-height: 500px;
    /* Reduced from 85vh for compactness */
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.video-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Stronger gradient at bottom for text visibility in compact area */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.choose-content-bottom {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: clamp(100px, 20vw, 300px);
}

.content-wrapper-width {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.choose-content-bottom .main-head {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    /* Slightly smaller typography */
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.choose-content-bottom .main-head::after {
    display: none;
}

.choose-content-bottom p {
    /* More compact text */
    line-height: 1.6;
    color: #f1f5f9;
    margin-bottom: 10px !important;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Limit visible text lines for compactness */
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: clamp(14px, 1.4vw, 15px) !important;
}

.choose-content-bottom b {
    color: #fff;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .why-choose-section2 {
        min-height: 400px;
    }

    .choose-content-bottom {
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .why-choose-section2 {
        min-height: 350px;
    }

    .choose-content-bottom {
        padding-bottom: 30px;
    }



}

/* Why Choose Section 2 - Video Background Redesign */
.why-choose-section2 {
    position: relative;
    padding: 0 !important;
    /* Full bleed, override typical spacing */
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    /* Align content to bottom */
    overflow: hidden;

}

.video-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 0;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Clear at top, darkening towards bottom for text readability */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.85) 90%);
    z-index: 2;
}

.choose-content-bottom {
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
    padding-top: 100px;
    width: 100%;
    padding: 0 10px;
}

.content-wrapper-width {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.choose-content-bottom .main-head {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    text-align: center;
}

/* Remove the previous underline styling if not desired, or adapt it */
.choose-content-bottom .main-head::after {
    display: none;
}

.choose-content-bottom p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f1f5f9;
    /* Off-white for readability */
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.choose-content-bottom b {
    color: #fff;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .why-choose-section2 {
        min-height: 70vh;
    }

    .choose-content-bottom {
        padding-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .why-choose-section2 {
        min-height: 60vh;
    }

    .choose-content-bottom {
        padding-bottom: 40px;
    }

    .choose-content-bottom p {
        font-size: 1rem;
        display: none;
        /* Optional: Hide long text on mobile if needed, or truncate */
    }

    /* Show only first paragraph on mobile? Or just keep it. Keeping it for now. */
    .choose-content-bottom p {
        display: block;
    }
}



/* Simplified Certificate Section */
.certificate-premium-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.cert-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.premium-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #ff5c5c, transparent);
    margin: 0 20px;
}

.cert-section .heading {
    color: #444;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.cert-section .heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 2px;
    background: var(--primary-color);
}

.cert-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cert-logos img {
    height: 70px;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.cert-logos img:hover {
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .certificate-premium-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 0 10px;
    }

    .premium-divider {
        width: 60%;
        height: 3px;
        background: linear-gradient(to right, transparent, #ec5a5a, transparent);
        margin: 5px 0;
    }

    .cert-section {
        width: 100%;
        padding: 0;
    }

    .cert-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        width: 100%;
    }

    .cert-logos img {
        height: 70px;
        margin: 0 auto;
    }

    .cert-logos img.big-logo {
        grid-column: 1 / -1;
        width: 100%;
        margin-bottom: 5px;
    }
}