/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    background-color: #fcfcfc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    background-color: transparent;
    color: #c36;
    text-decoration: none;
}

a:hover, a:active {
    color: #336;
}

img {
    border-style: none;
    height: auto;
    max-width: 100%;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* ============================================
   MAIN HEADER (STICKY NAV)
   ============================================ */
.main-header {
    width: 100%;
    padding: 1.125rem 0; /* 18px */
    position: fixed; /* Fixed position as per inspect elements of ecomlaunchers.com */
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: transparent;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08); /* 4px 20px */
}

.main-header-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.main-header-left {
    display: flex;
    align-items: center;
    flex: 0 0 12%;
}

.logo {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo img {
    width: 100%;
    max-width: 9.375rem; /* 150px safety cap so a large uploaded logo file can never overflow its header slot */
    height: auto;
}

.logo-original {
    display: block;
}

.logo-scroll {
    display: none;
}

.main-header.scrolled .logo-original {
    display: none;
}

.main-header.scrolled .logo-scroll {
    display: block;
}

.main-header-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 67%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
}

.menu-scroll {
    display: none;
}

.main-header.scrolled .menu-original {
    display: none;
}

.main-header.scrolled .menu-scroll {
    display: flex;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem; /* 16px */
    font-weight: 500;
    text-decoration: none;
    padding: 0 0.9375rem; /* 15px */
    display: block;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.menu-original .nav-item > a {
    color: #FCFCFC;
}

.menu-original .nav-item > a:hover,
.menu-original .nav-item.active > a {
    color: #F4A530;
}

.menu-scroll .nav-item > a {
    color: #212121;
}

.menu-scroll .nav-item > a:hover,
.menu-scroll .nav-item.active > a {
    color: #F4A530;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FCFCFC;
    min-width: 12.5rem; /* 200px */
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    z-index: 10;
    padding: 0;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}

/* Second-level flyout (e.g. Services > Walmart Automation > individual
   services) — opens to the right instead of below, same visual style.
   Nested items don't carry the "nav-item" class (see nav-walker.php), so
   this needs its own hover/mobile-open rule independent of that class. */
.dropdown-menu li.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu li.dropdown {
    position: relative;
}

.dropdown-menu li.dropdown > a {
    padding-right: 2rem;
}

.dropdown-menu li.dropdown > a::after {
    content: '';
    position: absolute;
    right: 0.9375rem;
    top: 50%;
    transform: translateY(-50%);
    border-top: 0.3125rem solid transparent;
    border-bottom: 0.3125rem solid transparent;
    border-left: 0.3125rem solid #212121;
}

.dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    color: #212121;
    text-decoration: none;
    padding: 0.625rem 0.9375rem; /* 10px 15px */
    display: block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #F4A530;
    color: #212121;
}

.dropdown-toggle i {
    font-size: 0.75rem; /* 12px */
    margin-left: 0.25rem; /* 4px */
}

.main-header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 0 0 18%;
}

.btn-proposal {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem; /* 16px */
    font-weight: 500;
    color: #FFFFFF;
    background-color: #F4A530;
    border: 1px solid #F4A530;
    border-radius: 0.3125rem; /* 5px */
    padding: 0.9375rem 1.625rem; /* 15px 26px */
    line-height: 1; /* Match reference line-height */
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-proposal:hover {
    color: #F4A530;
    background-color: transparent;
    border-color: #F4A530;
}

.main-header.scrolled .btn-proposal {
    color: #FFFFFF;
    background-color: #F4A530;
    border-color: #F4A530;
}

.main-header.scrolled .btn-proposal:hover {
    color: #F4A530;
    background-color: transparent;
    border-color: #F4A530;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: calc(2px * 3 + 8px * 2);
    cursor: pointer;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #F4A530;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger-bar:nth-child(1) {
    top: 0;
}

.hamburger-bar.middle {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-bar:nth-child(3) {
    bottom: 0;
}

.hamburger.active .hamburger-bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    top: 50%;
}

.hamburger.active .hamburger-bar.middle {
    opacity: 0;
}

.hamburger.active .hamburger-bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    bottom: 50%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 98vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('../images/hero-bg.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 0; /* Remove negative margin to prevent off-screen content */
    padding-top: 8rem; /* 150px to clear fixed header */
    padding-bottom: 13.75rem; /* 220px to clear baked pedestal graphic */
    box-sizing: border-box;
}

.hero-overlay {
    display: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5625rem; /* 25px */
    padding: 0; /* Handled by hero-section padding */
    margin-top: 0; /* Remove negative margin to prevent overlapping */
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #FCFCFC;
    margin: 0;
    width: 69%;
    max-width: 69%;
    line-height: 1.2;
}

.hero-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #FCFCFC;
    margin: 0;
    text-align: center;
}

.hero-desc strong {
    font-weight: 700;
}

.btn-hero {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #F4A530;
    border-style: solid;
    border-width: 1px;
    border-color: transparent;
    border-radius: 5px;
    padding: 15px 30px 15px 35px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    align-self: center;
}

.btn-hero:hover {
    color: #FFFFFF;
    background-color: transparent;
    border-color: #F4A530;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-container {
    width: 98%;
    margin: 30px 0 0 0;
    padding: 0;
    background-color: #FCFCFC;
    border-radius: 45px;
    box-shadow: 0px 0px 38px 0px rgba(195, 195, 197, 0.79);
    align-self: center;
}

/* Top Row */
.footer-top-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid #C3C3C5;
    padding: 15px;
}

.footer-contact {
    display: flex;
    align-items: center;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-contact-icon {
    font-size: 48px;
    color: #F4A530;
    display: flex;
    align-items: center;
}

.footer-contact-icon i {
    font-size: 48px;
    color: #F4A530;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #212121;
    margin-bottom: 1px;
}

.footer-contact-value {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #212121;
}

.phone-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #F4A530 !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.phone-link:hover {
    color: #212121 !important;
}

