.cinzel-font {
    font-family: 'Cinzel Decorative', cursive;
    font-weight: 700;
}

/* Custom Hero Section Styles - Split Layout with Image */
.ymb-hero-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5fcf5 0%, #e8f5e9 100%);
    overflow: hidden;
}

.ymb-hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.ymb-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.ymb-hero-row {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 120px 0 60px 0;
}

/* Left Content Side */
.ymb-hero-content-side {
    flex: 1;
    max-width: 600px;
}

.ymb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.1);
    animation: ymb-float 3s ease-in-out infinite;
}

@keyframes ymb-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.ymb-hero-badge span {
    color: #2e7d32;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ymb-hero-badge i {
    color: #e91e63;
    font-size: 18px;
}

.ymb-hero-main-title {
    font-family: 'Sora', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #1b5e20;
    margin-bottom: 24px;
}

.ymb-hero-highlight {
    position: relative;
    display: inline-block;
    color: #e91e63;
    background: linear-gradient(to right, #e91e63, #d81b60);
    -webkit-background-clip: text;
    background-clip: text;
}

.ymb-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 36px;
    font-weight: 400;
}

.ymb-hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.ymb-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 38px;
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(46, 125, 50, 0.3);
}

.ymb-hero-btn-primary:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(46, 125, 50, 0.4);
}

.ymb-hero-btn-primary i {
    transition: transform 0.3s ease;
}

.ymb-hero-btn-primary:hover i {
    transform: translateX(5px);
}

.ymb-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 38px;
    background: #ffffff;
    color: #2e7d32;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 2px solid #2e7d32;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.15);
}

.ymb-hero-btn-secondary:hover {
    background: #f1f8e9;
    border-color: #1b5e20;
    color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.2);
}

.ymb-hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ymb-hero-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ymb-hero-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ymb-hero-feature-item:hover .ymb-hero-feature-icon {
    background: linear-gradient(135deg, #c8e6c9 0%, #dcedc8 100%);
    transform: scale(1.1);
}

.ymb-hero-feature-icon i {
    font-size: 22px;
    color: #2e7d32;
}

.ymb-hero-feature-text {
    font-size: 16px;
    font-weight: 600;
    color: #1b5e20;
    margin: 0;
}

/* Right Image Side */
.ymb-hero-image-side {
    flex: 1;
    position: relative;
}

.ymb-hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ymb-hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.ymb-hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(27, 94, 32, 0.7) 0%, transparent 100%);
    padding: 40px 30px;
    color: white;
}

.ymb-hero-image-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.ymb-hero-image-overlay p {
    font-size: 15px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Decorative Elements */
.ymb-hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
}

.ymb-hero-decoration-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(233, 30, 99, 0.05) 100%);
    top: 15%;
    right: -60px;
    animation: ymb-pulse 4s ease-in-out infinite;
}

.ymb-hero-decoration-2 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.03) 100%);
    bottom: 10%;
    left: -90px;
    animation: ymb-pulse 5s ease-in-out infinite;
}

@keyframes ymb-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.ymb-hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.ymb-hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #2e7d32;
    transition: all 0.3s ease;
}

.ymb-hero-scroll-indicator a:hover {
    transform: translateY(5px);
}

.ymb-scroll-icon-wrapper {
    width: 30px;
    height: 48px;
    border: 2px solid rgba(46, 125, 50, 0.4);
    border-radius: 20px;
    position: relative;
}

.ymb-scroll-dot {
    width: 5px;
    height: 5px;
    background: #2e7d32;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: ymb-scroll-down 2s infinite;
}

@keyframes ymb-scroll-down {
    0% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 26px;
        opacity: 0.3;
    }

    100% {
        top: 8px;
        opacity: 1;
    }
}

.ymb-scroll-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #2e7d32;
}

/* ============================================
           ABOUT US SECTION - MINIMAL & PROFESSIONAL
        ============================================ */
.ymb-about-section {
    padding: 100px 0;
    background: #ffffff;
}

.ymb-about-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.ymb-about-row {
    display: flex;
    align-items: center;
    gap: 100px;
}

.ymb-about-content {
    flex: 1;
    max-width: 560px;
}

.ymb-section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2e7d32;
    margin-bottom: 16px;
    display: block;
}

.ymb-section-heading {
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
    margin-bottom: 40px;
}

.ymb-section-heading .cinzel-font {
    color: #e91e63;
}

.ymb-section-heading .ymb-section-heading-span {
    color: #e91e63;
}

.ymb-about-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ymb-about-item {
    padding-left: 24px;
    border-left: 3px solid #e8f5e9;
}

.ymb-about-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.ymb-about-item-text {
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    margin: 0;
}

.ymb-about-images {
    flex: 1;
    position: relative;
}

.ymb-about-image-main {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.ymb-about-image-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ============================================
           PROGRAMS SECTION - WITH IMAGES
        ============================================ */
.ymb-programs-section {
    padding: 100px 0;
    background: #fafafa;
}

.ymb-programs-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.ymb-programs-header {
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
}

.ymb-programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ymb-program-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.ymb-program-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.ymb-program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ymb-program-content {
    padding: 32px 28px;
}

.ymb-program-number {
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 16px;
    display: block;
    letter-spacing: 1px;
}

.ymb-program-title {
    font-size: 22px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 14px;
    line-height: 1.3;
}

.ymb-program-title:hover {
    color: #e91e63;
}

.ymb-program-description {
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 24px;
}

.ymb-program-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.ymb-program-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #2e7d32;
}

