body{
    margin: 0;
    padding: 0;
}

/* =========================================================
   SHQ TRAINING - HERO
   ========================================================= */

.shq-hero {
    position: relative;
    width: 100%;
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 70px 20px;

background:
        linear-gradient(
            135deg,
            #064e3b 0%,
            #047857 55%,
            #059669 100%
        );

    overflow: hidden;
}


/* Decorative background effect */
.shq-hero::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    top: -180px;
    right: -100px;
}


/* Second decorative element */
.shq-hero::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);

    bottom: -150px;
    left: -80px;
}


/* Main content */
.shq-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1000px;

    text-align: center;

    color: #ffffff;
}


/* Small label */
.shq-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    padding: 7px 18px;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;

    color: #ffffff;
}


/* Name */
.shq-hero h1 {
    margin: 0 0 10px;

    font-size: 48px;
    line-height: 1.15;

    font-weight: 700;

    color: #ffffff;
}


/* Professional title */
.shq-hero h2 {
    margin: 0 0 25px;

    font-size: 28px;
    line-height: 1.3;

    font-weight: 600;

    color: #ffffff;
}


/* Description */
.shq-hero p {
    max-width: 780px;

    margin: 0 auto;

    font-size: 18px;
    line-height: 1.7;

    font-weight: 300;

    color: rgba(255, 255, 255, 0.92);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .shq-hero {
        min-height: 390px;
        padding: 55px 20px;
    }

    .shq-hero h1 {
        font-size: 38px;
    }

    .shq-hero h2 {
        font-size: 23px;
    }

    .shq-hero p {
        font-size: 16px;
        line-height: 1.6;
    }

    .shq-eyebrow {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}


@media (max-width: 480px) {

    .shq-hero {
        min-height: 360px;
        padding: 45px 18px;
    }

    .shq-hero h1 {
        font-size: 32px;
    }

    .shq-hero h2 {
        font-size: 20px;
    }

    .shq-hero p {
        font-size: 15px;
    }
}

.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);
}


/* =========================================================
   SHQ INLINE FORM
========================================================= */

.shq-contact-form {
    width: 100%;
    padding: 35px 15px 40px;
    display: flex;
    justify-content: center;
    background: #f8fafc;
}

.shq-contact-form .my-form-wrapper {
    width: 100%;
    max-width: 1200px;
}


/* =========================================================
   FORM HEADING
========================================================= */

.shq-form-heading {
    text-align: center;
    margin-bottom: 25px;
}

.shq-form-label {
    display: inline-block;
    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.shq-form-heading h2 {
    margin: 0 0 8px;

    font-size: 28px;
    line-height: 1.3;

    font-weight: 700;
}

.shq-form-heading p {
    max-width: 700px;
    margin: 0 auto;

    font-size: 15px;
    line-height: 1.6;

    color: #666;
}


/* =========================================================
   INLINE FORM
========================================================= */

.my-inline-form {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}


/* =========================================================
   INPUTS + SELECTS
========================================================= */

.my-inline-form .form-control {
    height: 50px;

    padding: 0 15px;

    border: 1px solid #d1d5db;
    border-radius: 8px;

    min-width: 190px;

    font-size: 14px;

    background: #ffffff;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


/* Input focus */

.my-inline-form .form-control:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.10);
}


/* Select */

.my-inline-form select.form-control {
    cursor: pointer;

    min-width: 220px;
}


/* =========================================================
   TURNSTILE
========================================================= */

.my-inline-form .cf-turnstile {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;
}


/* =========================================================
   BUTTON
========================================================= */

.my-inline-form .btn {
    height: 50px;

    padding: 0 28px;

    border: none;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    white-space: nowrap;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.my-inline-form .btn:hover {
    transform: translateY(-1px);

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   FORM MESSAGE
========================================================= */

.shq-contact-form .form-message {
    margin-top: 15px;

    text-align: center;

    font-size: 14px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 992px) {

    .my-inline-form {
        flex-direction: row;
    }

    .my-inline-form .form-control {
        min-width: 220px;
    }
}


@media (max-width: 768px) {

    .shq-contact-form {
        padding: 30px 15px;
    }

    .shq-form-heading h2 {
        font-size: 24px;
    }

    .shq-form-heading p {
        font-size: 14px;
    }

    .my-inline-form {
        flex-direction: column;
        align-items: stretch;
    }

    .my-inline-form .form-control,
    .my-inline-form .btn {
        width: 100%;
        max-width: 500px;

        margin-left: auto;
        margin-right: auto;
    }

    .my-inline-form .cf-turnstile {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .shq-form-heading h2 {
        font-size: 22px;
    }

    .shq-form-heading p {
        font-size: 13px;
    }

    .my-inline-form .form-control,
    .my-inline-form .btn {
        height: 48px;
    }

}


/* =========================
   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;
}



/* =========================================================
   SHQ PROGRAM CARDS - ENHANCED
========================================================= */

.shq-programs {
    width: 100%;
    padding: 75px 20px;
    background: #ffffff;
}

.shq-program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}


/* =========================================================
   CARD
========================================================= */

.shq-program-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dfe7e3;
    border-radius: 14px;

    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.shq-program-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.11);
}


/* =========================================================
   GREEN PROGRAM HEADER
========================================================= */

.shq-program-header {
    position: relative;

    padding: 18px 25px 20px;

    background: linear-gradient(
        135deg,
        #064e3b,
        #047857
    );

    color: #ffffff;
}


/* =========================================================
   SHQ PROGRAM SECTION HEADING - CENTER
========================================================= */