.footer-follow {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: center;
    width: 14%;
}

.footer-follow-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #212121;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 7px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #FCFCFC;
    border-radius: 50%;
    padding: 0.3em;
    transition: all 0.3s ease;
}

.footer-social-icon svg {
    width: 25px;
    height: 25px;
    fill: #F4A530;
}

.footer-social-icon:hover {
    background-color: #F4A530;
}

.footer-social-icon:hover svg {
    fill: #FFFFFF;
}

.footer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-badge img {
    max-width: 100%;
    height: auto;
    width: 140px;
}

/* Links Row */
.footer-links-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 25px;
    border-bottom: 1px solid #C3C3C5;
    padding: 40px 15px;
    align-self: center;
    width: 90%;
    margin: 0 auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
}

.footer-col-logo {
    width: 35%;
    justify-content: center;
    align-items: center;
}

.footer-main-logo {
    height: 200px;
    width: auto;
    object-fit: contain;
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #212121;
    margin: 0 0 8px 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.footer-links li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #8A8A8E;
    text-decoration: none;
    display: block;
    padding: 2px 0 0 2px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #F4A530;
}

/* Copyright */
.footer-copyright {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    padding: 15px;
    border-bottom: 1px solid #C3C3C5;
}

.copyright-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #212121;
    margin: 0;
    text-align: center;
}

.brand-name {
    color: #F4A530;
    text-shadow: 1px 1px 2px rgba(255, 165, 48, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .main-header-inner {
        flex-wrap: wrap;
    }

    .main-header-left {
        flex: 0 0 auto;
    }

    .main-header-right {
        flex: 0 0 auto;
    }

    .main-header-center {
        display: none;
        width: 100%;
        order: 3;
        flex: 0 0 100%;
    }

    .main-header-center.open {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        background-color: #FCFCFC;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        z-index: 10;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item > a {
        padding: 15px 20px;
        color: #212121 !important;
        border-bottom: 1px solid #eee;
    }

    .nav-item > a:hover,
    .nav-item.active > a {
        color: #F4A530 !important;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        background-color: #f9f9f9;
    }

    .nav-item.dropdown.open .dropdown-menu,
    .dropdown-menu li.dropdown.open > .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding-left: 35px;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        width: 597.651px;
        max-width: 100%;
        font-size: 30px;
        line-height: 1.2;
    }

    .hero-content {
        padding: 0;
        margin-top: 0;
    }

    .hero-section {
        padding-top: 9.375rem; /* 150px */
        padding-bottom: 13.75rem; /* 220px */
    }

    .footer-links-row {
        flex-direction: column;
        gap: 45px;
        align-items: center;
    }

    .footer-col {
        align-items: center;
        width: 100% !important;
    }

    .footer-col-title {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-main-logo {
        width: 100%;
    }

    .footer-top-row {
        flex-wrap: wrap;
    }

    .footer-contact-icon {
        font-size: 25px;
    }

    .footer-contact-icon i {
        font-size: 25px;
    }

    .footer-contact-label {
        font-size: 12px;
    }

    .footer-contact-value {
        font-size: 16px;
    }

    .footer-follow-title {
        font-size: 12px;
        line-height: 1.3em;
    }

    .footer-logo-img {
        width: 100%;
    }

    .footer-copyright {
        text-align: center;
    }

    .copyright-text {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .main-header-right {
        display: none;
    }

    .main-header-left {
        max-width: 40%;
    }

    .hero-title {
        font-size: 22px;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        padding: 0;
        margin-top: 0;
    }

    .hero-section {
        padding-top: 7.5rem; /* 120px */
        padding-bottom: 3.125rem; /* 50px */
        min-height: auto;
        background-position: top;
        background-size: auto;
    }

    .hero-desc {
        font-size: 14px;
    }

    .btn-hero {
        font-size: 14px;
        padding: 15px 30px 15px 35px;
    }

    .footer-top-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer-follow {
        width: auto;
        align-items: center;
    }

    .footer-follow-title {
        text-align: center;
    }

    .footer-logo-col {
        width: auto;
        align-items: center;
    }

    .footer-logo-img {
        width: 48%;
    }

    .footer-links-row {
        width: 100%;
        padding: 40px 15px;
    }

    .copyright-text {
        font-size: 13px;
        line-height: 1.4em;
    }

    .footer-contact-item {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact-text {
        align-items: center;
    }
}

/* ============================================
   NEW SECTIONS (Home Page)
   ============================================ */

/* Section 1 - Services */
.services-section {
    background: transparent;
    padding: 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}
.services-container {
    background: #fff;
    border-radius: 0 0 35px 35px;
    box-shadow: 0px 0px 38px 0px rgba(195,195,197,0.79);
    padding: 40px 0 30px;
    text-align: center;
    margin-bottom: 60px;
    width: 95%;
    max-width: 100%;
}
.services-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #212121;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}
.services-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 12px 0;
}
.service-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.service-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212121;
}
.service-icon-box i,
.service-icon-box svg {
    font-size: 20px;
    color: #212121;
    width: 20px;
    height: 20px;
}
.service-icon-box svg {
    fill: #212121;
}
.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #212121;
    margin: 0;
    white-space: nowrap;
}

/* Section 2 - About & Vertical Marquee Columns */
.about-marquee-section {
    background: #FCFCFC;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.about-marquee-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
    gap: 60px;
    box-sizing: border-box;
}

/* Left Column: Marquee Grid */
.marquee-columns-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    flex-direction: row;
    gap: 15px;
    height: 450px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

/* Mask to fade out the top and bottom of the scrolling columns */
.marquee-columns-wrapper::before,
.marquee-columns-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 2;
    pointer-events: none;
}
.marquee-columns-wrapper::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(252, 252, 252, 1), rgba(252, 252, 252, 0));
}
.marquee-columns-wrapper::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(252, 252, 252, 1), rgba(252, 252, 252, 0));
}

