.elementor-579 .elementor-element.elementor-element-75e0006{--display:flex;}.elementor-579 .elementor-element.elementor-element-57ede49{--display:flex;}/* Start custom CSS */.sb-hero{
    padding:80px 20px;
    background:linear-gradient(135deg,#1f4d3a,#2f6b4f);
    color:white;
}

.sb-hero-content{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* TEXT SIDE */
.sb-hero-text{
    flex:1;
}

/* TITLE (IMPORTANT FIX) */
.sb-hero-text h1{
    font-size:42px;
    line-height:1.3;
    margin-bottom:15px;
}

/* PARAGRAPH FIX (you had typo line-heigth) */
.sb-hero-text p{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,0.85);
    margin-bottom:20px;
}

/* TAG */
.sb-tag{
    display:inline-block;
    background:#caa96d;
    color:#000;
    padding: 8px 18px;
    border-radius:30px;
    margin-bottom:20px;
    font-weight:600;
}

/* ICON ROW (REFERENCE STYLE FIX) */
.sb-icon{
    display:flex;
    gap:15px;
    margin-top:15px;
    flex-wrap:wrap;
}

.sb-icon-card{
    background:rgba(255,255,255,0.08);
    padding:10px 15px;
    border-radius:8px;
    font-size:14px;
}

/* BUTTON */
.sb-btn{
    display:inline-block;
    margin-top:30px;
    padding:14px 32px;
    background:#caa96d;
    color:#000;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.sb-btn:hover{
    background:#e3c27a;
    transform:translateY(-3px);
}

/* IMAGE FIX (REMOVE HEAVY FLOAT EFFECT) */
.sb-hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.sb-hero-image img{
    width:100%;
    max-width:420px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
    transition:0.3s ease;
}

/* SOFT hover only */
.sb-hero-image img:hover{
    transform:scale(1.02);
}

/* RESPONSIVE */
@media(max-width:900px){
    .sb-hero-content{
        flex-direction:column;
        text-align:left;
    }

    .sb-hero-text h1{
        font-size:32px;
    }
}

/*next */

.sb-info{
    padding:80px 20px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    background:#f7f4ee;
}

/* CARD */
.sb-info-card{
    flex:1 1 180px;
    background:white;
    padding:25px;
    border-radius:16px;
    text-align:center;
    transition:.3s ease;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    position:relative;
    overflow:hidden;
}

/* HOVER */
.sb-info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 25px rgba(0,0,0,0.1);
    background:#ffffff;
}

/* TITLE */
.sb-info-card h3{
    font-size:14px;
    color:#777;
    margin-bottom:8px;
    font-weight:600;
    letter-spacing:0.5px;
}

/* VALUE */
.sb-info-card p{
    font-size:18px;
    font-weight:700;
    color:#1f4d3a;
}

/*next*/

/* SECTION */
.sb-overview{
    padding:120px 20px;
    display:flex;
    gap:60px;
    max-width:1200px;
    margin:auto;
    align-items:center;
    background:#ffffff;
}

/* IMAGE */
.sb-overview-image,
.sb-overview-content{
    flex:1;
}

/* IMAGE STYLE */
.sb-overview-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* HEADING */
.sb-overview-content h2{
    font-size:32px;
    color:#1f4d3a;
    margin-bottom:20px;
    line-height:1.3;
}

/* PARAGRAPH */
.sb-overview-content p{
    font-size:16px;
    color:#555;
    line-height:1.8;
    margin-bottom:15px;
}

/* BUTTON (reuse your existing sb-btn) */
.sb-overview-content .sb-btn{
    margin-top:20px;
    display:inline-block;
}

/* RESPONSIVE */
@media(max-width:900px){
    .sb-overview{
        flex-direction:column;
    }

    .sb-overview-content h2{
        font-size:26px;
    }
}

/*next*/

/* SECTION BACKGROUND */
.sb-learn{
    padding:120px 20px;
    background:#f7f4ee;
}

/* TITLE */
.sb-learn h2{
    text-align:center;
    font-size:36px;
    color:#1f4d3a;
    margin-bottom:50px;
    line-height:1.3;
}

/* GRID */
.sb-learn-grid{
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    justify-content:center;
}

/* CARD */
.sb-card{
    flex:1 1 300px;
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
}

