﻿/* =====================================================
   OD-PAY PREMIUM TOP BAR
===================================================== */

.od-topbar {

    width: 100%;

    height: 40px;

    background:
        linear-gradient( 90deg, #03224e 0%, #031b3d 50%, #011127 100% );

    border-bottom:
        1px solid
        rgba(216, 173, 85, .12);

    position: relative;

    z-index: 1000;

}


/* =====================================================
   TOPBAR CONTAINER
===================================================== */

.od-topbar-container {

    width:
        min(1200px, calc(100% - 50px));

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =====================================================
   LEFT SIDE
===================================================== */

.od-topbar-left {

    display: flex;

    align-items: center;

    gap: 13px;

    min-width: 0;

}


/* =====================================================
   SYSTEM ACTIVE
===================================================== */

.od-live {

    display: flex;

    align-items: center;

    gap: 6px;

    color:
        rgba(255,255,255,.82);

    font-family:
        'DM Sans',
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .7px;

    white-space: nowrap;

}


/* LIVE DOT */

.od-live-dot {

    width: 6px;

    height: 6px;

    flex: 0 0 6px;

    border-radius: 50%;

    background: #55d69a;

    box-shadow:
        0 0 0 3px
        rgba(85,214,154,.08);

}


/* =====================================================
   DIVIDER
===================================================== */

.od-top-divider {

    width: 1px;

    height: 13px;

    flex: 0 0 1px;

    background:
        rgba(255,255,255,.13);

}


/* =====================================================
   BRAND MESSAGE
===================================================== */

.od-top-message {

    color:
        rgba(255,255,255,.92);

    font-family:
        'DM Sans',
        sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .8px;

    white-space: nowrap;

}


/* =====================================================
   BUSINESS TAG
===================================================== */

.od-top-tag {

    color:
        rgba(216,173,85,.72);

    font-family:
        'DM Sans',
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .7px;

    white-space: nowrap;

}


/* =====================================================
   RIGHT SIDE
===================================================== */

.od-topbar-right {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 8px;

    flex-shrink: 0;

}


/* =====================================================
   SUPPORT
===================================================== */

.od-top-contact {

    display: flex;

    align-items: center;

    gap: 6px;

    color:
        rgba(255,255,255,.78);

    font-family:
        'DM Sans',
        sans-serif;

    font-size: 10px;

    font-weight: 600;

    white-space: nowrap;

}


.od-top-contact i {

    color: #d8ad55;

    font-size: 12px;

}


/* =====================================================
   SOCIAL ICON
===================================================== */

.od-social {

    width: 24px;

    height: 24px;

    flex: 0 0 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        rgba(255,255,255,.68);

    text-decoration: none;

    border-radius: 50%;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;

}


/* ICON */

.od-social i {

    font-size: 11px;

    line-height: 1;

}


/* =====================================================
   PREMIUM HOVER
   NO UNDERLINE
===================================================== */

.od-social:hover {

    color: #f1d78f;

    background:
        rgba(216,173,85,.09);

    transform:
        translateY(-1px);

}


/* =====================================================
   MOBILE TOP BAR
   LEFT = OD-PAY NAME
   RIGHT = SOCIAL ICONS ONLY
===================================================== */

@media (max-width: 768px) {

    .od-topbar {

        height: 40px;

    }


    .od-topbar-container {

        width:
            calc(100% - 24px);

        gap: 8px;

    }


    /* LEFT */

    .od-topbar-left {

        flex: 1;

        min-width: 0;

        gap: 0;

    }


    /* Hide unnecessary desktop content */

    .od-live,
    .od-top-tag,
    .od-topbar-left .od-top-divider {

        display: none;

    }


    /* Brand */

    .od-top-message {

        display: block;

        max-width: 100%;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;

        color:
            rgba(255,255,255,.9);

        font-size: 9px;

        font-weight: 800;

        letter-spacing: .7px;

    }


    /* RIGHT */

    .od-topbar-right {

        gap: 5px;

    }


    /* Hide support and divider */

    .od-top-contact,
    .od-topbar-right .od-top-divider {

        display: none;

    }


    /* Social icons */

    .od-social {

        width: 25px;

        height: 25px;

        flex: 0 0 25px;

    }


    .od-social i {

        font-size: 11px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .od-topbar {

        height: 38px;

    }


    .od-topbar-container {

        width:
            calc(100% - 18px);

        gap: 5px;

    }


    .od-top-message {

        font-size: 8px;

        letter-spacing: .55px;

    }


    .od-topbar-right {

        gap: 4px;

    }


    .od-social {

        width: 23px;

        height: 23px;

        flex-basis: 23px;

    }


    .od-social i {

        font-size: 10px;

    }

}


/* =====================================================
   EXTRA SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .od-topbar-container {

        width:
            calc(100% - 14px);

    }


    .od-top-message {

        font-size: 7.5px;

        letter-spacing: .4px;

    }


    .od-topbar-right {

        gap: 3px;

    }


    .od-social {

        width: 21px;

        height: 21px;

        flex-basis: 21px;

    }


    .od-social i {

        font-size: 9px;

    }

}


/* =====================================================
   VERY SMALL DEVICES
===================================================== */

@media (max-width: 340px) {

    .od-top-message {

        font-size: 7px;

        letter-spacing: .25px;

    }


    .od-social {

        width: 20px;

        height: 20px;

        flex-basis: 20px;

    }


    .od-social i {

        font-size: 8px;

    }

}
/* =====================================================
   OD-PAY STICKY NAVBAR
===================================================== */

.od-navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 85px;
   background: linear-gradient(
    100deg,
    #FFFFFF 0%,
    #F9FCFF 20%,
    #EAF4FC 45%,
    #CFE5F7 70%,
    #A9CFEA 100%
);
    border-bottom: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}


/* =====================================================
   NAVBAR CONTAINER
===================================================== */

.od-navbar-container {

    width:
        min(1200px, calc(100% - 50px));

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;

}


/* =====================================================
   LOGO
===================================================== */

.od-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    text-decoration: none;

}


.od-logo-box {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    color: #07111f;

    background:
        linear-gradient(
            135deg,
            #f4dc9c,
            #d8ad55
        );

    font-family:
        'Manrope',
        sans-serif;

    font-size: 13px;

    font-weight: 800;

}


.od-logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.od-logo-text strong {

    color: #fff;

    font-family:
        'Manrope',
        sans-serif;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 1px;

}


.od-logo-text small {

    margin-top: 4px;

    color: #d8ad55;

    font-family:
        'DM Sans',
        sans-serif;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1px;

}


/* =====================================================
   DESKTOP NAV
===================================================== */

.od-nav-menu {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 32px;

}


.od-nav-menu a {

    position: relative;

    color:
        rgb(2, 70, 148);

    font-family:
        'DM Sans',
        sans-serif;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;

}


/* Premium hover
   NO UNDERLINE */

.od-nav-menu a:hover {

    color: #f1d78f;

    transform:
        translateY(-1px);

}


/* =====================================================
   LOGIN ICON
===================================================== */

.od-login-btn {

    width: 41px;

    height: 41px;

    margin-left: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    color:
        rgb(1, 64, 142);

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(21, 19, 17, 0.22);

    border-radius: 10px;

    text-decoration: none;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;

}


.od-login-btn i {

    font-size: 17px;

}


.od-login-btn:hover {

    color: #07111f;

    background: #d8ad55;

    border-color: #d8ad55;

    transform:
        translateY(-1px);

}


/* =====================================================
   MOBILE TOGGLE
===================================================== */

.od-menu-toggle {

    display: none;

    width: 41px;

    height: 41px;

    margin-left: 8px;

    padding: 0;

    border:
        1px solid
        rgba(216,173,85,.22);

    border-radius: 10px;

    background:
        rgba(255,255,255,.025);

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.od-menu-toggle span {

    width: 18px;

    height: 1.5px;

    border-radius: 10px;

    background: #07295e;

    transition:
        transform .3s ease,
        opacity .3s ease;

}


/* =====================================================
   MOBILE MENU
===================================================== */

.od-mobile-menu {

    position: absolute;

    top: calc(100% + 8px);

    left: 12px;

    right: 12px;

    display: flex;

    flex-direction: column;

    padding: 8px;

    border:
        1px solid
        rgba(216,173,85,.17);

    border-radius: 14px;

    background:
        rgba(7,17,31,.99);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.38);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translateY(-8px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

}


.od-mobile-menu.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateY(0);

}


.od-mobile-menu a {

    min-height: 48px;

    padding:
        0 14px;

    display: flex;

    align-items: center;

    gap: 13px;

    color:
        rgba(255,255,255,.88);

    border-radius: 9px;

    font-family:
        'DM Sans',
        sans-serif;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color .25s ease,
        background .25s ease,
        padding-left .25s ease;

}


.od-mobile-menu a i {

    width: 21px;

    color: #d8ad55;

    font-size: 17px;

}


.od-mobile-menu a:hover {

    color: #f1d78f;

    background:
        rgba(216,173,85,.07);

    padding-left: 18px;

}

/* =====================================================
   REGISTER BUTTON
   MOBILE ONLY
===================================================== */

.od-register {
    display: none;

    width: 38px;
    height: 38px;

    align-items: center;
    justify-content: center;

    color: #09233F;

    background:
        rgba(255,255,255,.55);

    border: 1px solid
        rgba(9,35,63,.16);

    border-radius: 8px;

    text-decoration: none;

    font-size: 15px;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.od-register:hover {
    color: #FFFFFF;

    background: #1769AA;

    border-color: #1769AA;

    transform: translateY(-2px);
}


/* =====================================================
   SHOW REGISTER ONLY ON MOBILE
===================================================== */

@media (max-width: 767px) {

    .od-register {
        display: flex;

        margin-left: 6px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .od-register {
        width: 36px;
        height: 36px;

        margin-left: 5px;

        font-size: 14px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 360px) {

    .od-register {
        width: 34px;
        height: 34px;

        font-size: 13px;
    }

}
/* =====================================================
   HAMBURGER → X
===================================================== */

.od-menu-toggle.active span:nth-child(1) {

    transform:
        translateY(6.5px)
        rotate(45deg);

}


.od-menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.od-menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-6.5px)
        rotate(-45deg);

}
/* =========================
   OD-PAY LOGO
========================= */

.od-logo {
    display: flex;
    align-items: center;
    height: 76px;
    flex-shrink: 0;
    text-decoration: none;
}

.od-logo img {
    display: block;
    width: auto;
    height: 68px;
    max-width: 210px;
    object-fit: contain;
    transition: all .3s ease;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .od-logo {
        height: 70px;
    }

    .od-logo img {
        height: 60px;
        max-width: 190px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .od-logo {
        height: 64px;
    }

    .od-logo img {
        height: 52px;
        max-width: 165px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .od-logo {
        height: 60px;
    }

    .od-logo img {
        height: 47px;
        max-width: 150px;
    }
}


/* =========================
   VERY SMALL DEVICES
========================= */

@media (max-width: 360px) {

    .od-logo {
        height: 58px;
    }

    .od-logo img {
        height: 44px;
        max-width: 140px;
    }
}
/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .od-navbar-container {

        width:
            calc(100% - 40px);

    }


    .od-nav-menu {

        gap: 21px;

    }


    .od-nav-menu a {

        font-size: 12px;

    }


    .od-login-btn {

        margin-left: 18px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .od-navbar {

        height: 64px;

    }


    .od-navbar-container {

        width:
            calc(100% - 24px);

    }


    /* Hide desktop navigation */

    .od-nav-menu {

        display: none;

    }


    /* Login */

    .od-login-btn {

        width: 38px;

        height: 38px;

        margin-left: auto;

    }


    .od-login-btn i {

        font-size: 16px;

    }


    /* Hamburger */

    .od-menu-toggle {

        display: flex;

    }


    /* Mobile menu */

    .od-mobile-menu {

        left: 10px;

        right: 10px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .od-navbar {

        height: 60px;

    }


    .od-navbar-container {

        width:
            calc(100% - 18px);

    }


    .od-logo-box {

        width: 36px;

        height: 36px;

        border-radius: 9px;

    }


    .od-logo-text strong {

        font-size: 15px;

    }


    .od-logo-text small {

        font-size: 6px;

    }


    .od-login-btn {

        width: 36px;

        height: 36px;

    }


    .od-menu-toggle {

        width: 36px;

        height: 36px;

    }


    .od-mobile-menu {

        left: 8px;

        right: 8px;

    }

}
/* =========================================================
   OD-PAY FOOTER
========================================================= */

.od-footer {
    width: 100%;
  
    background:
        linear-gradient(
            135deg,
            #071A33 0%,
            #0A2D52 55%,
            #0D416F 100%
        );

    color: #FFFFFF;

    color: #ffffff;
    font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
    position: relative;
    overflow: hidden;
}


/* =========================================================
   MAIN FOOTER CONTAINER
========================================================= */

.od-footer-container {
    width: min(1200px, calc(100% - 60px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.6fr 1fr 1.15fr 1.25fr;

    gap: 60px;

    padding: 65px 0 55px;
}


/* =========================================================
   BRAND
========================================================= */

.od-footer-brand {
    max-width: 380px;
}


/* LOGO */

.od-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    color: #ffffff;

    margin-bottom: 22px;
}


/* LOGO MARK */

.od-footer-logo-mark {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #d8ad55;
    color: #07111f;

    border-radius: 12px;

    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;

    box-shadow: 0 8px 25px rgba(216, 173, 85, 0.16);
}


/* LOGO TEXT */

.od-footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.od-footer-logo-text strong {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.od-footer-logo-text small {
    margin-top: 5px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.3px;

    color: #d8ad55;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.od-footer-description {
    margin: 0;

    max-width: 350px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.od-footer-social {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-top: 25px;
}

.od-footer-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    color: rgba(255, 255, 255, 0.75);

    text-decoration: none;

    background: rgba(255, 255, 255, 0.025);

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.od-footer-social a i {
    font-size: 15px;
    line-height: 1;
}

.od-footer-social a:hover {
    color: #07111f;
    background: #d8ad55;
    border-color: #d8ad55;

    transform: translateY(-3px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.od-footer-column {
    min-width: 0;
}

.od-footer-column h4 {
    position: relative;

    margin: 0 0 23px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.3px;
}


/* Small gold indicator */

.od-footer-column h4::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    margin-top: 9px;

    background: #d8ad55;
    border-radius: 10px;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.od-footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.od-footer-column ul li {
    margin-bottom: 13px;
}

.od-footer-column ul li:last-child {
    margin-bottom: 0;
}

.od-footer-column ul li a {
    display: inline-flex;
    align-items: center;

    color: rgba(255, 255, 255, 0.67);

    font-size: 14px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.od-footer-column ul li a::before {
    content: "›";

    margin-right: 8px;

    color: #d8ad55;

    font-size: 17px;
    line-height: 1;
}

.od-footer-column ul li a:hover {
    color: #d8ad55;
    transform: translateX(4px);
}


/* =========================================================
   CONTACT
========================================================= */

.od-footer-contact {
    max-width: 280px;
}

.od-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-bottom: 19px;
}

.od-contact-item:last-child {
    margin-bottom: 0;
}


/* Contact icon */

.od-contact-icon {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(216, 173, 85, 0.08);

    border: 1px solid rgba(216, 173, 85, 0.18);

    border-radius: 9px;

    color: #d8ad55;
}

.od-contact-icon i {
    font-size: 15px;
}


/* Contact text */

.od-contact-item strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}

.od-contact-item p {
    margin: 0;

    color: rgba(255, 255, 255, 0.64);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.od-footer-bottom {
    width: 100%;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(
            135deg,
            #071A33 0%,
            #0A2D52 55%,
            #0D416F 100%
        );

    color: #FFFFFF;
}



.od-footer-bottom-container {
    width: min(1200px, calc(100% - 60px));
    min-height: 65px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.od-footer-bottom-container p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   BOTTOM LINKS
========================================================= */

.od-footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 12px;
}

.od-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;

    text-decoration: none;

    transition: color 0.25s ease;
}

.od-footer-bottom-links a:hover {
    color: #d8ad55;
}

.od-footer-bottom-links span {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: rgba(216, 173, 85, 0.55);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .od-footer-container {
        grid-template-columns: 1.4fr 1fr 1fr;

        gap: 45px;

        padding: 55px 0 45px;
    }

    .od-footer-brand {
        grid-column: span 3;
        max-width: 650px;
    }

    .od-footer-description {
        max-width: 600px;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 768px) {

    .od-footer-container {
        width: calc(100% - 40px);

        grid-template-columns: 1fr 1fr;

        gap: 42px 35px;

        padding: 50px 0 42px;
    }


    .od-footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }


    .od-footer-description {
        max-width: 600px;

        font-size: 14px;
    }


    .od-footer-column h4 {
        margin-bottom: 20px;
    }


    .od-footer-column ul li {
        margin-bottom: 12px;
    }


    .od-footer-bottom-container {
        width: calc(100% - 40px);

        min-height: auto;

        padding: 18px 0;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        text-align: center;

        gap: 10px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .od-footer-container {
        width: calc(100% - 32px);

        display: flex;
        flex-direction: column;

        gap: 34px;

        padding: 45px 0 38px;
    }


    .od-footer-brand {
        width: 100%;
        max-width: 100%;
    }


    .od-footer-logo {
        margin-bottom: 18px;
    }


    .od-footer-logo-mark {
        width: 45px;
        height: 45px;

        border-radius: 11px;

        font-size: 15px;
    }


    .od-footer-logo-text strong {
        font-size: 19px;
    }


    .od-footer-logo-text small {
        font-size: 12px;
    }


    .od-footer-description {
        max-width: 100%;

        font-size: 14px;
        line-height: 1.75;
    }


    .od-footer-social {
        margin-top: 21px;

        gap: 8px;
    }


    .od-footer-social a {
        width: 39px;
        height: 39px;
    }


    .od-footer-social a i {
        font-size: 15px;
    }


    .od-footer-column {
        width: 100%;
    }


    .od-footer-column h4 {
        font-size: 15px;
        margin-bottom: 18px;
    }


    .od-footer-column ul li {
        margin-bottom: 12px;
    }


    .od-footer-column ul li a {
        font-size: 14px;

        min-height: 28px;
    }


    .od-footer-contact {
        max-width: 100%;
    }


    .od-contact-item {
        margin-bottom: 17px;

        gap: 12px;
    }


    .od-contact-icon {
        width: 37px;
        height: 37px;

        flex-basis: 37px;
    }


    .od-contact-item strong {
        font-size: 13px;
    }


    .od-contact-item p {
        font-size: 13px;
    }


    .od-footer-bottom-container {
        width: calc(100% - 32px);

        padding: 17px 0;

        gap: 9px;
    }


    .od-footer-bottom-container p {
        font-size: 13px;

        line-height: 1.65;
    }


    .od-footer-bottom-links {
        gap: 10px;

        flex-wrap: wrap;

        justify-content: center;
    }


    .od-footer-bottom-links a {
        font-size: 13px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .od-footer-container {
        width: calc(100% - 24px);

        padding-top: 38px;
        padding-bottom: 34px;

        gap: 30px;
    }


    .od-footer-logo-mark {
        width: 42px;
        height: 42px;

        font-size: 14px;
    }


    .od-footer-logo-text strong {
        font-size: 18px;
    }


    .od-footer-logo-text small {
        font-size: 11px;
        letter-spacing: 1px;
    }


    .od-footer-description {
        font-size: 13px;
    }


    .od-footer-social a {
        width: 37px;
        height: 37px;
    }


    .od-footer-social a i {
        font-size: 14px;
    }


    .od-footer-column ul li a {
        font-size: 13px;
    }


    .od-footer-bottom-container {
        width: calc(100% - 24px);
    }

}
/* =========================================================
   OD-PAY PREMIUM HERO
========================================================= */

.od-hero {
    width: 100%;
    position: relative;

    background: #07111f;

    overflow: hidden;
}


/* =========================================================
   SLIDER
========================================================= */

.od-hero-slider {
    width: 100%;
    height:470px;

    position: relative;

    overflow: hidden;
}


/* =========================================================
   SLIDE
========================================================= */

.od-hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.02);

    transition:
        opacity 1s ease,
        visibility 1s ease,
        transform 1.4s cubic-bezier(.2,.7,.2,1);
}


/* ACTIVE SLIDE */

.od-hero-slide.active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);
    z-index: 2;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.od-hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;

    transform: scale(1.04);

    transition:
        transform 8s cubic-bezier(.15,.65,.25,1);
}


/* CINEMATIC IMAGE MOVEMENT */

.od-hero-slide.active .od-hero-image {
    transform: scale(1.11);
}


/* =========================================================
   PREMIUM DARK OVERLAY
========================================================= */

.od-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(4, 13, 25, 0.92) 0%,
            rgba(4, 13, 25, 0.72) 25%,
            rgba(4, 13, 25, 0.32) 52%,
            rgba(4, 13, 25, 0.08) 75%,
            rgba(4, 13, 25, 0.03) 100%
        );
}


/* =========================================================
   SUBTLE RIGHT SIDE LIGHT
========================================================= */

.od-hero-light {
    position: absolute;

    top: -30%;
    right: -8%;

    width: 55%;
    height: 160%;

    z-index: 1;

    background:
        radial-gradient(
            ellipse,
            rgba(216, 173, 85, 0.13) 0%,
            rgba(216, 173, 85, 0.05) 32%,
            transparent 70%
        );

    filter: blur(20px);

    pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.od-hero-content {
    position: relative;

    z-index: 3;

    width: min(1200px, calc(100% - 60px));

    height: 100%;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: flex-start;

    padding-bottom: 15px;
}


/* =========================================================
   EYEBROW
========================================================= */

.od-hero-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 17px;

    color: #e5c06b;

    font-family:
        "DM Sans",
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity .8s ease .25s,
        transform .8s ease .25s;
}


/* SMALL LINE */

.od-hero-eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;

    margin-right: 10px;

    background: #d8ad55;
}


/* =========================================================
   HEADING
========================================================= */

.od-hero-content h1 {
    margin: 0;

    max-width: 650px;

    color: #ffffff;

    font-family:
        "Poppins",
        "DM Sans",
        "Segoe UI",
        sans-serif;

    font-size: clamp(38px, 4.3vw, 66px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1.8px;

    text-shadow:
        0 8px 30px rgba(0, 0, 0, 0.28);

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .9s ease .4s,
        transform .9s cubic-bezier(.2,.7,.2,1) .4s;
}


/* =========================================================
   BUTTON
========================================================= */

.od-hero-btn {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 27px;

    min-height: 46px;

    padding: 0 20px;

    background: #d8ad55;

    color: #07111f;

    border: 1px solid #d8ad55;

    border-radius: 7px;

    text-decoration: none;

    font-family:
        "DM Sans",
        "Segoe UI",
        sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .2px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .22);

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .8s ease .55s,
        transform .8s cubic-bezier(.2,.7,.2,1) .55s,
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease;
}


.od-hero-btn i {
    font-size: 14px;

    transition: transform .25s ease;
}


.od-hero-btn:hover {
    background: #f1d78f;

    color: #07111f;

    box-shadow:
        0 15px 35px rgba(216, 173, 85, .20);
}


.od-hero-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   ACTIVE CONTENT ANIMATION
========================================================= */

.od-hero-slide.active .od-hero-eyebrow {
    opacity: 1;
    transform: translateY(0);
}


.od-hero-slide.active .od-hero-content h1 {
    opacity: 1;
    transform: translateY(0);
}


.od-hero-slide.active .od-hero-btn {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   NAVIGATION ARROWS
========================================================= */

.od-hero-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 5;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .20);

    border-radius: 50%;

    background: rgba(4, 13, 25, .30);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: rgba(255, 255, 255, .85);

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}


.od-hero-arrow i {
    font-size: 16px;
}


.od-hero-prev {
    left: 25px;
}


.od-hero-next {
    right: 25px;
}


.od-hero-arrow:hover {
    background: #d8ad55;

    border-color: #d8ad55;

    color: #07111f;

    transform:
        translateY(-50%)
        scale(1.05);
}


/* =========================================================
   DOTS
========================================================= */

.od-hero-dots {
    position: absolute;

    left: 50%;
    bottom: 22px;

    z-index: 5;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 7px;
}


.od-hero-dots button {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, .45);

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}


.od-hero-dots button.active {
    width: 25px;

    border-radius: 10px;

    background: #d8ad55;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .od-hero-slider {
        height: 510px;
    }


    .od-hero-content {
        width: calc(100% - 80px);
    }


    .od-hero-content h1 {
        max-width: 570px;

        font-size: clamp(36px, 5vw, 55px);
    }


    .od-hero-prev {
        left: 18px;
    }


    .od-hero-next {
        right: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .od-hero-slider {
        height: 440px;
    }


    /* Better mobile image positioning */

    .od-hero-image {
        object-position: center center;

        transform: scale(1.03);
    }


    .od-hero-slide.active .od-hero-image {
        transform: scale(1.07);
    }


    /* Mobile overlay */

    .od-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 13, 25, .82) 0%,
                rgba(4, 13, 25, .58) 42%,
                rgba(4, 13, 25, .20) 100%
            );
    }


    .od-hero-light {
        width: 75%;
        right: -25%;

        opacity: .7;
    }


    .od-hero-content {
        width: calc(100% - 50px);

        justify-content: center;

        padding-bottom: 8px;
    }


    .od-hero-eyebrow {
        margin-bottom: 13px;

        font-size: 10px;

        letter-spacing: 1.4px;
    }


    .od-hero-eyebrow::before {
        width: 20px;

        margin-right: 7px;
    }


    .od-hero-content h1 {
        max-width: 430px;

        font-size: clamp(30px, 8vw, 43px);

        line-height: 1.1;

        letter-spacing: -1px;
    }


    .od-hero-btn {
        min-height: 43px;

        margin-top: 21px;

        padding: 0 17px;

        font-size: 12px;
    }


    /* Smaller arrows */

    .od-hero-arrow {
        width: 36px;
        height: 36px;
    }


    .od-hero-arrow i {
        font-size: 13px;
    }


    .od-hero-prev {
        left: 10px;
    }


    .od-hero-next {
        right: 10px;
    }


    .od-hero-dots {
        bottom: 16px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .od-hero-slider {
        height: 390px;
    }


    .od-hero-content {
        width: calc(100% - 42px);
    }


    .od-hero-content h1 {
        max-width: 350px;

        font-size: 31px;

        line-height: 1.12;
    }


    .od-hero-eyebrow {
        font-size: 9px;

        letter-spacing: 1.15px;
    }


    .od-hero-btn {
        min-height: 41px;

        margin-top: 18px;

        padding: 0 15px;

        font-size: 12px;
    }


    .od-hero-arrow {
        width: 32px;
        height: 32px;
    }


    .od-hero-arrow i {
        font-size: 11px;
    }


    .od-hero-prev {
        left: 7px;
    }


    .od-hero-next {
        right: 7px;
    }


    .od-hero-dots {
        bottom: 13px;

        gap: 6px;
    }


    .od-hero-dots button {
        width: 6px;
        height: 6px;
    }


    .od-hero-dots button.active {
        width: 20px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .od-hero-slider {
        height: 365px;
    }


    .od-hero-content {
        width: calc(100% - 38px);
    }


    .od-hero-content h1 {
        font-size: 28px;
    }


    .od-hero-eyebrow {
        font-size: 8px;

        letter-spacing: 1px;
    }


    .od-hero-btn {
        min-height: 39px;

        padding: 0 14px;

        font-size: 11px;
    }

}
/* =========================================================
   OD-PAY ABOUT SECTION
========================================================= */

.od-about {
    width: 100%;
    position: relative;

    background: #f7f5f0;

    overflow: hidden;

    font-family:
        "DM Sans",
        "Segoe UI",
        Arial,
        sans-serif;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.od-about-container {
    width: min(1200px, calc(100% - 60px));

    margin: 0 auto;

    min-height: 680px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 85px;

    padding: 90px 0 75px;
}


/* =========================================================
   VISUAL AREA
========================================================= */

.od-about-visual {
    position: relative;

    min-height: 525px;

    width: 100%;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.od-about-main-image {
    position: absolute;

    top: 15px;
    left: 0;

    width: 82%;
    height: 445px;

    overflow: hidden;

    border-radius: 18px;

    background: #dfe2e5;

    box-shadow:
        0 25px 65px rgba(7, 17, 31, 0.15);
}


.od-about-main-image::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            145deg,
            rgba(7, 17, 31, 0.08),
            transparent 55%
        );

    pointer-events: none;
}


.od-about-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transform: scale(1.02);

    transition:
        transform 1s cubic-bezier(.2,.7,.2,1);
}