.marquee-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.marquee-track img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Column Animations */
.column-down .marquee-track {
    animation: scroll-down 20s linear infinite;
}

.column-up .marquee-track {
    animation: scroll-up 20s linear infinite;
}

@keyframes scroll-down {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Right Column: Content */
.about-content {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}

.about-badge {
    display: inline-block;
    border: 1px solid #F4A530;
    color: #F4A530;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    color: #212121;
    margin: 0 0 20px;
}

.about-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #7A7A7A;
    margin: 0 0 30px;
}

.about-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.btn-about {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.btn-about-outline {
    background-color: transparent;
    border: 2px solid #F4A530;
    color: #F4A530;
}

.btn-about-outline:hover {
    background-color: #F4A530;
    color: #FFFFFF;
}

.btn-about-solid {
    background-color: #F4A530;
    border: 2px solid #F4A530;
    color: #FFFFFF;
}

.btn-about-solid:hover {
    background-color: transparent;
    color: #F4A530;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .about-marquee-container {
        /*gap: 40px;*/
    }
    .about-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .about-marquee-section {
        padding: 50px 0;
    }
    .about-marquee-container {
        flex-direction: column;
        /*gap: 40px;*/
    }
    .marquee-columns-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        height: 350px;
    }
    .about-content {
        flex: 0 0 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    .about-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .btn-about {
        width: 100%;
    }
}
.btn-orange {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: #F4A530;
    border: 1px solid #F4A530;
    border-radius: 5px;
    padding: 15px 30px;
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease;
}
.btn-orange:hover {
    color: #F4A530;
    background: transparent;
    border-color: #F4A530;
}
.cta-phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #F4A530;
    text-decoration: none;
}
.cta-phone i {
    margin-right: 8px;
}
.cta-phone:hover {
    color: #212121;
}

/* Section 6 - Two Column Layout */
.two-col-section {
    padding: 80px 20px;
    background: #FCFCFC;
}
.two-col-inner {
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}
.two-col-inner.reverse {
    flex-direction: row-reverse;
}
.two-col-text {
    flex: 1;
}
.two-col-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.two-col-image .placeholder-img,
.platform-image .placeholder-img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background: #e0e0e0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8A8A8E;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}
.two-col-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.two-col-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #212121;
    margin: 0 0 20px;
    text-transform: uppercase;
}
.two-col-text p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #8A8A8E;
    line-height: 1.6;
    margin: 0 0 20px;
}
.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}
.platform-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #212121;
    background: #FCFCFC;
    border: 1px solid #C3C3C5;
    border-radius: 20px;
    padding: 8px 18px;
}

/* Why Section */
.why-section {
    padding: 80px 20px;
    background: #FCFCFC;
}
.why-inner {
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}
.why-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.why-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-image .placeholder-img {
    width: 100%;
    max-width: 450px;
    height: 400px;
    background: #e0e0e0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8A8A8E;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}
.why-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.why-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.why-step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #F4A530;
    line-height: 1;
    min-width: 50px;
}
.why-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    margin: 0 0 8px;
}
.why-step-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #8A8A8E;
    margin: 0;
    line-height: 1.5;
}

/* Process Section */
.process-section {
    padding: 80px 20px;
    background: #FCFCFC;
}
.process-inner {
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
}
.process-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #212121;
    text-align: center;
    margin: 0 0 50px;
    text-transform: uppercase;
}
.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.process-step {
    text-align: center;
    width: 220px;
}
.process-step-icon {
    width: 80px;
    height: 80px;
    background: #212121;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}
.process-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #212121;
    margin: 0 0 10px;
}
.process-step-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #8A8A8E;
    margin: 0;
    line-height: 1.5;
}
.process-arrow {
    font-size: 30px;
    color: #F4A530;
    flex-shrink: 0;
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: #FCFCFC;
    text-align: center;
}
.final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}
.final-cta-logos {
    margin-top: 40px;
}
.final-cta-logos .placeholder-img {
    width: 100%;
    max-width: 600px;
    height: 60px;
    background: #e0e0e0;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8A8A8E;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}
.final-cta-logos img {
    max-width: 100%;
    height: auto;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #FCFCFC;
}
.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}
.faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #212121;
    text-align: center;
    margin: 0 0 40px;
    text-transform: uppercase;
}
.faq-item {
    border-bottom: 1px solid #C3C3C5;
    padding: 15px 0;
}
.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #212121;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::after {
    content: '+';
    font-size: 22px;
    color: #F4A530;
    transition: transform .3s ease;
}
details[open] .faq-question::after {
    content: 'âˆ’';
}
.faq-answer {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #8A8A8E;
    line-height: 1.6;
    padding: 15px 0 0;
    margin: 0;
}

/* Performance Metrics Section */
.metrics-section {
    background-image: url('../images/Services-10-scaled.webp');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 726px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.metrics-inner {
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 60px 0;
    text-align: center;
}
.metrics-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FCFCFC;
    margin: 0;
    line-height: 1;
}
.metrics-title .per {
    color: #F4A530;
}
.metrics-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #FCFCFC;
    margin: 0;
    line-height: 1.35;
}
.metrics-carousel {
    width: 100%;
    overflow: hidden;
    margin: 15px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.metrics-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: metrics-scroll 20s linear infinite;
}
.metrics-track:hover {
    animation-play-state: paused;
}
.metrics-track img {
    flex: 0 0 auto;
    width: 20%;
    max-width: 300px;
    height: 386px;
    object-fit: contain;
    border-radius: 8px;
}
@keyframes metrics-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.metrics-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}
.metrics-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    line-height: 1;
    transition: all 0.3s ease;
}
.metrics-btn-outline {
    background-color: rgba(252, 252, 252, 0);
    border: 1px solid #F4A530;
    color: #F4A530;
    font-size: 17px;
    padding: 15px 35px;
}
.metrics-btn-outline:hover {
    background-color: #F4A530;
    color: #FFFFFF;
}
.metrics-btn-solid {
    background-color: #F4A530;
    border: 1px solid #F4A530;
    color: #FFFFFF;
    font-size: 15px;
    padding: 15px 30px 15px 35px;
}
.metrics-btn-solid:hover {
    background-color: transparent;
    color: #F4A530;
}