/* HOVER */
.sb-card:hover{
    transform:translateY(-10px);
    background:#eaf4ee;
    box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

/* CARD TITLE */
.sb-card h3{
    font-size:20px;
    color:#1f4d3a;
    margin-bottom:15px;
}

/* LIST */
.sb-card ul{
    padding-left:18px;
}

.sb-card li{
    margin-bottom:10px;
    color:#444;
    line-height:1.6;
    font-size:15px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .sb-card{
        flex:1 1 100%;
    }

    .sb-learn h2{
        font-size:28px;
    }
}

/*next*/

/* SECTION */
.sb-video{
    padding:120px 20px;
    text-align:center;
    background:#ffffff;
}

/* TITLE */
.sb-video h2{
    font-size:36px;
    color:#1f4d3a;
    margin-bottom:15px;
}

/* SUBTITLE */
.sb-subtitle{
    max-width:700px;
    margin:0 auto 40px auto;
    font-size:16px;
    color:#555;
    line-height:1.6;
}

/* VIDEO WRAPPER (IMPORTANT FIXED VERSION) */
.sb-video-wrapper{
    width:80%;
    max-width:1000px;
    margin:auto;
    position:relative;
    padding-bottom:56.25%; /* 16:9 ratio */
    height:0;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* IFRAME FIX (your original had missing semicolon) */
.sb-video-wrapper iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

/* RESPONSIVE */
@media(max-width:768px){
    .sb-video h2{
        font-size:28px;
    }

    .sb-video-wrapper{
        width:100%;
    }
}

/*next*/

/* SECTION */
.sb-schedule{
    padding:120px 20px;
    background:#ffffff;
    text-align:center;
}

/* TITLE */
.sb-schedule h2{
    font-size:36px;
    color:#1f4d3a;
    margin-bottom:15px;
}

/* SUBTITLE */
.sb-schedule .sb-subtitle{
    max-width:700px;
    margin:0 auto 60px auto;
    font-size:16px;
    color:#555;
    line-height:1.6;
}

/* TIMELINE WRAPPER */
.sb-timeline{
    max-width:900px;
    margin:auto;
    position:relative;
    padding-left:30px;
    border-left:3px solid #1f4d3a;
    text-align:left;
}

/* ITEM */
.sb-time-item{
    position:relative;
    margin-bottom:35px;
    padding-left:25px;
    transition:0.3s ease;
}

/* DOT */
.sb-time-item::before{
    content:"";
    position:absolute;
    left:-10px;
    top:6px;
    width:18px;
    height:18px;
    background:#1f4d3a;
    border-radius:50%;
    border:3px solid #fff;
    box-shadow:0 0 0 2px #1f4d3a;
}

/* TIME */
.sb-time{
    display:inline-block;
    font-weight:bold;
    color:#1f4d3a;
    margin-bottom:5px;
}

/* TEXT */
.sb-time-item p{
    margin:0;
    color:#444;
    line-height:1.6;
}

/* HOVER EFFECT */
.sb-time-item:hover{
    transform:translateX(8px);
}

/* RESPONSIVE */
@media(max-width:768px){
    .sb-timeline{
        padding-left:20px;
    }

    .sb-time-item{
        padding-left:20px;
    }

    .sb-schedule h2{
        font-size:28px;
    }
}

/*next*/

/* SECTION */
.sb-training{
    padding:120px 20px;
    background:#f7f4ee;
    text-align:center;
}

/* TITLE */
.sb-training h2{
    font-size:36px;
    color:#1f4d3a;
    margin-bottom:15px;
}

/* SUBTITLE */
.sb-subtitle{
    max-width:750px;
    margin:0 auto 60px auto;
    font-size:16px;
    color:#555;
    line-height:1.6;
}

/* GRID */
.sb-training-grid{
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    justify-content:center;
}

/* CARD */
.sb-day-card{
    flex:1 1 250px;
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:left;
    transition:0.3s ease;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    position:relative;
    overflow:hidden;
}

/* HOVER */
.sb-day-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.1);
    background:#eaf4ee;
}

/* DAY TITLE */
.sb-day-card h3{
    color:#1f4d3a;
    margin-bottom:8px;
    font-size:20px;
}

/* SUB TEXT */
.sb-day-card p{
    font-weight:600;
    color:#333;
    margin-bottom:10px;
}

/* LIST */
.sb-day-card ul{
    padding-left:18px;
    margin:0;
}

.sb-day-card li{
    margin-bottom:8px;
    color:#555;
    font-size:14px;
    line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:768px){
    .sb-day-card{
        flex:1 1 100%;
    }

    .sb-training h2{
        font-size:28px;
    }
}

/*next*/

/* SECTION */
.sb-food{
    padding:120px 20px;
    background:#ffffff;
    text-align:center;
}

/* TITLE */
.sb-food h2{
    font-size:36px;
    color:#1f4d3a;
    margin-bottom:15px;
}

/* SUBTITLE */
.sb-subtitle{
    max-width:750px;
    margin:0 auto 60px auto;
    font-size:16px;
    color:#555;
    line-height:1.6;
}

/* MAIN CONTAINER */
.sb-food-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:50px;
    align-items:center;
    flex-wrap:wrap;
    text-align:left;
}

