body{
    margin: 0;
    padding: 0;
}

.page-banner{
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    background: #f6fff9;
     margin-top: 50px;   /* small clean gap from navbar */
}

.page-banner img{
    width: 95%;
    height: auto;
    display: block;

    border-radius: 12px;
    border: 4px solid #0b3d2e;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}


/* ===== FORM SECTION ===== */
.seo-contact-form{
    width:100%;
    padding:30px 15px;
    display:flex;
    justify-content:center;
}

.my-form-wrapper{
    width:100%;
    max-width:1200px;
}

/* ===== INLINE FORM ===== */
.my-inline-form{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap; /* responsive */
}

/* INPUTS */
.my-inline-form .form-control{
    height:50px;
    padding:0 15px;
    border:1px solid #ccc;
    border-radius:8px;
    min-width:220px;
    font-size:15px;
}

/* TURNSTILE */
.my-inline-form .cf-turnstile{
    display:flex;
    align-items:center;
    justify-content:center;
}

/* BUTTON */
.my-inline-form .btn{
    height:50px;
    padding:0 30px;
    border:none;
    border-radius:8px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    white-space:nowrap;
}

/* MOBILE */
@media(max-width:768px){

    .my-inline-form{
        flex-direction:column;
        align-items:center;
    }

    .my-inline-form .form-control,
    .my-inline-form .btn{
        width:100%;
        max-width:400px;
    }
}

/* =========================
   GLOBAL PAGE WRAPPER
========================= */

.seo-training{
    font-family: 'Poppins', sans-serif;
    background: #f6fff9;
    padding-bottom: 60px;
}

/* =========================
   SECTION HEADINGS
========================= */
.seo-gallery h2,
.seo-session-details h2,
.seo-for h2,
.seo-why h2,
.seo-learn h2{
    text-align: center;
    color: #0b3d2e;
    margin-bottom: 25px;
    font-size: 28px;
}





/* =========================
   SEO GALLERY (FILM STRIP)
========================= */

.seo-gallery{
    padding: 60px 20px;
    text-align: center;
}

.gallery-container{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    max-width: 1100px;
    margin: auto;

    padding: 15px;
    scroll-snap-type: x mandatory;
}

.gallery-container img{
    flex: 0 0 auto;
    width: 180px;
    height: 120px;
    object-fit: cover;

    border-radius: 10px;
    border: 2px solid #0b3d2e;

    scroll-snap-align: center;
    transition: 0.3s ease;
}

.gallery-container img:hover{
    transform: scale(1.05);
}

/* scrollbar */
.gallery-container::-webkit-scrollbar{
    height: 6px;
}
.gallery-container::-webkit-scrollbar-thumb{
    background: #0b3d2e;
    border-radius: 10px;
}


/* =========================
   Trainee BOXES (CARDS)
========================= */
.training-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.training-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 15px;   /* reduced from big padding */
    font-size: 14px; /* helps fit content */
    box-sizing: border-box;
    overflow: hidden;
}

.training-box h3 {
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
}

.training-box ul {
    padding-left: 18px;
}
/* =========================
   SEO BOXES (CARDS)
========================= */

.seo-session-details,
.seo-for{
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.seo-boxes{
    max-width: 1100px;
    width: 100%;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.seo-box{
    background: #fff;
    border: 2px solid #0b3d2e;
    border-radius: 14px;

    padding: 20px;
    text-align: center;

    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.seo-box:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.seo-box h3{
    color: #0b3d2e;
    margin-bottom: 10px;
}

.seo-box p,
.seo-box li{
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.seo-box ul{
    text-align: left;
    padding-left: 18px;
}

/* WHO IS THIS FOR */
.seo-for .seo-box{
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff, #f1f8f4);
}

/* =========================
   WHY LEARN SEO (FIXED CENTER LAYOUT)
========================= */

.seo-why{
    padding: 70px 20px;
    display: flex;
    justify-content: center;
}

.seo-container{
    max-width: 1100px;
    width: 100%;

    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* TEXT BOX */
.seo-text{
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    border: 2px solid #0b3d2e;
}

.seo-text h2{
    text-align: left;
    margin-bottom: 15px;
}

.seo-text ul{
    padding-left: 18px;
}

.seo-text li{
    margin-bottom: 10px;
    line-height: 1.6;
}

/* VIDEO BOX */
.seo-image{
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.seo-image iframe{
    width: 100%;
    max-width: 480px;
    height: 280px;

    border-radius: 12px;
    border: none;
}

/* =========================
   TABLE SECTION
========================= */

.seo-learn{
    padding: 70px 20px;
}

.seo-table-container{
    max-width: 1200px;
    margin: auto;
    overflow-x: auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.seo-table{
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.seo-table th{
    background: #0b3d2e;
    color: #fff;
    padding: 14px;
    text-align: center;
}

.seo-table td{
    vertical-align: top;
    padding: 18px;
    border: 1px solid #eee;
}

.seo-table ul{
    padding-left: 18px;
}

.seo-table li{
    font-size: 13px;
    line-height: 1.5;
}

/* =========================
   MOBILE FIXES
========================= */

@media(max-width: 768px){

    .seo-container{
        flex-direction: column;
    }

    .seo-image iframe{
        height: 220px;
    }

    .seo-text h2{
        text-align: center;
    }
}