/* Testimonial */
.testimonial-box {
    max-width: 700px;
    margin: 0 auto 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(195,195,197,0.5);
    padding: 40px;
}
.testimonial-text {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-style: italic;
    color: #212121;
    line-height: 1.7;
    margin: 0 0 20px;
}
.testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #F4A530;
}

/* ============================================
   Section 5 - Trust-Building & Professional Ecom Launchers
   ============================================ */
.trust-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 10px;
}
.trust-section > .trust-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: min(100%, 1140px);
    margin: 0 auto;
    padding: 10px 0;
}
.trust-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: min(100%, 1140px);
    padding: 0 10px;
    align-self: center;
}
.trust-row > .trust-row-inner {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1120px;
    padding: 25px 0;
}
.trust-video-col {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 545px;
    max-width: 100%;
    height: 500px;
    flex-shrink: 0;
    align-self: center;
}
.reel-wrapper {
    position: relative;
    width: 281.25px;
    max-width: 100%;
    height: 500px;
}
#reelVideo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    background: #000;
}
#muteToggle {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.65);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    line-height: 1;
}
#muteToggle .emoji {
    width: 20px;
    height: 20px;
    display: block;
}
.trust-text-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 545px;
    max-width: 100%;
    flex-shrink: 0;
    align-self: center;
}
.trust-heading-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2em;
    color: #212121;
    margin: 0;
}
.trust-quote-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    color: rgba(60, 66, 75, 0.65);
    margin: 0;
}
.trust-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-top: 10px;
}
.trust-buttons .trust-btn-left {
    align-self: flex-start;
}
.trust-buttons .trust-btn-right {
    align-self: center;
}
.trust-buttons .trust-btn-wrap {
    display: inline-block;
}
.trust-buttons .trust-btn {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.trust-buttons .trust-btn-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.trust-buttons .btn-outline {
    background-color: #FCFCFC;
    border: 1px solid #F4A530;
    border-radius: 5px;
    color: #F4A530;
    font-size: 17px;
    padding: 15px 30px;
}
.trust-buttons .btn-outline:hover,
.trust-buttons .btn-outline:focus {
    background-color: rgba(251, 75, 2, 0);
    color: #F4A530;
    border-color: #FFFFFF;
}
.trust-buttons .btn-solid {
    background-color: #F4A530;
    border: 0;
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 15px;
    padding: 15px 28px;
}
.trust-buttons .btn-solid:hover,
.trust-buttons .btn-solid:focus {
    background-color: rgba(251, 75, 2, 0);
    color: #F4A530;
    border-color: #F4A530;
}
/* custom border-draw hover (reference custom CSS) */
.btn-outline::before,
.btn-outline::after,
.btn-outline span::before,
.btn-outline span::after,
.btn-solid::before,
.btn-solid::after,
.btn-solid span::before,
.btn-solid span::after {
    content: "";
    position: absolute;
    transition: all 0.3s ease;
    z-index: 0;
    pointer-events: none;
}
.btn-outline::before,
.btn-outline::after {
    background: #f4a530;
}
.btn-solid::before,
.btn-solid::after {
    background: #ffffff;
}
.btn-outline span::before,
.btn-outline span::after,
.btn-solid span::before,
.btn-solid span::after {
    background: rgba(251, 75, 2, 1);
}
.btn-outline::before,
.btn-solid::before {
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
}
.btn-outline::after,
.btn-solid::after {
    top: 0;
    right: 0;
    width: 2px;
    height: 0%;
}
.btn-outline span::before,
.btn-solid span::before {
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
}
.btn-outline span::after,
.btn-solid span::after {
    top: 0;
    left: 0;
    width: 2px;
    height: 0%;
}
.btn-outline:hover::before,
.btn-solid:hover::before {
    width: 100%;
}
.btn-outline:hover::after,
.btn-solid:hover::after {
    height: 100%;
}
.btn-outline:hover span::before,
.btn-solid:hover span::before {
    width: 100%;
}
.btn-outline:hover span::after,
.btn-solid:hover span::after {
    height: 100%;
}
.btn-outline:hover,
.btn-solid:hover {
    box-shadow: inset 0 0 10px rgba(251, 75, 2, 0.4);
}

/* ============================================
   Section 6 - Ecommerce Automation Services (tabs)
   ============================================ */
.automation-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 0 60px 0;
    padding: 70px 0 0 0;
}
.automation-section > .automation-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}
.automation-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 95%;
    max-width: 100%;
    align-self: center;
    padding: 0;
}
.automation-heading {
    width: 72%;
    max-width: 72%;
    text-align: center;
    align-self: center;
}
.automation-heading-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2em;
    color: #212121;
    margin: 0;
    text-align: center;
}
.automation-subtitle {
    width: 72%;
    max-width: 72%;
    text-align: center;
    align-self: center;
}
.automation-subtitle p {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #7A7A7A;
    line-height: 1.5em;
    margin: 0;
    text-align: center;
}
.automation-tabs {
    width: 100%;
    align-self: center;
}
.automation-tabs > .automation-widget-container {
    margin: 40px 0 0 0;
}
.automation-tabs .e-n-tabs {
    display: flex;
    flex-direction: row;
    gap: 45px;
    align-items: flex-start;
}
.automation-tabs .e-n-tabs-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    flex-basis: 22%;
    flex-grow: 0;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-content: flex-start;
}
.automation-tabs .e-n-tab-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 18px;
    border: 0;
    border-radius: 35px;
    background: #FFFFFF00;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.09);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #212121;
    text-align: left;
    cursor: pointer;
    flex-basis: content;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.automation-tabs .e-n-tab-title:focus {
    outline: none;
}
.automation-tabs .e-n-tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    color: #54595F;
}
.automation-tabs .e-n-tab-icon svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}
.automation-tabs .e-n-tab-title-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.automation-tabs .e-n-tab-title[aria-selected="false"]:hover {
    background: #F4A530;
    color: #FCFCFC;
    box-shadow: none;
}
.automation-tabs .e-n-tab-title[aria-selected="false"]:hover .e-n-tab-icon {
    color: #FFFFFF;
}
.automation-tabs .e-n-tab-title[aria-selected="true"] {
    background: #F4A530;
    color: #FCFCFC;
    box-shadow: none;
}
.automation-tabs .e-n-tab-title[aria-selected="true"] .e-n-tab-icon {
    color: #FFFFFF;
}
.automation-tabs .e-n-tabs-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.automation-tabs .tab-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-self: center;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    background: #FFFFFF00;
    padding: 10px;
}
.automation-tabs .tab-panel:not(.e-active) {
    display: none;
}
.tab-panel-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    width: 90%;
    max-width: 100%;
    align-self: center;
    padding: 25px 10px;
}
.tab-panel-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 45%;
    max-width: 100%;
    align-self: center;
}
.tab-panel-media img {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px;
}
.tab-panel-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 55%;
    max-width: 100%;
}
.tab-panel-cta {
    align-self: flex-start;
}
.tab-panel-cta .tab-btn {
    background-color: #FCFCFC;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #F4A530;
    border: 1px solid #F4A530;
    border-radius: 5px;
    padding: 15px 65px 15px 25px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}