.od-about-main-image:hover img {
    transform: scale(1.07);
}


/* =========================================================
   SECONDARY IMAGE
========================================================= */

.od-about-small-image {
    position: absolute;

    right: 0;
    bottom: 20px;

    width: 45%;
    height: 225px;

    padding: 7px;

    background: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 20px 45px rgba(7, 17, 31, 0.17);

    z-index: 3;

    transform: rotate(2deg);

    transition:
        transform .5s ease;
}


.od-about-small-image:hover {
    transform: rotate(0deg) translateY(-5px);
}


.od-about-small-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 11px;
}


/* =========================================================
   FLOATING CARD
========================================================= */

.od-about-floating-card {
    position: absolute;

    left: 30px;
    bottom: 0;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    min-width: 215px;

    background: rgba(15, 51, 101, 0.95);

    border: 1px solid rgba(216, 173, 85, 0.25);

    border-radius: 12px;

    box-shadow:
        0 18px 45px rgba(7, 17, 31, 0.25);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    animation:
        odFloatCard 4s ease-in-out infinite;
}


.od-about-card-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(216, 173, 85, 0.12);

    border: 1px solid rgba(216, 173, 85, 0.22);

    border-radius: 9px;

    color: #e5c06b;
}


.od-about-card-icon i {
    font-size: 16px;
}