.shq-programs .shq-section-heading {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.shq-programs .shq-section-label {
    display: inline-block;
    text-align: center;
}

.shq-programs .shq-section-heading h2 {
    margin: 0 auto 14px;
    text-align: center;
}

.shq-programs .shq-section-heading p {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
/* PROGRAM NUMBER */

.shq-program-number {
    display: block;

    margin-bottom: 6px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.78);
}


/* PROGRAM TITLE */

.shq-program-header h3 {
    margin: 0;

    font-size: 22px;
    line-height: 1.35;

    font-weight: 700;

    color: #ffffff;
}


/* =========================================================
   CARD BODY
========================================================= */

.shq-program-body {
    padding: 27px 25px 25px;
}


/* =========================================================
   ICON
========================================================= */

.shq-program-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 12px;

    background: #ecfdf5;

    color: #047857;

    font-size: 23px;
}


/* =========================================================
   TAGLINE
========================================================= */

.shq-program-tagline {
    margin-bottom: 18px;

    padding: 14px 15px;

    border-left: 4px solid #059669;

    border-radius: 7px;

    background: #f0fdf4;

    font-size: 14px;
    line-height: 1.7;

    font-weight: 600;

    color: #166534;
}

.shq-program-tagline span {
    margin: 0 4px;

    color: #059669;

    font-size: 16px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.shq-program-body > p {
    min-height: 75px;

    margin: 0 0 23px;

    font-size: 15px;
    line-height: 1.7;

    color: #666;
}


/* =========================================================
   ACTIONS
========================================================= */

.shq-program-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-wrap: wrap;
}


/* COURSE DETAILS BUTTON */

.shq-course-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 43px;

    padding: 0 18px;

    border: 1px solid #047857;
    border-radius: 7px;

    background: #047857;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.shq-course-btn:hover {
    background: #064e3b;

    color: #ffffff;

    transform: translateY(-1px);
}


/* REGISTER BUTTON */

.shq-register-btn {
    display: inline-flex;

    align-items: center;
    gap: 7px;

    min-height: 43px;

    padding: 0 14px;

    color: #047857;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: gap 0.2s ease;
}

.shq-register-btn:hover {
    color: #064e3b;

    gap: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .shq-programs {
        padding: 55px 15px;
    }

    .shq-program-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shq-program-header {
        padding: 17px 22px;
    }

    .shq-program-header h3 {
        font-size: 21px;
    }

    .shq-program-body {
        padding: 25px 22px;
    }

    .shq-program-body > p {
        min-height: auto;
    }

}


@media (max-width: 480px) {

    .shq-program-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .shq-course-btn,
    .shq-register-btn {
        width: 100%;
    }

    .shq-register-btn {
        justify-content: center;
    }

}




/* =========================
   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;
}

/* =========================
   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;
    }
}

/* =========================================================
   SHQ TRAINING CALENDAR
========================================================= */

.shq-calendar-section {
    width: 100%;
    padding: 70px 20px;
    background: #f8fafc;
}

/* =========================================================
   SHQ CALENDAR SECTION HEADING - CENTER
========================================================= */

.shq-calendar-section .shq-section-heading {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.shq-calendar-section .shq-section-heading .shq-section-label {
    display: inline-block;
    text-align: center;
}

.shq-calendar-section .shq-section-heading h2 {
    margin: 0 auto 14px;
    text-align: center;
}

.shq-calendar-section .shq-section-heading p {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* =========================================================
   CALENDAR WRAPPER
========================================================= */

.shq-calendar-wrapper {
    width: 100%;

    overflow-x: auto;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 14px;

    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
}


/* =========================================================
   TABLE
========================================================= */

.shq-calendar-table {
    width: 100%;

    min-width: 900px;

    border-collapse: collapse;

    font-size: 14px;
}


/* HEADER */

.shq-calendar-table thead th {
    padding: 17px 18px;

    background: #064e3b;

    color: #ffffff;

    text-align: left;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.5px;

    white-space: nowrap;
}


/* BODY */

.shq-calendar-table tbody td {
    padding: 17px 18px;

    border-bottom: 1px solid #e5e7eb;

    color: #475569;

    vertical-align: middle;
}


/* LAST ROW */

.shq-calendar-table tbody tr:last-child td {
    border-bottom: none;
}


/* HOVER */

.shq-calendar-table tbody tr {
    transition: background 0.2s ease;
}

.shq-calendar-table tbody tr:hover {
    background: #f0fdf4;
}


/* =========================================================
   PROGRAM NAME
========================================================= */

.shq-calendar-program {
    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 190px;
}


.shq-calendar-program strong {
    color: #1f2937;

    font-size: 14px;
}


/* PROGRAM ICON */

.shq-calendar-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 9px;

    background: #ecfdf5;

    color: #047857;

    font-size: 16px;
}


/* =========================================================
   STATUS
========================================================= */

.shq-status {
    display: inline-flex;

    align-items: center;

    padding: 5px 11px;

    border-radius: 20px;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;
}


.shq-status.upcoming {
    background: #dcfce7;

    color: #166534;
}


/* =========================================================
   DETAILS BUTTON
========================================================= */

.shq-calendar-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 36px;

    padding: 0 15px;

    border: 1px solid #047857;

    border-radius: 6px;

    background: #ffffff;

    color: #047857;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.shq-calendar-btn:hover {
    background: #047857;

    color: #ffffff;
}


/* =========================================================
   NOTE
========================================================= */

.shq-calendar-note {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 18px;

    font-size: 13px;

    color: #64748b;

    text-align: center;
}


.shq-calendar-note i {
    color: #047857;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .shq-calendar-section {
        padding: 55px 15px;
    }

    .shq-calendar-table {
        min-width: 900px;
    }

    .shq-calendar-note {
        align-items: flex-start;

        font-size: 12px;
    }

}