.tab-panel-cta .tab-btn:hover,
.tab-panel-cta .tab-btn:focus {
    background-color: rgba(191, 19, 19, 0);
    color: #F4A530;
    border-color: #F4A530;
}
.tab-panel-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2em;
    color: #212121;
    margin: 0;
    text-align: left;
}
.tab-panel-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    color: rgba(60, 66, 75, 0.65);
    margin: 0;
    text-align: left;
}
.tab-panel-actions {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 10px 0 0 0;
    flex-wrap: wrap;
}
.tab-panel-contact {
    align-self: flex-start;
    padding-top: 10px;
}
.tab-panel-contact .tab-btn {
    background-color: #FCFCFC;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    color: #F4A530;
    border: 1px solid #F4A530;
    border-radius: 5px;
    padding: 15px 30px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}
.tab-panel-contact .tab-btn:hover,
.tab-panel-contact .tab-btn:focus {
    background-color: rgba(191, 19, 19, 0);
    color: #F4A530;
    border-color: #FFFFFF;
}
.tab-panel-phone {
    align-self: center;
    padding-top: 10px;
}
.tab-panel-phone .tab-btn {
    background-color: #F4A530;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #FFFFFF;
    border: 0;
    border-radius: 5px;
    padding: 15px 28px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}
.tab-panel-phone .tab-btn:hover,
.tab-panel-phone .tab-btn:focus {
    background-color: rgba(191, 19, 19, 0);
    color: #F4A530;
    border: 1px solid #F4A530;
}
.automation-tabs .tab-btn-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.automation-tabs .tab-btn-wrap {
    display: inline-block;
}

