 html,
    body {
        margin: 0;
        padding: 0;
        height: 100%;
        width: 100%;
        font-family: 'Material Design Icons', sans-serif !important;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .split-container {
        height: 100vh;
        display: flex;
        flex-direction: row;
        width: 100vw;
    }

    .form-panel {
        flex: 1 1 0;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        overflow: hidden;
        overflow-y: auto;
    }

    .form-scroll-area {
        width: 100%;
        max-width: 520px;
        height: 100vh;
        overflow-y: visible;
        padding: 40px 24px;
    }

    .form-box {
        width: 100%;
        background: #f3f3f3;
        /* Light blue-tinted background */
        padding: 30px 24px;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);

        /* Soft shadow */
    }

    .brand-header {
        display: flex;
        align-items: center;
        /* padding-bottom:20px !important; */

    }

    .brand-logo-img {
        width: 130px;

        border-radius: 7px;
        object-fit: contain;
        /* padding: 2px; */
    }

    .main-title {
        font-weight: 600;
        font-size: 1.45rem;
        color: #191a26;
        padding-bottom: 20px !important;
        margin: 0 0 0.25rem 0;
        margin-top: 5px;
    }

    .subtitle {
        color: #7e88a7;
        font-size: 1.09rem;
        margin-bottom: 32px;
    }

    .custom-form .form-label {
        color: #222;
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .custom-form .form-control {
        /* border: 1px solid #E5E7EB !important; */
        background: #fff !important;
        border-radius: 8px !important;
        padding: 9px 15px !important;
        font-size: 1.07rem !important;
        margin-bottom: 18px;
        transition: border 0.2s, box-shadow 0.2s;
    }

    .custom-form .form-control:focus {
        border: 1.5px solid #2563eb !important;
        box-shadow: 0 0 0 1.5px #2563eb22 !important;
        background: #fff !important;
        outline: none !important;
    }

    .custom-form .form-control::placeholder {
        color: #bcbcbc !important;
    }

    .custom-btn {
        width: 100%;
        background: #0089ff;
        color: #fff;
        font-weight: 600;
        border-radius: 8px;
        padding: 13px 0;
        font-size: 1.08rem;
        border: none;
        margin-top: 8px;
        margin-bottom: 8px;
        transition: background 0.18s;
    }

    .custom-btn:hover {
        background: #1e40af;
    }

    .terms-links {
        font-size: 0.94rem;
        color: #8887a9;
        margin-top: 14px;
        text-align: center;
    }

    .note-point {
        font-size: 0.94rem;
        color: #ff0000;
        margin-top: 14px;
        text-align: center;
    }


    .terms-links a {
        color: #2563eb;
        text-decoration: underline;
    }

    .payment-icon {
        width: 255px;
        display: block;
        margin: 0 auto 12px auto;
    }

    .image-panel {
        flex: 1 1 0;
        min-width: 350px;
        height: 100vh;
        overflow: hidden;
        background: #e7f0fa;
    }

    .image-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .input-wrapper {
        position: relative;
    }

    .tooltip-float {
        display: none;
        position: absolute;
        top: -60px;
        /* Adjust if needed */
        left: 0px;
        background-color: #e30b5c;
        color: white;
        padding: 6px 9px;
        font-size: 13px;
        border-radius: 4px;
        white-space: nowrap;
        z-index: 100;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .tooltip-float::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 10px;
        border-width: 6px;
        border-style: solid;
        border-color: #e30b5c transparent transparent transparent;
    }


    @media (max-width: 991px) {

        /*  .split-container {
            flex-direction: column-reverse;
        } */
        .split-container {
            height: 100vh;
            display: flex;
            flex-direction: row;
            width: 100%;
            overflow-y: auto;
        }

        .form-panel,
        .image-panel {
            width: 100vw;
            height: 100vh;

        }

        .form-panel {
            overflow: auto;
        }

        /* 
        .brand-logo-img {
            padding-top: 20px !important;
        } */

        .form-scroll-area {
            /* height: auto; */
            height: auto;
            min-height: 100vh;
            overflow-y: auto;
            padding: 24px;

        }

        .image-panel {
            height: 260px;
            max-height: 40vw;
            min-height: 140px;
        }
    }

    @media (max-width: 600px) {
        .form-scroll-area {
            padding: 10px 8vw 8px 8vw !important;
            overflow-y: auto;
        }

        .brand-header {
            padding-bottom: 10px !important;
        }

        .form-box {
            box-shadow: none;
        }

        .image-panel {
            height: 160px;
            max-height: 32vw;
            min-height: 90px;
        }
    }

    @media (max-width: 420px) {
        .image-panel {
            height: 110px;
            max-height: 25vw;
            min-height: 60px;
        }
    }


    @media (max-width: 991px) {
        .brand-logo-img {
            width: 100px;
        }

        .image-panel {
            display: none
        }

        .form-box {
            margin-top: 0px !important;
            padding: 18px 24px;
        }


        .main-title {
            font-weight: 600;
            font-size: 18px;
            padding-bottom: 2px !important;
        }

        .subtitle {
            color: #7e88a7;
            font-size: 16px;
            margin-bottom: 16px;
        }

        body {
            overflow-x: hidden;
            overflow-y: auto;

        }
    }

    @media(min-width:360px) and (max-width:375px) {
        .form-box {
            margin-top: 80px !important;
            padding: 18px 24px;
        }

    }

    /* Modal Background */
    .modal-overlay {
        display: none;
        position: fixed;
        z-index: 999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        justify-content: center;
        align-items: center;
    }

    /* Modal Content */
    .modal-content {
        background: #fff;
        padding: 30px;
        width: 80%;
        max-width: 700px;
        max-height: 90%;
        overflow-y: auto;
        border-radius: 8px;
        position: relative;
    }

    .modal-content h2 {
        margin-top: 0;
    }

    .modal-footer {
        text-align: right;
        margin-top: 20px;
    }

    .modal-footer button {
        padding: 8px 16px;
        border: none;
        border-radius: 5px;
        background-color: #007bff;
        color: white;
        cursor: pointer;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 18px;
        cursor: pointer;
        color: #888;
    }

    .close-btn:hover {
        color: #000;
    }

    /*top bar*/
    .top-bar-header {
        width: 100%;
        background: #065abc;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        padding: 24px 0 12px 0;
        box-shadow: 0 6px 18px 0 rgba(41, 83, 179, 0.06);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .top-bar-content {
        width: 100%;
        max-width: 1400px;
        text-align: center;
    }

    .top-bar-header h2 {
        color: #fff;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0;
        font-family: 'Poppins', sans-serif;
    }

    .top-bar-header p {
        color: #e6e6e6;
        font-size: 1.1rem;
        margin: 4px 0 0 0;
        font-family: 'Poppins', sans-serif;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .top-bar-header {
            padding: 16px 0 8px 0;
            border-bottom-left-radius: 14px;
            border-bottom-right-radius: 14px;
        }

        .top-bar-header h2 {
            font-size: 1.1rem;
        }

        .top-bar-header p {
            font-size: 0.9rem;
        }
    }

    /* section 2*/
    /* Promotion Section Styles */
    .promotion-section {
        padding: 60px 20px;
        background: linear-gradient(to bottom, #DAEAF7, #DAEAF7);
        text-align: center;
        font-family: 'Material Design Icons', sans-serif;
    }

    .promotion-section .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
        color: #0A2540;
        font-weight: bold;
    }

    .highlight-blue {
        color: #4b9ae9;
    }

    .subtitle {
        color: #7c8390;
        margin-bottom: 40px;
    }

    .promotion-content {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .speaker-profile {
        display: flex;
        align-items: center;
        background-color: #ffffff;
        border-radius: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        padding: 20px;
        gap: 20px;
    }

    .speaker-profile img {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        border: 5px solid #4b9ae9;
        object-fit: cover;
    }

    .speaker-info h3 {
        color: #3182CE;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .speaker-info p {
        margin: 4px 0;
        font-size: 0.9rem;
        color: #555;
    }

    .event-details {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .event-card {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #ffffff;
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        text-align: left;
    }

    .event-card i {
        font-size: 1.8rem;
        color: #4b9ae9;
    }

    .event-card .label {
        font-weight: bold;
        font-size: 0.9rem;
        color: #555;
    }

    .event-card .value {
        font-size: 1rem;
        color: #0A2540;
        font-weight: bold;
    }

    .register-btn {
        background-color: #0089ff;
        color: #ffffff;
        padding: 14px 40px;
        font-size: 1rem;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease;
        margin-top: 40px;
    }

    .register-btn:hover {
        background-color: #1f1c54;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .promotion-content {
            flex-direction: column;
        }

        .event-details {
            grid-template-columns: 1fr;
            width: 100%;
        }

        .speaker-profile {
            flex-direction: column;
            text-align: center;
        }

        .speaker-profile img {
            width: 130px;
            height: 130px;
        }

        .register-btn {
            width: 100%;
        }
    }

    /* sectin 4 */
    /* Workshop Benefits Section */
    .workshop-benefits {
        background-color: #ffffff;
        padding: 60px 20px;
        text-align: center;
        font-family: 'Material Design Icons', sans-serif;
    }

    .benefits-title {
        color: #0A2540;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 40px;
    }

    .highlight {
        color: #3182CE;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .benefit-card {
        background-color: #fff;
        border-radius: 12px;
        padding: 15px 20px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .benefit-card .icon {
        font-size: 1.5rem;
        color: #1E40AF;
    }

    .benefit-card p {
        margin: 0;
        color: #0A2540;
        font-size: 1rem;
    }

    .cta-btn {
        background-color: #0089ff;
        color: #ffffff;
        padding: 14px 40px;
        font-size: 1rem;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        margin-top: 40px;
        transition: background-color 0.3s;
        box-shadow: 0 9px 8px #9d9797;
    }

    .cta-btn:hover {
        background-color: #1f1c54;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .benefits-grid {
            grid-template-columns: 1fr;
        }

        .benefits-title {
            font-size: 1.6rem;
        }

        .cta-btn {
            width: 100%;
        }
    }

    /* Section -5 */
    .workshop-learn-section {
        padding: 60px 20px;
        background: linear-gradient(to bottom, #DAEAF7, #DAEAF7);
        font-family: 'Material Design Icons', sans-serif;
        background-color: #fff;
        text-align: center;
    }

    .section-heading {
        color: #0A2540;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 40px;
    }

    .section-heading .highlight {
        color: #3182CE;
    }

    .learn-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .learn-card {
        background-color: #ffffff;
        border-radius: 15px;
        padding: 25px;
        text-align: left;
        position: relative;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        border: 1px dashed #3182CE;
    }

    .learn-card::before {
        content: '';
        position: absolute;
        top: 10%;
        bottom: 10%;
        left: -15px;
        width: 30px;
        /* background-image: url('spiral-binding.png'); */
        /* Add spiral binding image here */
        background-repeat: repeat-y;
        background-size: contain;
    }

    .learn-card h3 {
        color: #0A2540;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .learn-card ul {
        list-style: none;
        padding-left: 0;
    }

    .learn-card ul li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
    }

    .learn-card ul li::before {
        content: '✔';
        position: absolute;
        left: 0;
        top: 0;
        color: #22C55E;
    }

    .cta-btn {
        background-color: #0089ff;
        color: #fff;
        padding: 14px 40px;
        font-size: 1rem;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
        margin-top: 40px;
    }

    .cta-btn:hover {
        background-color: #1f1c54;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .learn-grid {
            grid-template-columns: 1fr;
        }

        .section-heading {
            font-size: 1.6rem;
        }

        .learn-card {
            padding: 20px;
        }

        .learn-card::before {
            display: none;
            /* hide spiral binding on mobile */
        }

        .cta-btn {
            width: 100%;
        }
    }

    /* count secion */
    .stats-section {
        width: 100%;
        display: flex;
        justify-content: center;
        background: transparent;
        padding: 30px 30px;
        font-family: 'Material Design Icons', sans-serif;
    }

    .stats-grid {
        display: flex;
        gap: 32px;
        width: 100%;
        max-width: 1400px;
        justify-content: center;
    }

    .stat-card {
        background: #008eff;
        color: #fff;
        border-radius: 20px;
        min-width: 270px;
        min-height: 140px;
        padding: 24px 22px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        box-shadow: 0 6px 16px 0 rgba(41, 83, 179, 0.08);
    }

    .stat-number {
        font-size: 2.1rem;
        font-weight: 700;
        margin-bottom: 12px;
        line-height: 1;
        display: block;
    }

    .stat-desc {
        font-size: 1.09rem;
        font-weight: 400;
        color: #e1eaf7;
        line-height: 1.35;
        display: block;
    }

    .stat-icon {
        font-size: 2.4rem;
        margin-bottom: 8px;
        color: #fff;
        display: inline-block;
        opacity: 0.92;
    }

    .stat-card {
        /* keep your previous styles */
        align-items: flex-start;
    }

    /* Responsive design */
    @media (max-width: 1200px) {
        .stats-grid {
            gap: 20px;
            max-width: 98vw;
        }

        .stat-card {
            min-width: 186px;
            /*200*/
            padding: 18px 10px;
        }
    }

    @media (max-width: 800px) {
        .stats-grid {
            flex-wrap: wrap;
            gap: 18px;
        }

        .stat-card {
            min-width: 48vw;
            width: 100%;
            padding: 15px 10px;
            font-size: 1rem;
            align-items: center;
        }
    }

    @media (max-width: 600px) {
        .stats-grid {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .stat-card {
            min-width: unset;
            /* width: 98vw; */
            border-radius: 13px;
            padding: 13px 8px;
            align-items: flex-start;
            text-align: left;
            align-items: center;
        }

        .stat-number {
            font-size: 1.35rem;
            margin-bottom: 6px;
        }

        .stat-desc {
            font-size: 0.98rem;
        }
    }

    /*footer*/
    .main-footer {
        width: 100%;
        background: #e1f0fb;
        padding: 28px 10px 14px 10px;
        text-align: center;
        font-family: 'Material Design Icons', sans-serif;
        font-size: 1rem;
    }

    .footer-container {
        max-width: 1280px;
        margin: 0 auto;
    }

    .main-footer p {
        margin: 0 0 10px 0;
        color: #0a2540;
        line-height: 1.55;
        font-size: 1rem;
    }

    .main-footer .copyright {
        font-weight: 600;
        margin-bottom: 8px;
    }

    .main-footer a {
        color: #1741b6;
        text-decoration: underline;
        font-weight: 400;
    }

    @media (max-width: 768px) {
        .main-footer {
            font-size: 0.89rem;
            margin-bottom: 70px;
            padding: 18px 3vw 8px 3vw;
        }
    }

    /*sticky footer bar*/
    .sticky-footer-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 200;
        background: #fff;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        border: 3px solid #0a1857;
        border-bottom: none;
        box-shadow: 0 8px 24px 0 rgba(36, 52, 136, 0.09);
        padding: 0;
    }

    .sticky-footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 18px 16px 14px 16px;
        gap: 32px;
    }

    .sticky-footer-left {
        color: #ff1616;
        font-weight: 700;
        font-size: 2rem;
        font-family: 'Material Design Icons', sans-serif;
    }

    .sticky-footer-btn {
        background: linear-gradient(90deg, #0089ff 0%, #00dcff 100%);
        color: #fff;
        padding: 10px 60px 0px 60px;
        font-size: 1.3rem;
        border: none;
        border-radius: 28px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 6px 18px 0 rgba(41, 83, 179, 0.13);
        transition: background 0.2s, box-shadow 0.2s;
        font-family: 'Material Design Icons', sans-serif;
        text-align: center;
        display: inline-block;
    }

    .sticky-footer-btn:hover {
        background: linear-gradient(90deg, #04115a 0%, #0089ff 100%);
        color: #fff;
    }

    @media (max-width: 700px) {
        .sticky-footer-content {
            flex-direction: column;
            gap: 0px !important;
            padding: 16px 4vw 12px 4vw;
        }

        .sticky-footer-left,
        .sticky-footer-btn {
            font-size: 1rem !important;
            text-align: center;
            padding: 5px;
            width: 100%;
        }

        .sticky-footer-btn {
            padding: 5px;
            font-size: 1rem;
        }

        .sticky-footer-bar {
            border-top-left-radius: 14px;
            border-top-right-radius: 14px;
        }
    }

    .sticky-footer-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 200;
        background: #fff;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        border: 3px solid #0a1857;
        border-bottom: none;
        box-shadow: 0 8px 24px 0 rgba(36, 52, 136, 0.09);
        padding: 0;
    }

    .sticky-footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 18px 16px 14px 16px;
        gap: 32px;
    }

    .sticky-footer-left {
        color: #ff1616;
        font-weight: 700;
        font-size: 1.8rem;
        font-family: 'Material Design Icons', sans-serif;
    }

    .stat-icon {
        font-size: 2.4rem;
        margin-bottom: 8px;
        color: #fff;
        display: inline-block;
        opacity: 0.92;
    }

    /*about section */

    .about-section {
        background: #daeaf7;
        padding: 70px 0;
        font-family: 'Material Design Icons', sans-serif;
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        flex-wrap: wrap;
    }

    .about-image-wrap {
        position: relative;
        flex: 1 1 480px;
        min-width: 320px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-image {
        width: 390px;
        height: 450px;
        object-fit: cover;
        border-radius: 45% 55% 50% 60%/60% 40% 70% 40%;
        box-shadow: 0 10px 40px 0 rgba(100, 100, 150, 0.08);
        z-index: 2;
        background: #fff;
    }

    .about-decor {
        position: absolute;
        z-index: 1;
        opacity: 0.25;
    }

    .about-decor.plus {
        color: #cb7ada;
        font-size: 38px;
        left: 35px;
        top: 70px;
    }

    .about-decor.triangle {
        color: #a387e7;
        font-size: 34px;
        right: 45px;
        top: 18px;
    }

    .about-decor.dots {
        width: 120px;
        height: 120px;
        left: -35px;
        bottom: 25px;
        background: radial-gradient(circle, #c7b7e3 1.2px, transparent 1.2px);
        background-size: 14px 14px;
        display: block;
        border-radius: 50%;
        opacity: 0.35;
    }

    .about-content {
        flex: 1 1 420px;
        min-width: 320px;
        max-width: 540px;
    }

    .about-label {
        display: inline-block;
        letter-spacing: 0.2em;
        color: #444;
        font-size: 1.02rem;
        margin-bottom: 10px;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 3px;
    }

    .about-title {
        font-size: 2.6rem;
        font-weight: 700;
        color: #412f70;
        margin-bottom: 24px;
        line-height: 1.1;
    }

    .about-title .highlight {
        color: #925be8;
    }

    .about-desc {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 36px;
        line-height: 1.7;
        max-width: 98%;
    }

    .about-btn {
        background: linear-gradient(90deg, #2563eb 0%, #0f46bd 100%);
        color: #fff;
        border: none;
        border-radius: 28px;
        padding: 14px 44px;
        font-size: 1.08rem;
        font-weight: 600;
        box-shadow: 0 7px 25px 0 rgba(120, 80, 220, 0.10);
        transition: background 0.2s, box-shadow 0.2s;
        cursor: pointer;
    }

    .about-btn:hover {
        background: linear-gradient(90deg, #7e47d1 0%, #cc3cbe 100%);
        box-shadow: 0 10px 32px 0 rgba(120, 80, 220, 0.18);
    }

    @media (max-width: 1000px) {
        .about-container {
            flex-direction: column;
            gap: 28px;
        }

        .about-image-wrap,
        .about-content {
            min-width: 0;
            max-width: 100%;
        }

        .about-image {
            width: 320px;
            height: 340px;
        }
    }

    @media (max-width: 600px) {
        .about-section {
            padding: 32px 0;
        }

        .about-title {
            font-size: 2rem;
        }

        .about-image {
            width: 92vw;
            height: 92vw;
            max-width: 360px;
            max-height: 360px;
            border-radius: 18px !important;
            /* Square corners */
            object-fit: cover;
        }

        .about-content {
            padding: 0 12px;
        }
    }

    /* transistion effect  */
    .fade-up,
    .fade-down,
    .fade-left,
    .fade-right {
        opacity: 0;
        transition: all 0.8s ease-out;
    }

    .fade-up {
        transform: translateY(30px);
    }

    .fade-down {
        transform: translateY(-30px);
    }

    .fade-left {
        transform: translateX(30px);
    }

    .fade-right {
        transform: translateX(-30px);
    }

    .fade-up.show,
    .fade-down.show,
    .fade-left.show,
    .fade-right.show {
        opacity: 1;
        transform: translate(0, 0);
    }

   

    .real-clients-title {
        color: #0A2540;
        font-size: 2rem;
        font-weight: 700;
    	text-align: center;
    }