.ymb-program-detail-item i {
    font-size: 14px;
    width: 16px;
}

/* CTA Card */
.ymb-program-card.ymb-cta-special {
    background: #1b5e20;
    color: white;
    border: none;
    flex-direction: column;
    justify-content: center;
}

.ymb-program-card.ymb-cta-special .ymb-program-content {
    padding: 40px 32px;
}

.ymb-program-card.ymb-cta-special .ymb-program-number {
    color: #a5d6a7;
}

.ymb-program-card.ymb-cta-special .ymb-program-title {
    color: white;
}

.ymb-program-card.ymb-cta-special .ymb-program-description {
    color: rgba(255, 255, 255, 0.9);
}

.ymb-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #1b5e20;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .ymb-hero-row {
        flex-direction: column;
        gap: 40px;
        padding: 80px 0;
    }

    .ymb-hero-content-side {
        max-width: 100%;
        text-align: center;
    }

    .ymb-hero-main-title {
        font-size: 48px;
    }

    .ymb-hero-description {
        font-size: 17px;
    }

    .ymb-hero-cta-group {
        justify-content: center;
    }

    .ymb-hero-features-list {
        align-items: center;
    }

    .ymb-hero-image-side {
        max-width: 600px;
        width: 100%;
    }

    .ymb-about-row {
        flex-direction: column;
        gap: 50px;
    }

    .ymb-about-content {
        max-width: 100%;
    }

    .ymb-section-heading {
        font-size: 36px;
    }

    .ymb-about-image-main {
        height: 400px;
    }

    .ymb-programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .ymb-hero-wrapper {
        min-height: auto;
    }

    .ymb-hero-row {
        padding: 100px 0 60px 0;
    }

    .ymb-hero-cta-group {
        margin-bottom: 12px;
    }

    .ymb-hero-main-title {
        font-size: 38px;
    }

    .ymb-hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .ymb-hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .ymb-hero-btn-primary,
    .ymb-hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }

    .ymb-hero-badge {
        padding: 10px 22px;
        margin-bottom: 20px;
    }

    .ymb-hero-badge span {
        font-size: 11px;
    }

    .ymb-hero-scroll-indicator {
        bottom: 20px;
    }

    .ymb-hero-image-wrapper {
        border-radius: 20px;
    }

    .ymb-hero-main-image {
        border-radius: 20px;
    }

    .ymb-hero-image-overlay {
        padding: 30px 20px;
    }

    .ymb-hero-image-overlay h3 {
        font-size: 20px;
    }

    .ymb-hero-image-overlay p {
        font-size: 14px;
    }

    .ymb-about-section {
        padding: 60px 0;
    }

    .ymb-section-heading {
        font-size: 32px;
    }

    .ymb-about-list {
        gap: 24px;
    }

    .ymb-about-image-main {
        height: 300px;
    }

    .ymb-programs-section {
        padding: 60px 0;
    }

    .ymb-programs-header {
        margin-bottom: 50px;
    }

    .ymb-programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ymb-program-image {
        height: 200px;
    }

    .ymb-program-content {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .ymb-hero-main-title {
        font-size: 32px;
    }

    .ymb-hero-features-list {
        gap: 12px;
    }

    .ymb-hero-feature-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .ymb-hero-feature-icon i {
        font-size: 20px;
    }

    .ymb-hero-feature-text {
        font-size: 15px;
    }

    .ymb-section-heading {
        font-size: 28px;
    }

    .ymb-about-image-main {
        height: 250px;
    }
}

/* ============================================
   WHY CHOOSE US SECTION - MINIMAL & PROFESSIONAL
============================================ */
.ymb-why-choose-section {
    padding: 100px 0;
    background: #ffffff;
}

.ymb-why-choose-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.ymb-why-choose-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.ymb-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ymb-why-choose-card {
    text-align: center;
    padding: 40px 24px;
    background: #fafafa;
    border-radius: 12px;
}

.ymb-why-choose-icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid #e8f5e9;
}

.ymb-why-choose-icon i {
    font-size: 30px;
    color: #2e7d32;
}

.ymb-why-choose-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 12px;
}

.ymb-why-choose-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION - MINIMAL & PROFESSIONAL
============================================ */
.ymb-testimonials-section {
    padding: 100px 0;
    background: #fff;
}

.ymb-testimonials-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.ymb-testimonials-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.ymb-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ymb-testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.ymb-testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.ymb-testimonial-rating i {
    color: #FFD700;
    font-size: 16px;
}

.ymb-testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 28px;
    font-style: italic;
}

.ymb-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ymb-testimonial-author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.ymb-testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ymb-testimonial-author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 4px;
}

.ymb-testimonial-author-info p {
    font-size: 14px;
    color: #4a5568;
    margin: 0;
}

/* CTA Box in Testimonials */
.ymb-testimonial-cta {
    background: #1b5e20;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ymb-testimonial-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.ymb-testimonial-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.ymb-testimonial-cta-btn {
    display: inline-block;
    padding: 16px 36px;
    background: white;
    color: #1b5e20;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .ymb-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .ymb-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .ymb-why-choose-section {
        padding: 60px 0;
    }

    .ymb-why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ymb-why-choose-card {
        padding: 32px 20px;
    }

    .ymb-testimonials-section {
        padding: 60px 0;
    }

    .ymb-testimonial-card {
        padding: 32px 24px;
    }

    .ymb-testimonial-cta {
        padding: 40px 28px;
    }

    .ymb-testimonial-cta h3 {
        font-size: 24px;
    }
}