/* Section 6 responsive */
@media (min-width: 768px) and (max-width: 1024px) {
    .automation-heading {
        width: 400px;
        max-width: 400px;
    }
    .automation-heading-title {
        font-size: 30px;
    }
    .automation-tabs .e-n-tabs {
        flex-direction: column;
        gap: 30px;
    }
    .automation-tabs .e-n-tabs-heading {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        flex-basis: auto;
        width: 100%;
    }
    .automation-tabs .e-n-tab-title {
        padding: 15px;
        font-size: 15px;
        gap: 22px;
        flex-grow: 1;
    }
    .automation-tabs .tab-panel {
        margin: 0 20px 20px 20px;
    }
    .tab-panel-inner {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 20px;
    }
    .tab-panel-media {
        width: 100%;
        align-items: flex-start;
        align-self: flex-start;
    }
    .tab-panel-media img {
        height: 335px;
    }
    .tab-panel-body {
        width: 100%;
        justify-content: center;
        align-items: center;
        align-self: center;
    }
    .tab-panel-title {
        font-size: 26px;
        text-align: center;
    }
    .tab-panel-desc {
        font-size: 15px;
        text-align: center;
    }
    .tab-panel-cta,
    .tab-panel-contact,
    .tab-panel-phone {
        align-self: center;
        padding-top: 10px;
    }
    .tab-panel-cta .tab-btn {
        font-size: 14px;
        padding: 12px 30px 12px 15px;
    }
    .tab-panel-contact .tab-btn {
        font-size: 15px;
        padding: 15px 15px;
    }
    .tab-panel-phone .tab-btn {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .automation-content {
        width: 92%;
    }
    .automation-heading {
        width: 100%;
        max-width: 100%;
    }
    .automation-heading-title {
        font-size: 25px;
    }
    .automation-subtitle {
        width: 100%;
        max-width: 100%;
    }
    .automation-tabs .e-n-tabs-heading {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        flex-basis: auto;
        width: 100%;
    }
    .automation-tabs .e-n-tabs {
        flex-direction: column;
        gap: 20px;
    }
    .automation-tabs .e-n-tab-title {
        font-size: 14px;
        padding: 15px;
    }
    .tab-panel-title {
        font-size: 25px;
    }
    .tab-panel-desc {
        font-size: 14px;
    }
    .tab-panel-cta .tab-btn,
    .tab-panel-contact .tab-btn,
    .tab-panel-phone .tab-btn {
        font-size: 14px;
    }
    .tab-panel-media img {
        height: 335px;
    }
    .tab-panel-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   Section 7 - Let's Automate Your Success
   ============================================ */
.automation-card-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 0 40px 0;
    padding: 0;
    z-index: 1;
}
.automation-card-section > .s7-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 40px 0 0;
}
.s7-card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 95%;
    border-radius: 25px;
    box-shadow: 0 0 20px rgba(60, 66, 75, 0.53);
    background-image: url('../images/chatgpt-automation.png');
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    margin: 0 0 60px 0;
    padding: 30px 10px 30px 15px;
}
.s7-content {
    display: flex;
    flex-direction: column;
    width: 65%;
    gap: 20px;
    padding: 10px;
}
.s7-heading {
    width: 89.386%;
    text-align: start;
}
.s7-heading-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1em;
    color: #FFFFFF;
    margin: 0;
}
.s7-text {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #FFFDFD;
}
.s7-text p {
    margin: 0 0 14.4px 0;
}
.s7-actions-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding-top: 10px;
}
.s7-actions-row .s7-btn {
    flex: 0 0 auto;
}
.s7-actions-row .s7-btn-left {
    align-self: flex-start;
    text-align: left;
}
.s7-actions-row .s7-btn-right {
    align-self: center;
    text-align: right;
}
.s7-consult-heading {
    text-align: start;
    flex-shrink: 0;
}
.s7-consult-title {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    color: #FCFCFC;
    margin: 0;
}
.s7-actions-row .s7-btn-wrap {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.s7-actions-row .s7-btn-link {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.s7-actions-row .s7-btn-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.s7-actions-row .btn-outline {
    background-color: transparent;
    border: 1px solid #F4A530;
    color: #F4A530;
    font-size: 17px;
    padding: 15px 35px;
}
.s7-actions-row .btn-outline:hover,
.s7-actions-row .btn-outline:focus {
    background-color: transparent;
    color: #F4A530;
    border-color: #FFFFFF;
}
.s7-actions-row .btn-solid {
    background-color: #F4A530;
    border: 0;
    color: #FFFFFF;
    font-size: 15px;
    padding: 15px 30px 15px 35px;
}
.s7-actions-row .btn-solid:hover,
.s7-actions-row .btn-solid:focus {
    background-color: transparent;
    color: #F4A530;
    border-color: #F4A530;
}
.s7-logos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 35%;
    padding: 10px;
}
.s7-logos-widget {
    text-align: center;
}
.s7-logos img {
    width: 80%;
    max-width: 100%;
    height: auto;
    opacity: 1;
    display: block;
    margin: 0 auto;
}

/* Section 7 responsive */
@media (min-width: 768px) and (max-width: 1024px) {
    .s7-card {
        padding: 15px 10px;
    }
    .s7-heading {
        width: 405.214px;
        max-width: 405.214px;
    }
    .s7-heading-title {
        font-size: 30px;
    }
    .s7-actions-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .s7-consult-heading {
        width: 180.107px;
    }
    .s7-consult-title {
        font-size: 15px;
    }
    .s7-actions-row .s7-btn-tablet-left {
        align-self: flex-start;
        text-align: left;
    }
    .s7-actions-row .btn-outline {
        font-size: 15px;
    }
    .s7-actions-row .btn-solid {
        font-size: 15px;
    }
    .s7-logos {
        width: 42%;
    }
}
@media (max-width: 767px) {
    .automation-card-section {
        padding: 0;
    }
.automation-card-section > .s7-inner {
        width: 92%;
        padding: 25px 0 0;
    }
    .s7-card {
        flex-wrap: wrap;
        width: 100%;
        padding: 15px 10px;
        margin-bottom: 40px;
    }
    .s7-content {
        width: 100%;
    }
    .s7-heading {
        width: 100%;
        max-width: 100%;
    }
    .s7-heading-title {
        font-size: 25px;
    }
    .s7-text {
        font-size: 14px;
    }
    .s7-actions-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .s7-consult-heading {
        width: 100%;
    }
    .s7-consult-title {
        font-size: 14px;
    }
    .s7-actions-row .btn-outline {
        font-size: 14px;
    }
    .s7-actions-row .btn-solid {
        font-size: 14px;
    }
    .s7-logos {
        width: 100%;
    }
    .s7-logos img {
        max-width: 100%;
    }
}

/* Section 8 - Why Ecom Launchers */
.s8-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0px;
    width: 100%;
}
.s8-bg {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 70%;
    padding: 70px 30px;
    background-image: url('../images/Services-10-scaled.webp');
    background-position: 0% 0%;
    background-repeat: repeat;
    background-size: auto;
}
.s8-inner {
    display: flex;
    flex-direction: column;
    width: 75%;
}
.s8-heading {
    width: 89.386%;
    max-width: 89.386%;
    text-align: start;
}
.s8-heading-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1em;
    color: #FCFCFC;
    margin: 0;
}
.s8-iconbox {
    width: 100%;
    max-width: 100%;
}
.s8-iconbox > .s8-iconbox-container {
    padding: 10px 0px 0px 0px;
}
.s8-iconbox-2 > .s8-iconbox-container,
.s8-iconbox-3 > .s8-iconbox-container {
    padding: 15px 0px 0px 0px;
}
.s8-iconbox .s8-iconbox-wrapper {
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: start;
    gap: 6px;
}
.s8-iconbox .s8-iconbox-icon {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}
.s8-iconbox .s8-icon {
    font-size: 28px;
    color: #F4A530;
    fill: #F4A530;
}
.s8-iconbox .s8-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.s8-iconbox .s8-iconbox-content {
    flex: 1;
}
.s8-iconbox .s8-iconbox-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 12px;
    color: #FCFCFC;
    margin: 0 0 20px 0;
}
.s8-iconbox .s8-iconbox-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FCFCFC;
    margin: 0;
}
.s8-spacer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    width: 30%;
}
@media (max-width: 1024px) {
    .s8-section {
        min-height: 1200px;
    }
    .s8-heading {
        width: 405.214px;
        max-width: 405.214px;
    }
    .s8-heading-title {
        font-size: 30px;
    }
    .s8-iconbox .s8-iconbox-title {
        font-size: 20px;
    }
    .s8-iconbox .s8-iconbox-desc {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .s8-bg {
        width: 100%;
        padding: 40px 15px;
    }
    .s8-inner {
        width: 100%;
    }
    .s8-heading {
        width: 100%;
        max-width: 100%;
    }
    .s8-heading-title {
        font-size: 25px;
    }
    .s8-iconbox .s8-iconbox-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .s8-spacer {
        width: 100%;
    }
}

/* Section 9 - Young Man Image */
.youngman-section {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0px;
    width: 100%;
    padding: 0;
    margin: 0;
}
.youngman-section > .youngman-inner {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 0px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.youngman-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 45%;
    align-self: center;
    margin-top: -600px;
    padding: 0;
}
.youngman-col img {
    width: 100%;
    max-width: 70%;
    height: auto;
    border-radius: 25px;
}
@media (max-width: 1024px) {
    .youngman-col img {
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .youngman-section > .youngman-inner {
        width: 92%;
        max-width: 92%;
    }
    .youngman-col {
        width: 100%;
        margin-top: -385px;
        padding-right: 33px;
        align-items: center;
    }
}

/* Section 10 - Our Simple 4-Step Process Metrics */
.s10-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
    padding: 70px 0 0 0;
}
.s10-section > .s10-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    padding: 0;
}
.s10-head-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 95%;
}
.s10-heading {
    width: 46%;
    max-width: 46%;
    text-align: center;
}
.s10-heading-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2em;
    color: #212121;
    margin: 0;
}
.s10-heading-title .per {
    color: #f4a530;
    text-shadow: 1px 1px 2px rgba(255, 165, 48, 0.6);
}
.s10-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 44px;
    align-items: stretch;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
}
.s10-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    background: #ffffff;
    border: 3px dashed #C3C3C5;
    border-radius: 25px;
    box-shadow: 0px 0px 15px 0px rgba(195, 195, 197, 0.79);
    padding: 55px 15px;
    position: relative;
}
.s10-card-1 {
    border-width: 3px 0px 3px 3px;
}
.s10-card-2 {
    border-width: 3px 0px 3px 0px;
}
.s10-card-3 {
    border-width: 3px 0px 2px 0px;
}
.s10-card-4 {
    border-width: 3px 3px 3px 0px;
}
.s10-card-img {
    height: 0;
    text-align: center;
    align-self: center;
}
.s10-card-img-container {
    margin-top: -78px;
}
.s10-card-img img {
    width: 22%;
    height: auto;
}
.s10-card-text .s10-iconbox-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
}
.s10-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2em;
    color: #212121;
    margin: 0;
    margin-bottom: 8px;
}
.s10-card-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #3C424BA6;
    margin: 0;
}
.s10-card-arrow {
    position: absolute;
    right: 0;
    bottom: 191px;
    text-align: end;
}
.s10-card-arrow-container {
    margin: 0 -59px 0 0;
}
.s10-card-arrow img {
    width: 14%;
    height: auto;
}
@media (min-width: 768px) {
    .s10-grid {
        width: 95%;
    }
}
@media (max-width: 1024px) {
    .s10-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .s10-card-arrow-container {
        margin-right: -18px;
    }
    .s10-card-1 .s10-card-arrow-container {
        margin-right: -18px;
    }
    .s10-card-1 .s10-card-arrow img,
    .s10-card-3 .s10-card-arrow img {
        width: 12%;
    }
}
@media (max-width: 767px) {
    .s10-section {
        padding: 0;
    }
    .s10-section > .s10-inner {
        width: 92%;
        max-width: 92%;
    }
    .s10-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .s10-heading {
        width: 255.771px;
        max-width: 255.771px;
    }
    .s10-heading-title {
        font-size: 28px;
    }
    .s10-card-img img {
        width: 25%;
    }
    .s10-card-desc {
        font-size: 14px;
        line-height: 21px;
    }
    .s10-card-arrow {
        display: none;
    }
}