.od-about-floating-card strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}


.od-about-floating-card small {
    display: block;

    margin-top: 3px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 11px;
}


@keyframes odFloatCard {

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

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

}


/* =========================================================
   DECORATIVE GOLD SHAPE
========================================================= */

.od-about-decoration {
    position: absolute;

    top: -15px;
    right: 7%;

    width: 95px;
    height: 95px;

    border: 1px solid rgba(216, 173, 85, 0.45);

    border-radius: 50%;

    z-index: 1;
}


.od-about-decoration::before {
    content: "";

    position: absolute;

    inset: 13px;

    border: 1px solid rgba(216, 173, 85, 0.22);

    border-radius: 50%;
}


/* =========================================================
   CONTENT
========================================================= */

.od-about-content {
    width: 100%;

    padding-bottom: 10px;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.od-section-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 16px;

    color: #a77d2f;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.od-section-label::before {
    content: "";

    width: 27px;
    height: 2px;

    margin-right: 10px;

    background: #d8ad55;

    border-radius: 10px;
}


/* =========================================================
   HEADING
========================================================= */

.od-about-content h2 {
    margin: 0 0 20px;

    max-width: 590px;

    color: #063a78;

    font-family:
        "Poppins",
        "DM Sans",
        sans-serif;

    font-size: 43px;

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.od-about-content h2 span {
    display: block;

    color: #c08b22;
}


/* =========================================================
   TEXT
========================================================= */

.od-about-intro {
    margin: 0 0 12px;

    max-width: 590px;

    color: #263447;

    font-size: 16px;

    line-height: 1.8;

    font-weight: 500;
}


.od-about-text {
    margin: 0;

    max-width: 570px;

    color: #667180;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   FEATURES
========================================================= */

.od-about-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 30px;

    max-width: 600px;
}


.od-about-feature {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 15px;

    background: #ffffff;

    border: 1px solid #e7e3db;

    border-radius: 12px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.od-about-feature:hover {
    transform: translateY(-4px);

    border-color: rgba(216, 173, 85, 0.45);

    box-shadow:
        0 12px 30px rgba(7, 17, 31, 0.08);
}


/* Feature icon */

.od-feature-icon {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #a77d2f;

    background: #faf4e7;

    border-radius: 8px;
}


.od-feature-icon i {
    font-size: 15px;
}


.od-about-feature h4 {
    margin: 1px 0 5px;

    color: #07111f;

    font-size: 13px;
    font-weight: 700;
}


.od-about-feature p {
    margin: 0;

    color: #737b86;

    font-size: 13px;

    line-height: 1.55;
}


/* =========================================================
   ACTION AREA
========================================================= */

.od-about-actions {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-top: 29px;

    flex-wrap: wrap;
}


/* CTA */

.od-about-btn {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    min-height: 45px;

    padding: 0 19px;

    background: #031d41;

    color: #ffffff;

    border: 1px solid #11366a;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.od-about-btn i {
    font-size: 14px;

    transition:
        transform .25s ease;
}


.od-about-btn:hover {
    color: #07111f;

    background: #d8ad55;

    border-color: #d8ad55;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(7, 17, 31, 0.14);
}


.od-about-btn:hover i {
    transform: translate(2px, -2px);
}


/* =========================================================
   SMALL NOTE
========================================================= */

.od-about-mini-note {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #727b87;

    font-size: 12px;
}


.od-about-mini-note i {
    color: #b78a36;

    font-size: 14px;
}


/* =========================================================
   ECOSYSTEM STRIP
========================================================= */

.od-about-strip {
    width: 100%;

    background: #07111f;

    border-top: 1px solid rgba(216, 173, 85, 0.12);
}


.od-about-strip-inner {
    width: min(1200px, calc(100% - 60px));

    min-height: 75px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.od-strip-item {
    display: flex;
    align-items: center;

    gap: 9px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;
}


.od-strip-item i {
    color: #d8ad55;

    font-size: 15px;
}


.od-strip-line {
    width: 1px;
    height: 20px;

    background: rgba(255, 255, 255, 0.10);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1050px) {

    .od-about-container {
        gap: 55px;
    }


    .od-about-visual {
        min-height: 480px;
    }


    .od-about-main-image {
        height: 410px;
    }


    .od-about-small-image {
        height: 195px;
    }


    .od-about-content h2 {
        font-size: 40px;
    }


    .od-about-feature {
        padding: 13px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .od-about-container {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 70px 0 60px;
    }


    .od-about-visual {
        min-height: 500px;

        max-width: 650px;

        margin: 0 auto;
    }


    .od-about-content {
        max-width: 700px;

        margin: 0 auto;
    }


    .od-about-content h2 {
        max-width: 650px;
    }


    .od-about-intro,
    .od-about-text {
        max-width: 680px;
    }


    .od-about-strip-inner {
        gap: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .od-about-container {
        width: calc(100% - 32px);

        gap: 38px;

        padding: 55px 0 45px;
    }


    /* Visual */

    .od-about-visual {
        min-height: 385px;

        width: 100%;
    }


    .od-about-main-image {
        top: 0;
        left: 0;

        width: 88%;
        height: 310px;

        border-radius: 15px;
    }


    .od-about-small-image {
        right: 0;
        bottom: 25px;

        width: 43%;
        height: 150px;

        padding: 5px;

        border-radius: 12px;
    }


    .od-about-small-image img {
        border-radius: 8px;
    }


    .od-about-floating-card {
        left: 12px;
        bottom: 0;

        min-width: 195px;

        padding: 12px 14px;

        gap: 10px;

        border-radius: 10px;
    }


    .od-about-card-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;
    }


    .od-about-floating-card strong {
        font-size: 12px;
    }


    .od-about-floating-card small {
        font-size: 10px;
    }


    .od-about-decoration {
        width: 65px;
        height: 65px;

        top: -10px;
        right: 1%;
    }


    .od-about-decoration::before {
        inset: 9px;
    }


    /* Content */

    .od-section-label {
        margin-bottom: 13px;

        font-size: 10px;

        letter-spacing: 1.6px;
    }


    .od-section-label::before {
        width: 21px;

        margin-right: 8px;
    }


    .od-about-content h2 {
        margin-bottom: 16px;

        font-size: 32px;

        line-height: 1.12;

        letter-spacing: -1px;
    }


    .od-about-intro {
        font-size: 14px;

        line-height: 1.75;
    }


    .od-about-text {
        font-size: 13px;

        line-height: 1.75;
    }


    /* Features */

    .od-about-features {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 23px;
    }


    .od-about-feature {
        padding: 13px;

        border-radius: 10px;
    }


    .od-about-feature h4 {
        font-size: 13px;
    }


    .od-about-feature p {
        font-size: 12px;

        line-height: 1.55;
    }


    /* Action */

    .od-about-actions {
        align-items: flex-start;
        flex-direction: column;

        gap: 14px;

        margin-top: 23px;
    }


    .od-about-btn {
        min-height: 43px;

        padding: 0 17px;

        font-size: 12px;
    }


    .od-about-mini-note {
        font-size: 12px;
    }


    /* Strip */

    .od-about-strip-inner {
        width: calc(100% - 32px);

        padding: 18px 0;

        min-height: auto;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }


    .od-strip-line {
        display: none;
    }


    .od-strip-item {
        font-size: 12px;

        white-space: normal;
    }


    .od-strip-item i {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .od-about-container {
        width: calc(100% - 24px);

        padding-top: 45px;
    }


    .od-about-visual {
        min-height: 345px;
    }


    .od-about-main-image {
        height: 280px;

        width: 89%;
    }


    .od-about-small-image {
        height: 135px;

        width: 44%;
    }


    .od-about-floating-card {
        left: 8px;

        min-width: 180px;

        padding: 10px 12px;
    }


    .od-about-content h2 {
        font-size: 29px;
    }


    .od-about-intro {
        font-size: 13px;
    }


    .od-about-feature {
        gap: 10px;
    }


    .od-feature-icon {
        width: 33px;
        height: 33px;

        flex-basis: 33px;
    }


    .od-strip-item {
        font-size: 11px;
    }

}
/* =========================================================
   OD-PAY SERVICES
   ========================================================= */

.od-services {
    position: relative;
    padding: 40px 0;
    background: #ffffff;
    overflow: hidden;
}

.od-services-container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   CENTER SECTION HEADING
========================================================= */

.od-services-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.od-section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 15px;

    color: #0757B8;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.od-section-label span {
    width: 28px;
    height: 2px;

    background: linear-gradient(
        90deg,
        #00AEEF,
        #F4C542
    );

    border-radius: 10px;
}

.od-services-heading h2 {
    margin: 0;

    color: #063A78;

    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.12;

    font-weight: 400;
    letter-spacing: -1.5px;
}

.od-services-heading h2 strong {
    display: inline;

    color: #0757B8;
    font-weight: 750;
}

.od-services-heading p {
    max-width: 680px;

    margin: 18px auto 0;

    color: #667586;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES GRID
   EXACTLY 3 CARDS PER ROW
========================================================= */

.od-services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 26px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.od-service-card {
    position: relative;

    min-width: 0;

    background: #ffffff;

    border: 1px solid #e7edf4;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(6, 58, 120, .06);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.od-service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0,174,239,.45);

    box-shadow:
        0 20px 45px rgba(6,58,120,.13);
}


/* =========================================================
   REMOVE LARGE FEATURE CARD
   ALL CARDS SAME SIZE
========================================================= */

.od-service-large {
    grid-column: auto;

    display: block;
}


/* =========================================================
   IMAGE
========================================================= */

.od-service-image {
    position: relative;

    width: 100%;
    height: 235px;

    overflow: hidden;

    background: #eef3f8;
}

.od-service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    /* No blur */
    filter: none;

    /* No overlay */
    opacity: 1;

    transition:
        transform .55s ease;
}

.od-service-card:hover
.od-service-image img {
    transform: scale(1.045);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.od-service-content {
    position: relative;

    min-height: 255px;

    padding: 27px 27px 28px;

    background: #ffffff;
}

.od-service-number {
    position: absolute;

    top: 22px;
    right: 24px;

    color: #d9e1ea;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;
}

.od-service-tag {
    display: inline-block;

    margin-bottom: 12px;

    color: #D99B18;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.od-service-content h3 {
    margin: 0;

    color: #063A78;

    font-size: 24px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -.4px;
}

.od-service-content p {
    margin: 14px 0 20px;

    color: #687786;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   EXPLORE LINK
========================================================= */

.od-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    color: #0757B8;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color .3s ease,
        gap .3s ease;
}

.od-service-link i {
    font-size: 15px;

    color: #00AEEF;

    transition:
        transform .3s ease;
}

.od-service-link:hover {
    color: #D99B18;
}

.od-service-link:hover i {
    transform: translate(4px, -3px);

    color: #D99B18;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.od-services-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 50px;

    padding: 27px 32px;

    border-radius: 16px;

    background:
        linear-gradient(
            110deg,
            #063A78 0%,
            #0757B8 65%,
            #0874B9 100%
        );

    box-shadow:
        0 15px 35px rgba(6,58,120,.15);
}

.od-services-bottom span {
    display: block;

    margin-bottom: 6px;

    color: #8ee5ff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.od-services-bottom h3 {
    margin: 0;

    color: #ffffff;

    font-size: 20px;
    line-height: 1.35;

    font-weight: 600;
}

.od-services-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 45px;

    padding: 0 21px;

    border-radius: 8px;

    background: #F4C542;

    color: #063A78;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background .3s ease,
        transform .3s ease;
}

.od-services-btn:hover {
    background: #ffffff;

    color: #063A78;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .od-services {
        padding: 80px 0;
    }

    .od-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .od-service-image {
        height: 220px;
    }

    .od-service-content {
        min-height: 245px;
    }

    .od-services-bottom {
        padding: 25px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .od-services {
        padding: 65px 0;
    }

    .od-services-container {
        width: calc(100% - 28px);
    }


    /* CENTER HEADING */

    .od-services-heading {
        margin-bottom: 35px;
    }

    .od-section-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .od-section-label span {
        width: 22px;
    }

    .od-services-heading h2 {
        font-size: 35px;
        line-height: 1.12;

        letter-spacing: -1px;
    }

    .od-services-heading p {
        margin-top: 15px;

        font-size: 13.5px;
        line-height: 1.75;
    }


    /* ONE CARD PER ROW */

    .od-services-grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }


    /* IMAGE */

    .od-service-image {
        height: 220px;
    }


    /* CONTENT */

    .od-service-content {
        min-height: auto;

        padding: 24px;
    }

    .od-service-content h3 {
        font-size: 22px;
    }

    .od-service-content p {
        font-size: 13px;

        margin-top: 13px;
    }


    /* CTA */

    .od-services-bottom {
        flex-direction: column;

        align-items: flex-start;

        margin-top: 35px;

        padding: 25px 22px;

        gap: 20px;
    }

    .od-services-bottom h3 {
        font-size: 18px;
    }

    .od-services-btn {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .od-services {
        padding: 55px 0;
    }

    .od-services-container {
        width: calc(100% - 22px);
    }

    .od-services-heading h2 {
        font-size: 31px;
    }

    .od-services-heading p {
        font-size: 13px;
    }

    .od-service-image {
        height: 200px;
    }

    .od-service-content {
        padding: 21px;
    }

    .od-service-content h3 {
        font-size: 21px;
    }

    .od-service-content p {
        font-size: 12.5px;
    }

    .od-service-number {
        top: 18px;
        right: 18px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .od-services-heading h2 {
        font-size: 28px;
    }

    .od-service-image {
        height: 185px;
    }

    .od-service-content {
        padding: 19px;
    }
}
/* =========================================================
   OD-PAY — WHY CHOOSE OD-PAY
   PREMIUM BLUE + GOLD CARD DESIGN
========================================================= */

.od-why-section {
    position: relative;

    padding: 45px 0 50px;

    background: #F7F9FC;

    overflow: hidden;
}

.od-why-container {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.od-why-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}


/* ---------- Label ---------- */

.od-why-label {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 13px;

    color: #1769AA;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.4px;

    text-transform: uppercase;
}

.od-why-label span {
    width: 27px;

    height: 2px;

    border-radius: 20px;

    background: #D8A84E;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.od-why-heading h2 {
    margin: 0;

    color: #09233F;

    font-size: clamp(38px, 4vw, 52px);

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.4px;
}

.od-why-heading h2 strong {
    color: #1769AA;

    font-weight: 800;
}


/* ---------- Description ---------- */

.od-why-heading p {
    max-width: 680px;

    margin: 17px auto 0;

    color: #617386;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.od-why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   CARD — BASE
========================================================= */

.od-why-item {
    position: relative;

    min-height: 285px;

    padding: 35px 25px 32px;

    text-align: center;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid transparent;

    box-shadow:
        0 15px 35px rgba(9, 35, 63, .10);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


/* =========================================================
   PREMIUM BLUE CARD
   1 & 3
========================================================= */

.od-why-item:nth-child(odd) {

    background:
        linear-gradient(
            145deg,
            #09233F 0%,
            #0D477A 58%,
            #1769AA 100%
        );

    border-color:
        rgba(0, 174, 239, .28);

    box-shadow:
        0 18px 42px rgba(9, 35, 63, .20);
}


/* =========================================================
   PREMIUM GOLD CARD
   2 & 4
========================================================= */

.od-why-item:nth-child(even) {

    background:
        linear-gradient(
            145deg,
            #9B6B16 0%,
            #C18A26 48%,
            #D8A84E 100%
        );

    border-color:
        rgba(255, 255, 255, .22);

    box-shadow:
        0 18px 42px rgba(155, 107, 22, .18);
}


/* =========================================================
   CARD HOVER
========================================================= */

.od-why-item:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 50px rgba(9, 35, 63, .20);
}


/* =========================================================
   PREMIUM CARD LIGHT EFFECT
========================================================= */

.od-why-item::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.07);

    pointer-events: none;
}

.od-why-item::after {

    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    bottom: -85px;
    left: -70px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.045);

    pointer-events: none;
}


/* =========================================================
   ICON
========================================================= */

.od-why-icon {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    margin: 0 auto 21px;

    border-radius: 50%;

    font-size: 25px;

    background: rgba(255,255,255,.14);

    color: #FFFFFF;

    border: 1px solid rgba(255,255,255,.24);

    box-shadow:
        0 8px 22px rgba(0,0,0,.12);

    transition:
        transform .35s ease,
        background .35s ease;
}

.od-why-item:hover .od-why-icon {

    transform:
        translateY(-4px)
        scale(1.06);

    background:
        rgba(255,255,255,.22);
}


/* =========================================================
   CARD TITLE
========================================================= */

.od-why-item h3 {

    position: relative;

    z-index: 2;

    min-height: 48px;

    margin: 0 0 12px;

    color: #FFFFFF;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 750;

    letter-spacing: -.2px;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.od-why-item p {

    position: relative;

    z-index: 2;

    max-width: 225px;

    margin: 0 auto;

    color: rgba(255,255,255,.82);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   SMALL CARD NUMBER
========================================================= */

.od-why-item .od-why-number {

    position: absolute;

    top: 18px;
    right: 21px;

    z-index: 3;

    color: rgba(255,255,255,.30);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   OPTIONAL ICON COLORS
   Keep icon white but subtle logo-based accents
========================================================= */

.od-why-item:nth-child(odd) .od-why-icon {
    box-shadow:
        0 0 0 5px rgba(0,174,239,.07),
        0 8px 22px rgba(0,0,0,.12);
}

.od-why-item:nth-child(even) .od-why-icon {
    box-shadow:
        0 0 0 5px rgba(255,255,255,.07),
        0 8px 22px rgba(0,0,0,.12);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .od-why-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .od-why-item {

        min-height: 270px;

        padding:
            32px 28px;
    }

    .od-why-item h3 {

        font-size: 18px;
    }

    .od-why-item p {

        max-width: 280px;

        font-size: 13px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .od-why-section {

        padding:
            65px 0 70px;
    }

    .od-why-container {

        width:
            calc(100% - 28px);
    }


    /* -----------------------------------------
       HEADING
    ----------------------------------------- */

    .od-why-heading {

        margin-bottom: 38px;
    }

    .od-why-label {

        font-size: 10px;

        letter-spacing: 1.9px;

        gap: 8px;
    }

    .od-why-label span {

        width: 19px;

        height: 2px;
    }

    .od-why-heading h2 {

        font-size: 34px;

        line-height: 1.13;

        letter-spacing: -.8px;
    }

    .od-why-heading p {

        margin-top: 13px;

        font-size: 14px;

        line-height: 1.7;
    }


    /* -----------------------------------------
       GRID
    ----------------------------------------- */

    .od-why-grid {

        grid-template-columns: 1fr;

        gap: 16px;
    }


    /* -----------------------------------------
       CARD
    ----------------------------------------- */

    .od-why-item {

        min-height: 235px;

        padding:
            29px 25px 28px;

        border-radius: 17px;
    }


    /* -----------------------------------------
       ICON
    ----------------------------------------- */

    .od-why-icon {

        width: 58px;

        height: 58px;

        margin-bottom: 17px;

        font-size: 23px;
    }


    /* -----------------------------------------
       TITLE
    ----------------------------------------- */

    .od-why-item h3 {

        min-height: auto;

        margin-bottom: 10px;

        font-size: 18px;

        line-height: 1.35;
    }


    /* -----------------------------------------
       DESCRIPTION
    ----------------------------------------- */

    .od-why-item p {

        max-width: 310px;

        font-size: 13px;

        line-height: 1.7;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .od-why-section {

        padding:
            55px 0 60px;
    }

    .od-why-container {

        width:
            calc(100% - 22px);
    }


    /* Heading */

    .od-why-heading {

        margin-bottom: 32px;
    }

    .od-why-label {

        font-size: 9px;

        letter-spacing: 1.6px;
    }

    .od-why-heading h2 {

        font-size: 31px;

        letter-spacing: -.7px;
    }

    .od-why-heading p {

        font-size: 13px;
    }


    /* Card */

    .od-why-item {

        min-height: 225px;

        padding:
            27px 21px;
    }


    /* Icon */

    .od-why-icon {

        width: 55px;

        height: 55px;

        margin-bottom: 16px;

        font-size: 22px;
    }


    /* Title */

    .od-why-item h3 {

        font-size: 17px;
    }


    /* Description */

    .od-why-item p {

        max-width: 285px;

        font-size: 12.5px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 340px) {

    .od-why-heading h2 {

        font-size: 28px;
    }

    .od-why-heading p {

        font-size: 12px;
    }

    .od-why-item {

        min-height: 215px;

        padding:
            25px 18px;
    }

    .od-why-icon {

        width: 52px;

        height: 52px;

        font-size: 20px;
    }

    .od-why-item h3 {

        font-size: 16px;
    }

    .od-why-item p {

        font-size: 12px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .od-why-item,
    .od-why-icon {

        transition: none;
    }
}
/* =========================================================
   OD-PAY SERVICES / EVERYDAY UTILITY SECTION
   NO CARDS • NO BOXES • CLEAN ICON SERVICES
========================================================= */

.od-utility-section {
    width: 100%;
    padding: 32px 0 34px;

    background: #F7F9FC;

    border-top: 1px solid #E8EDF2;
    border-bottom: 1px solid #E8EDF2;

    overflow: hidden;
}


.od-utility-container {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}


/* =========================================================
   SERVICES ROW
========================================================= */

.od-utility-scroll {

    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    align-items: start;

    width: 100%;

    gap: 15px;
}


/* =========================================================
   SERVICE ITEM
   NO CARD / NO BOX
========================================================= */

.od-utility-card {

    position: relative;

    min-width: 0;

    padding: 2px 12px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    text-align: center;

    background: transparent;

    border: none;

    border-radius: 0;

    box-shadow: none;

    transition:
        transform .3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.od-utility-card:hover {

    transform: translateY(-4px);

}


/* =========================================================
   ICON
========================================================= */

.od-utility-icon {

    width: 48px;

    height: 48px;

    margin-bottom: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: transparent;

    border: 2px solid currentColor;

    font-size: 22px;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   BLUE ICONS
   1 / 3 / 5
========================================================= */

.od-utility-card:nth-child(odd)
.od-utility-icon {

    color: #1769AA;

    border-color: #1769AA;

    background: rgba(23,105,170,.055);
}


/* =========================================================
   GOLD ICONS
   2 / 4 / 6
========================================================= */

.od-utility-card:nth-child(even)
.od-utility-icon {

    color: #C28B25;

    border-color: #C28B25;

    background: rgba(216,168,78,.07);
}


/* =========================================================
   ICON HOVER
========================================================= */

.od-utility-card:hover
.od-utility-icon {

    transform:
        translateY(-3px)
        scale(1.06);
}


/* Blue hover */

.od-utility-card:nth-child(odd):hover
.od-utility-icon {

    color: #FFFFFF;

    background: #1769AA;

    box-shadow:
        0 8px 20px rgba(23,105,170,.20);
}


/* Gold hover */

.od-utility-card:nth-child(even):hover
.od-utility-icon {

    color: #FFFFFF;

    background: #C28B25;

    box-shadow:
        0 8px 20px rgba(194,139,37,.20);
}


/* =========================================================
   SERVICE TITLE
========================================================= */

.od-utility-card h3 {

    margin: 0;

    color: #09233F;

    font-size: 15px;

    line-height: 1.35;

    font-weight: 750;

    letter-spacing: -.15px;
}


/* =========================================================
   SERVICE DESCRIPTION
========================================================= */

.od-utility-card p {

    margin: 6px auto 0;

    max-width: 170px;

    color: #68798A;

    font-size: 12px;

    line-height: 1.5;

    font-weight: 500;
}


/* =========================================================
   SUBTLE SEPARATORS
   These are NOT boxes
========================================================= */

.od-utility-card:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 12px;

    right: -8px;

    width: 1px;

    height: 72px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            #DCE4EB,
            transparent
        );
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .od-utility-section {

        padding: 28px 0 30px;
    }

    .od-utility-container {

        width:
            calc(100% - 30px);
    }

    .od-utility-scroll {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        row-gap: 32px;
    }


    .od-utility-card {

        padding:
            2px 15px;
    }


    .od-utility-card:nth-child(3)::after,
    .od-utility-card:nth-child(6)::after {

        display: none;
    }


    .od-utility-card:nth-child(4)::before,
    .od-utility-card:nth-child(5)::before,
    .od-utility-card:nth-child(6)::before {

        content: "";

        position: absolute;

        top: -16px;

        left: 15%;

        width: 70%;

        height: 1px;

        background: #E1E7EC;
    }

}


/* =========================================================
   MOBILE
   HORIZONTAL SCROLL
========================================================= */

@media (max-width: 767px) {

    .od-utility-section {

        /*
           Keep the entire section short
        */
        padding: 18px 0 20px;

        background: #F7F9FC;
    }


    .od-utility-container {

        width: 100%;

        margin: 0;
    }


    /* -----------------------------------------
       HORIZONTAL SERVICE SCROLL
    ----------------------------------------- */

    .od-utility-scroll {

        display: flex;

        align-items: flex-start;

        justify-content: flex-start;

        width: 100%;

        gap: 0;

        padding:
            0 14px;

        overflow-x: auto;

        overflow-y: hidden;

        scroll-snap-type: x mandatory;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }


    /* Hide scrollbar */

    .od-utility-scroll::-webkit-scrollbar {

        display: none;
    }


    /* -----------------------------------------
       SERVICE ITEM
    ----------------------------------------- */

    .od-utility-card {

        flex: 0 0 125px;

        width: 125px;

        min-height: 105px;

        padding:
            2px 10px;

        scroll-snap-align: start;

        transform: none !important;
    }


    /* -----------------------------------------
       Remove desktop separators
    ----------------------------------------- */

    .od-utility-card::before,
    .od-utility-card::after {

        display: none;
    }


    /*
       Add a simple separator between
       mobile service items
    */

    .od-utility-card:not(:last-child) {

        border-right:
            1px solid #DEE6ED;
    }


    /* -----------------------------------------
       ICON
    ----------------------------------------- */

    .od-utility-icon {

        width: 43px;

        height: 43px;

        margin-bottom: 10px;

        font-size: 20px;

        border-width: 1.5px;
    }


    /* -----------------------------------------
       SERVICE TITLE
    ----------------------------------------- */

    .od-utility-card h3 {

        font-size: 13px;

        line-height: 1.35;

        font-weight: 750;
    }


    /* -----------------------------------------
       DESCRIPTION
    ----------------------------------------- */

    .od-utility-card p {

        margin-top: 5px;

        max-width: 105px;

        font-size: 9.5px;

        line-height: 1.45;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .od-utility-section {

        padding: 15px 0 17px;
    }


    .od-utility-scroll {

        padding:
            0 11px;
    }


    .od-utility-card {

        flex: 0 0 115px;

        width: 115px;

        min-height: 98px;

        padding:
            2px 9px;
    }


    .od-utility-icon {

        width: 40px;

        height: 40px;

        margin-bottom: 9px;

        font-size: 18px;
    }


    .od-utility-card h3 {

        font-size: 12px;
    }


    .od-utility-card p {

        max-width: 98px;

        font-size: 9px;

        line-height: 1.4;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .od-utility-section {

        padding: 13px 0 15px;
    }


    .od-utility-scroll {

        padding:
            0 9px;
    }


    .od-utility-card {

        flex: 0 0 108px;

        width: 108px;

        min-height: 93px;

        padding:
            2px 7px;
    }


    .od-utility-icon {

        width: 37px;

        height: 37px;

        margin-bottom: 8px;

        font-size: 17px;
    }


    .od-utility-card h3 {

        font-size: 11.5px;
    }


    .od-utility-card p {

        max-width: 92px;

        font-size: 8.5px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .od-utility-card,
    .od-utility-icon {

        transition: none;
    }
}
/* =========================================================
   OD-PAY WELCOME KIT
   PREMIUM BACKGROUND IMAGE SECTION
========================================================= */

.od-welcome-section {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #eef4f9;
    
    background-image: url('../img/s1.png');
    background-repeat: no-repeat;
    background-size: cover;
   
    background-position: center center;
}


/* =========================================================
   CONTAINER
========================================================= */

.od-welcome-container {

    position: relative;

    z-index: 2;

    width: min(1200px, calc(100% - 50px));

    min-height: 520px;

    margin: 0 auto;

    display: flex;

    align-items: center;
}


/* =========================================================
   CONTENT
========================================================= */

.od-welcome-content {

    width: 48%;

    max-width: 570px;

    padding: 45px 0;
}


/* =========================================================
   LABEL
========================================================= */

.od-welcome-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 16px;

    color: #1769AA;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.od-welcome-label i {

    color: #C8942E;

    font-size: 14px;
}


/* =========================================================
   HEADING
========================================================= */

.od-welcome-content h2 {

    margin: 0;

    color: #09233F;

    font-family:
        "Poppins",
        sans-serif;

    font-size:
        clamp(36px, 4vw, 55px);

    line-height: 1.08;

    font-weight: 750;

    letter-spacing: -1.6px;
}


.od-welcome-content h2 span {

    color: #C8942E;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.od-welcome-content > p {

    max-width: 500px;

    margin: 20px 0 24px;

    color: #52677A;

    font-size: 15px;

    line-height: 1.8;

    font-weight: 400;
}


/* =========================================================
   FEATURES
========================================================= */

.od-welcome-features {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 27px;
}


.od-welcome-feature {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #09233F;

    font-size: 12px;

    font-weight: 650;
}


.od-welcome-feature i {

    color: #1769AA;

    font-size: 14px;
}


/* =========================================================
   BUTTON
========================================================= */

.od-welcome-btn {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    padding: 13px 21px;

    color: #FFFFFF;

    background: #09233F;

    border: 1px solid #09233F;

    border-radius: 6px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.od-welcome-btn i {

    font-size: 11px;

    transition:
        transform .3s ease;
}


.od-welcome-btn:hover {

    color: #09233F;

    background: #D8A84E;

    border-color: #D8A84E;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(9,35,63,.15);
}


.od-welcome-btn:hover i {

    transform: translateX(4px);
}


/* =========================================================
   DESKTOP IMAGE PROTECTION
   Keeps content readable over image
========================================================= */

.od-welcome-section::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.96) 0%,
            rgba(255,255,255,.88) 25%,
            rgba(255,255,255,.30) 50%,
            rgba(255,255,255,0) 68%
        );
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .od-welcome-section {

        min-height: 570px;

        background-position:
            center center;
    }

    .od-welcome-container {

        min-height: 570px;
    }

    .od-welcome-content h2 {

        font-size: 58px;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .od-welcome-section {

        min-height: 470px;

        background-position:
            58% center;
    }

    .od-welcome-container {

        min-height: 470px;

        width:
            calc(100% - 40px);
    }

    .od-welcome-content {

        width: 52%;
    }

    .od-welcome-content h2 {

        font-size: 43px;
    }

    .od-welcome-content > p {

        font-size: 14px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

    .od-welcome-section {

        min-height: 520px;

        /*
           Move product image toward right/bottom.
        */
        background-size:
            auto 100%;

        background-position:
            72% center;
    }


    .od-welcome-container {

        min-height: 520px;

        width:
            calc(100% - 34px);

        align-items:
            flex-start;
    }


    /* -----------------------------------------
       MOBILE IMAGE OVERLAY
    ----------------------------------------- */

    .od-welcome-section::before {

        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,.97) 0%,
                rgba(255,255,255,.90) 36%,
                rgba(255,255,255,.35) 64%,
                rgba(255,255,255,.05) 100%
            );
    }


    /* -----------------------------------------
       CONTENT
    ----------------------------------------- */

    .od-welcome-content {

        width: 100%;

        max-width: 490px;

        padding:
            48px 0 20px;
    }


    .od-welcome-label {

        margin-bottom: 12px;

        font-size: 10px;

        letter-spacing: 1.8px;
    }


    .od-welcome-content h2 {

        font-size:
            clamp(32px, 8vw, 42px);

        line-height: 1.1;

        letter-spacing: -1px;
    }


    .od-welcome-content > p {

        max-width: 410px;

        margin:
            15px 0 18px;

        font-size: 13px;

        line-height: 1.65;
    }


    .od-welcome-features {

        gap: 10px 18px;

        margin-bottom: 20px;
    }


    .od-welcome-feature {

        font-size: 11px;
    }


    .od-welcome-btn {

        padding:
            12px 18px;

        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .od-welcome-section {

        min-height: 480px;

        background-size:
            auto 58%;

        background-position:
            70% bottom;
    }


    .od-welcome-container {

        min-height: 480px;

        width:
            calc(100% - 28px);
    }


    .od-welcome-section::before {

        background:
            linear-gradient(
                180deg,
                #FFFFFF 0%,
                rgba(255,255,255,.98) 35%,
                rgba(255,255,255,.65) 57%,
                rgba(255,255,255,.08) 100%
            );
    }


    .od-welcome-content {

        padding:
            35px 0 10px;

        text-align: left;
    }


    .od-welcome-label {

        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .od-welcome-content h2 {

        font-size: 31px;

        line-height: 1.12;
    }


    .od-welcome-content > p {

        max-width: 340px;

        margin-top: 13px;

        font-size: 12px;

        line-height: 1.6;
    }


    .od-welcome-features {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 7px;

        margin-bottom: 17px;
    }


    .od-welcome-feature {

        font-size: 10.5px;
    }


    .od-welcome-feature i {

        font-size: 12px;
    }


    .od-welcome-btn {

        padding:
            11px 16px;

        font-size: 10.5px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .od-welcome-section {

        min-height: 455px;

        background-size:
            auto 54%;

        background-position:
            70% bottom;
    }


    .od-welcome-container {

        min-height: 455px;

        width:
            calc(100% - 24px);
    }


    .od-welcome-content {

        padding-top: 30px;
    }


    .od-welcome-content h2 {

        font-size: 28px;
    }


    .od-welcome-content > p {

        font-size: 11px;

        max-width: 310px;
    }


    .od-welcome-feature {

        font-size: 10px;
    }
}
/* =========================================================
   OD-PAY FOOTER LOGO
========================================================= */

.od-footer-logo {
    display: inline-flex;

    align-items: center;
    justify-content: flex-start;

    width: fit-content;

    text-decoration: none;

    margin-bottom: 18px;
}

.od-footer-logo img {
    display: block;

    width: auto;

    height: 88px;

    max-width: 185px;

    object-fit: contain;

    object-position: left center;

    transition:
        transform .3s ease,
        opacity .3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.od-footer-logo:hover img {
    transform: translateY(-2px);

    opacity: .94;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .od-footer-logo {
        margin-bottom: 15px;
    }

    .od-footer-logo img {
        height: 58px;

        max-width: 175px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .od-footer-logo {

        display: flex;

        width: 100%;

        justify-content: center;

        align-items: center;

        margin-bottom: 16px;
    }

    .od-footer-logo img {

        height: 58px;

        width: auto;

        max-width: 175px;

        object-fit: contain;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .od-footer-logo {

        margin-bottom: 14px;
    }

    .od-footer-logo img {

        height: 54px;

        max-width: 165px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .od-footer-logo img {

        height: 50px;

        max-width: 155px;
    }
}