/* IMAGE COLUMN */
.sb-food-images{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* IMAGE CARD */
.sb-food-img{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.sb-food-img img{
    width:100%;
    display:block;
    transition:0.4s ease;
}

/* HOVER ZOOM */
.sb-food-img img:hover{
    transform:scale(1.05);
}

/* CONTENT SIDE */
.sb-food-content{
    flex:1;
}

/* HEADINGS */
.sb-food-content h3{
    color:#1f4d3a;
    margin-bottom:10px;
    margin-top:25px;
    font-size:20px;
}

/* LIST */
.sb-food-content ul{
    padding-left:18px;
    margin-bottom:20px;
}

.sb-food-content li{
    margin-bottom:10px;
    color:#555;
    line-height:1.6;
    font-size:15px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .sb-food-container{
        flex-direction:column;
    }

    .sb-food h2{
        font-size:28px;
    }
}

/*next*/

/* SECTION */
.sb-who{
    padding:120px 20px;
    background:#f7f4ee;
    text-align:center;
}

/* TITLE */
.sb-who h2{
    font-size:36px;
    color:#1f4d3a;
    margin-bottom:15px;
}

/* SUBTITLE */
.sb-subtitle{
    max-width:750px;
    margin:0 auto 50px auto;
    font-size:16px;
    color:#555;
    line-height:1.6;
}

/* CHIP CONTAINER */
.sb-chip-container{
    max-width:900px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

/* CHIP STYLE */
.sb-chip{
    background:#fff;
    border:1px solid rgba(31,77,58,0.2);
    color:#1f4d3a;
    padding:12px 18px;
    border-radius:30px;
    font-size:14px;
    transition:0.3s ease;
    cursor:default;
}

/* HOVER */
.sb-chip:hover{
    background:#1f4d3a;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/*next*/

/* SECTION */
.sb-why{
    padding:120px 20px;
    background:#ffffff;
    text-align:center;
}

/* TITLE */
.sb-why h2{
    font-size:36px;
    color:#1f4d3a;
    margin-bottom:15px;
}

/* SUBTITLE */
.sb-subtitle{
    max-width:750px;
    margin:0 auto 60px auto;
    font-size:16px;
    color:#555;
    line-height:1.6;
}

/* GRID */
.sb-why-grid{
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    justify-content:center;
}

/* CARD */
.sb-why-card{
    flex:1 1 250px;
    background:#f7f4ee;
    padding:30px;
    border-radius:18px;
    transition:0.3s ease;
    text-align:left;
    position:relative;
    overflow:hidden;
}

/* HOVER */
.sb-why-card:hover{
    transform:translateY(-10px);
    background:#eaf4ee;
    box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

/* ICON */
.sb-icon{
    font-size:32px;
    margin-bottom:15px;
}

/* TITLE */
.sb-why-card h3{
    color:#1f4d3a;
    margin-bottom:10px;
    font-size:18px;
}

/* TEXT */
.sb-why-card p{
    color:#555;
    line-height:1.6;
    font-size:15px;
}

/* GLOW EFFECT */
.sb-why-card::before{
    content:"";
    position:absolute;
    top:-50%;
    right:-50%;
    width:200%;
    height:200%;
    background:radial-gradient(circle, rgba(31,77,58,0.06), transparent);
    transform:rotate(25deg);
}

/* RESPONSIVE */
@media(max-width:768px){
    .sb-why-card{
        flex:1 1 100%;
    }

    .sb-why h2{
        font-size:28px;
    }
}

/*next*/

/* SECTION */
.sb-cta{
    position:relative;
    padding:140px 20px;
    background:linear-gradient(135deg,#1f4d3a,#2f6b4f);
    color:#fff;
    text-align:center;
    overflow:hidden;
}

/* OVERLAY GLOW */
.sb-cta-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 60%);
}

/* CONTENT WRAPPER */
.sb-cta-container{
    position:relative;
    max-width:900px;
    margin:auto;
}

/* HEADING */
.sb-cta h2{
    font-size:42px;
    line-height:1.3;
    margin-bottom:20px;
}

/* TEXT */
.sb-cta p{
    font-size:18px;
    line-height:1.7;
    color:rgba(255,255,255,0.85);
    margin-bottom:40px;
}

/* BUTTONS */
.sb-cta-buttons{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

/* PRIMARY BUTTON */
.sb-btn-primary{
    background:#caa96d;
    color:#000;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s ease;
}

/* SECONDARY BUTTON */
.sb-btn-secondary{
    border:2px solid #fff;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    transition:0.3s ease;
}

/* HOVER EFFECTS */
.sb-btn-primary:hover{
    transform:translateY(-5px);
    background:#e3c27a;
}

.sb-btn-secondary:hover{
    background:#fff;
    color:#1f4d3a;
}

/* RESPONSIVE */
@media(max-width:768px){
    .sb-cta h2{
        font-size:30px;
    }

    .sb-cta p{
        font-size:16px;
    }
}/* End custom CSS */