/* Platform Image container */
.platform-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.platform-image .placeholder-img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background: #e0e0e0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8A8A8E;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .services-title {
        font-size: 30px;
    }
    .two-col-inner {
        flex-direction: column !important;
        gap: 40px;
    }
    .why-inner {
        flex-direction: column;
    }
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    .process-arrow {
        transform: rotate(90deg);
    }
    .cta-title {
        font-size: 26px;
    }
    .two-col-subtitle {
        font-size: 24px;
    }
    .metrics-title {
        font-size: 32px;
    }
    .metrics-track img {
        width: 32%;
    }
    .trust-row > .trust-row-inner {
        flex-direction: column;
    }
    .trust-video-col {
        justify-content: center;
        align-items: flex-start;
        align-self: flex-start;
        width: 100%;
    }
    .trust-text-col {
        justify-content: center;
        align-items: center;
        align-self: center;
        width: 100%;
    }
    .trust-heading-title {
        text-align: center;
        font-size: 26px;
    }
    .trust-quote-title {
        text-align: center;
        font-size: 15px;
    }
    .trust-buttons {
        justify-content: center;
        align-items: center;
        align-self: center;
        gap: 12px;
        padding-top: 0;
    }
    .trust-buttons .trust-btn-right {
        align-self: flex-start;
    }
    .trust-buttons .btn-outline {
        font-size: 15px;
        padding: 15px 15px;
    }
    .trust-buttons .btn-solid {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .services-title {
        font-size: 24px;
    }
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .service-item {
        width: auto;
    }
    .cta-title {
        font-size: 22px;
    }
    .two-col-subtitle {
        font-size: 20px;
    }
    .testimonial-box {
        padding: 25px;
    }
    .testimonial-text {
        font-size: 16px;
    }
    .faq-title {
        font-size: 24px;
    }
    .process-title {
        font-size: 24px;
    }
    .why-step-number {
        font-size: 28px;
    }
    .metrics-section {
        min-height: auto;
    }
    .metrics-title {
        font-size: 26px;
    }
    .metrics-subtitle {
        font-size: 15px;
    }
    .metrics-track img {
        width: calc(50vw - 12px) !important;
        flex: 0 0 calc(50vw - 12px) !important;
        height: 260px;
    }
    
    /* Accordion behavior for nested tabs on mobile */
    .automation-tabs .e-n-tabs {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    .automation-tabs .e-n-tabs-heading,
    .automation-tabs .e-n-tabs-content {
        display: contents !important;
    }
    .automation-tabs .e-n-tab-title {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    #e-n-tab-title-2152041591 { order: 1 !important; }
    #e-n-tab-content-2152041591 { order: 2 !important; }
    
    #e-n-tab-title-2152041592 { order: 3 !important; }
    #e-n-tab-content-2152041592 { order: 4 !important; }
    
    #e-n-tab-title-2152041593 { order: 5 !important; }
    #e-n-tab-content-2152041593 { order: 6 !important; }
    
    #e-n-tab-title-2152041594 { order: 7 !important; }
    #e-n-tab-content-2152041594 { order: 8 !important; }
    
    #e-n-tab-title-2152041595 { order: 9 !important; }
    #e-n-tab-content-2152041595 { order: 10 !important; }

    /* Stack tab panel contents vertically (rows) on mobile */
    .tab-panel-inner {
        flex-direction: column !important;
        width: 100% !important;
        align-items: center !important;
        gap: 20px !important;
    }
    .tab-panel-media {
        width: 100% !important;
    }
    .tab-panel-body {
        width: 100% !important;
        align-items: center !important;
        text-align: center !important;
    }
    .tab-panel-title {
        text-align: center !important;
    }
    .tab-panel-desc {
        text-align: center !important;
    }
    .tab-panel-actions {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .tab-panel-actions .tab-btn-wrap,
    .tab-panel-actions a {
        width: 100% !important;
        max-width: 300px !important;
        display: inline-block !important;
    }
    .tab-panel-cta {
        align-self: center !important;
    }
    .tab-panel-cta .tab-btn {
        padding: 15px 35px !important;
    }

    .trust-heading-title {
        font-size: 25px;
    }
    .trust-quote-title {
        font-size: 14px;
    }
    .trust-buttons .btn-outline {
        font-size: 14px;
    }
    .trust-buttons .btn-solid {
        font-size: 14px;
    }
    .metrics-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .metrics-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   Section 11 - FAQ (Accordion)
   Reference: 095b744
   ============================================ */
.s11-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}
.s11-inner {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 0 40px 0;
    box-sizing: border-box;
}
.s11-row {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px 30px;
    padding-top: 10px;
    align-self: center;
}
.s11-img-col {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px 10px;
    padding: 0;
    align-self: center;
    width: 100%;
    flex: 0 1 auto;
}
.s11-img-widget {
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-self: center;
}
.s11-img-widget img {
    width: 60%;
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    object-fit: fill;
}
.s11-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    align-self: center;
    width: 100%;
    flex: 0 1 auto;
    row-gap: 20px;
    column-gap: 20px;
}
.s11-heading {
    width: 100%;
    max-width: 100%;
    text-align: start;
    flex-grow: 0;
    flex-shrink: 0;
}
.s11-heading-title {
    font-family: Montserrat, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2em;
    color: #212121;
    margin: 0;
}
.s11-accordion {
    width: 100%;
    max-width: 100%;
}
.s11-acc-item {
    display: block;
}
.s11-acc-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 20px;
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: #F4A530;
    cursor: pointer;
    font-size: 16px;
    color: #212121;
    list-style: none;
    box-sizing: border-box;
}
.s11-acc-title::-webkit-details-marker {
    display: none;
}
.s11-acc-title::marker {
    content: none;
}
.s11-acc-title:hover {
    color: #F4A530;
}
.s11-acc-item[open] > .s11-acc-title {
    color: #F4A530;
}
.s11-acc-title-header {
    line-height: 1.4em;
    min-width: 0;
}
.s11-acc-title-text {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    line-height: 1.4em;
}
.s11-acc-title-icon {
    display: flex;
    align-items: center;
    order: -1;
}
.s11-acc-title-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.s11-acc-title-icon .s11-acc-icon-open {
    display: none;
}
.s11-acc-title-icon .s11-acc-icon-closed {
    display: flex;
}
.s11-acc-item[open] > .s11-acc-title .s11-acc-title-icon .s11-acc-icon-open {
    display: flex;
}
.s11-acc-item[open] > .s11-acc-title .s11-acc-title-icon .s11-acc-icon-closed {
    display: none;
}
.s11-acc-content {
    display: flex;
    flex-direction: column;
    align-items: normal;
    padding: 10px;
    border-style: none;
    box-sizing: border-box;
}
.s11-acc-answer-wrap {
    text-align: start;
}
.s11-acc-answer {
    font-family: Raleway, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    color: #3C424BA6;
    margin: 0;
    text-align: start;
}
@media (max-width: 1024px) {
    .s11-img-widget img {
        width: 100%;
    }
    .s11-heading-title {
        font-size: 30px;
    }
    .s11-acc-answer {
        font-size: 15px;
    }
}
@media (min-width: 768px) {
    .s11-section {
        margin: 20px 0;
    }
    .s11-row {
        width: 90%;
    }
    .s11-img-col {
        width: 40%;
    }
    .s11-content-col {
        width: 60%;
    }
}
@media (max-width: 767px) {
    .s11-row {
        width: 92%;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .s11-img-widget img {
        width: 50%;
    }
    .s11-content-col {
        order: 1;
    }
    .s11-heading {
        text-align: center;
    }
    .s11-heading-title {
        font-size: 25px;
    }
    .s11-accordion-container {
        margin: 5px 0 0 0;
    }
}

/* Video Section */
.video-section {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    background: #FCFCFC;
    box-sizing: border-box;
    width: 100%;
}
.video-container {
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    aspect-ratio: 16 / 9;
}
.featured-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
