
    .bg-white {
        background: #FFFFFF;
    }

    .bg-blue-light {
        background: #edf4fe;
    }

    .grey {
        background: #f9f9f9;
    }

    .orange {
        color: #ff5d02;
    }

    .white {
        color: #FFFFFF;
    }

    h2 {
        font-size: 2.1rem !important;
    }

    .section-1 {
        background-image: url("https://nobacklog.s3.us-east-2.amazonaws.com/frontend/nbl-media/home/new/bg_dot.webp");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .section-1 h2 {
        font-size: 1.8rem !important;
        line-height: 2.5rem;
    }

    .strong {
        font-weight: 700;
    }

    /* section hero */
    .hero_area {
        background: #FFFFFF;
        position: relative;
        height: 100%;
        min-height: 700px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 200px 20px;
    }

    .hero_area_section {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hero_area_section .custom {
        width: 100%;
        position: unset;
    }

    .hero_area_section .custom .custom-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .custom-item {
        display: block;
        text-align: center;
    }

    .discount-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #E8F0FE;
        color: #1976D2;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 30px;
    }

    .discount-badge .percent-icon {
        font-size: 1.1rem;
        font-weight: 700;
    }

    .hero_area h1 {
        color: #000000;
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero_area h1 .highlight-blue,
    .hero_area h2 .highlight-blue {
        color: #1967D2;
    }
    .hero_area h2{
        color: #000000;
        font-weight: 600;
        margin-bottom: 30px;
    }

    .hero_area .hero-description {
        color: #666666;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 40px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero_area .hero-description .highlight-blue {
        color: #1967D2;
    }

    .hero_area .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .p-section {
        padding: 100px 0px;
    }

    .hero_area .btn-secondary {
        background: #FFFFFF;
        color: #333333;
        border: 1px solid #CCCCCC;
        border-radius: 8px;
        padding: 16px 32px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: all 0.2s;
    }

    .hero_area .btn-secondary:hover {
        border-color: #999999;
        background: #F9F9F9;
        color: #333333;
        text-decoration: none;
    }

    .hero_area .hero-footer {
        color: #999999;
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto;
    }

    .hero_area .hero-footer .highlight-blue {
        color: #1967D2;
    }

    /* section hero ==============*/

    /* Feature Cards Section */
    .feature-cards-section {
        background: #f8f9fa;
    }
    .feature-cards-section h5{
        font-weight: 700;
    }

    .feature-cards-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .feature-cards-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .feature-card {
        background: #FFFFFF;
        border-radius: 16px;
        padding: 0;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .feature-card-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
    }

    .feature-card-content {
        padding: 30px;
    }

    .feature-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .feature-card p {
        font-size: 1rem;
        color: #666666;
        line-height: 1.6;
        margin: 0;
    }

    @media (max-width: 1024px) {
        .feature-cards-row {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
    }

    .text-responsive{
        font-size: 0.875rem !important;
    }

    @media (max-width: 768px) {

        .text-responsive{
            font-size: 14px !important;
        }

        .btn-primary-gradient {
            padding: 10px 30px !important;
        }

        .btn-outline-secondary-nbl {
            padding: 10px 30px !important;
        }

        .p-section {
            padding: 60px 0px;
        }

        .feature-cards-row {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .feature-card-image {
            height: 200px;
        }

        .feature-card-content {
            padding: 25px;
        }

        .feature-card h3 {
            font-size: 1.3rem;
        }

    }

    @media (max-width: 640px) {
        .feature-card h3 {
            font-size: 1.2rem;
        }

        .feature-card p {
            font-size: 0.95rem;
        }
    }

    /* Feature Cards Section ==============*/

    /* Pictures & Video Samples Section */
    .pictures-video-section {
        background: #FFFFFF;
        padding: 80px 20px;
    }

    .pictures-video-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .pictures-video-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .pictures-video-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #1976D2;
        border-radius: 8px;
        position: relative;
    }

    .pictures-video-icon::before {
        content: '';
        width: 0;
        height: 0;
        border-left: 12px solid #1976D2;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        margin-left: 4px;
    }

    .pictures-video-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #000000;
        margin: 0;
    }

    .pictures-video-carousel {
        position: relative;
    }

    @media (max-width: 640px) {
        .pictures-video-section {
            padding: 40px 15px;
        }

        .pictures-video-header h2 {
            font-size: 1.5rem;
        }

        .pictures-video-icon {
            width: 50px;
            height: 50px;
        }

        .pictures-video-icon::before {
            border-left-width: 10px;
            border-top-width: 6px;
            border-bottom-width: 6px;
        }
    }

    /* Pictures & Video Samples Section ==============*/

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

    .testimonials-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .testimonials-masonry {
        column-count: 2;
        column-gap: 20px;
    }

    .testimonial-card {
        background: #FFFFFF;
        border-radius: 12px;
        padding: 0;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s, box-shadow 0.3s;
        break-inside: avoid;
        margin-bottom: 20px;
        display: inline-block;
        width: 100%;
    }

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    .testimonial-card-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .testimonial-card-content {
        padding: 30px;
    }

    .testimonial-card-text {
        font-size: 1rem;
        color: #333333;
        line-height: 1.8;
        margin-bottom: 20px;
        text-align: left;
    }

    .testimonial-card-author {
        font-size: 1rem;
        color: #1976D2;
        margin: 0;
        text-align: center;
    }

    .testimonial-card-author::before {
        content: '— ';
    }

    @media (max-width: 1024px) {
        .testimonials-masonry {
            column-count: 2;
        }
    }

    @media (max-width: 768px) {

        .testimonials-masonry {
            column-count: 1;
            column-gap: 25px;
        }

        .testimonial-card-content {
            padding: 25px;
        }
    }

    @media (max-width: 640px) {

        .testimonial-card-text {
            font-size: 0.95rem;
        }
    }

    /* Testimonials Section ==============*/

    /* Discount How It Works Banner */
    .discount-banner-section {
        background: #FFFFFF;
    }

    .discount-banner-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .discount-banner {
        background: #1976D2;
        border-radius: 16px;
        padding: 60px 50px;
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 50px;
        align-items: start;
    }

    .discount-banner-heading {
        color: #FFFFFF;
    }

    .discount-banner-heading h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #FFFFFF;
        margin: 0;
        line-height: 1.2;
    }

    .discount-banner-content {
        color: #FFFFFF;
    }

    .discount-banner-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 25px;
        color: #FFFFFF;
    }

    .discount-banner-content p strong {
        font-weight: 700;
    }

    .discount-banner-content ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }

    .discount-banner-content ul li {
        font-size: 1rem;
        line-height: 1.8;
        color: #FFFFFF;
        margin-bottom: 12px;
        padding-left: 25px;
        position: relative;
    }

    .discount-banner-content ul li::before {
        content: '•';
        position: absolute;
        left: 0;
        font-size: 1.2rem;
        line-height: 1.8;
    }

    .discount-banner-note {
        font-size: 0.85rem;
        color: #FFFFFF;
        opacity: 0.9;
        margin-top: 20px;
        text-align: right;
    }

    @media (max-width: 1024px) {
        .discount-banner {
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 50px 40px;
        }

        .discount-banner-heading h2 {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 768px) {

        .discount-banner {
            padding: 40px 30px;
            gap: 30px;
        }

        .discount-banner-heading h2 {
            font-size: 2rem;
        }

        .discount-banner-content p {
            font-size: 1rem;
        }

        .discount-banner-content ul li {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 640px) {

        .discount-banner {
            padding: 30px 20px;
        }

        .discount-banner-heading h2 {
            font-size: 1.75rem;
        }

        .discount-banner-content p {
            font-size: 0.95rem;
        }

        .discount-banner-content ul li {
            font-size: 0.9rem;
        }

        .discount-banner-note {
            font-size: 0.8rem;
            text-align: left;
        }
    }

    /* Discount How It Works Banner ==============*/

    /* Ready to Get Started Section */
    .get-started-section {
        background: #FFFFFF;
    }

    .get-started-top {
        background: #FFFFFF;
        padding: 80px 20px;
    }

    .get-started-top-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .get-started-image-wrapper {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
    }

    .get-started-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 16px;
    }

    .order-now-button-overlay {
        position: absolute;
        top: 20px;
        left: 20px;
        background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
        color: #FFFFFF;
        padding: 12px 24px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.2s;
    }

    .order-now-button-overlay:hover {
        transform: scale(1.05);
    }

    .order-now-button-overlay i {
        font-size: 1.2rem;
    }

    .order-form-card {
        background: #FFFFFF;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .order-form-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
    }

    .order-form-card-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #000000;
        margin: 0;
    }

    .order-form-status {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #1976D2;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 1rem;
    }

    .add-wedding-button {
        background: #1976D2;
        color: #FFFFFF;
        border: none;
        border-radius: 8px;
        padding: 12px 20px;
        font-size: 1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        transition: background 0.3s;
        width: 100%;
        justify-content: center;
        margin-bottom: 25px;
    }

    .add-wedding-button:hover {
        background: #1565C0;
    }

    .order-form-fields {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .order-form-field {
        display: flex;
        flex-direction: column;
    }

    .order-form-field label {
        font-size: 0.9rem;
        color: #666666;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .order-form-field input {
        padding: 12px 16px;
        border: 1px solid #E0E0E0;
        border-radius: 8px;
        font-size: 1rem;
        color: #000000;
    }

    .order-form-field input:focus {
        outline: none;
        border-color: #1976D2;
    }

    .get-started-bottom {
        background: #E3F2FD;
        padding: 80px 20px;
    }

    .get-started-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 50px;
        align-items: center;
    }

    .get-started-heading h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #000000;
        margin: 0;
        line-height: 1.2;
    }

    .get-started-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .get-started-description {
        font-size: 1.1rem;
        color: #333333;
        line-height: 1.6;
        margin: 0;
    }

    .get-started-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        align-items: center;
    }

    .btn-get-started-primary {
        background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
        color: #FFFFFF;
        border: none;
        border-radius: 9999px;
        padding: 14px 28px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
        white-space: nowrap;
    }

    .btn-get-started-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(25, 118, 210, 0.4);
        color: #FFFFFF;
        text-decoration: none;
    }

    .btn-get-started-secondary {
        background: #F5F5F5;
        color: #333333;
        border: 1px solid #E0E0E0;
        border-radius: 9999px;
        padding: 14px 28px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: all 0.2s;
        white-space: nowrap;
    }

    .btn-get-started-secondary:hover {
        background: #EEEEEE;
        border-color: #D0D0D0;
        color: #333333;
        text-decoration: none;
    }

    .btn-start-order {
        background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
        color: #FFFFFF;
        border: none;
        border-radius: 8px;
        padding: 16px 32px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
        text-decoration: none;
        display: inline-block;
    }

    .btn-start-order:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(25, 118, 210, 0.4);
        color: #FFFFFF;
        text-decoration: none;
    }

    .btn-email-us {
        background: #FFFFFF;
        color: #1976D2;
        border: 2px solid #1976D2;
        border-radius: 8px;
        padding: 16px 32px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
    }

    .btn-email-us:hover {
        background: #F5F5F5;
        color: #1976D2;
        text-decoration: none;
    }

    @media (max-width: 1024px) {

        .get-started-top-container,
        .get-started-bottom-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .get-started-heading h2 {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 768px) {

        .get-started-top,
        .get-started-bottom {
            padding: 60px 20px;
        }

        .get-started-heading h2 {
            font-size: 2rem;
        }

        .get-started-description {
            font-size: 1rem;
        }

        .get-started-buttons {
            flex-direction: row;
            gap: 12px;
            justify-content: flex-start;
        }

        .btn-get-started-primary,
        .btn-get-started-secondary {
            flex: 1;
            min-width: 0;
            padding: 12px 20px;
            font-size: 0.95rem;
            text-align: center;
        }
    }

    @media (max-width: 640px) {

        .get-started-top,
        .get-started-bottom {
            padding: 40px 15px;
        }

        .get-started-heading h2 {
            font-size: 1.75rem;
        }

        .order-form-card {
            padding: 20px;
        }

        .order-now-button-overlay {
            top: 10px;
            left: 10px;
            padding: 10px 16px;
            font-size: 0.9rem;
        }

        .get-started-buttons {
            flex-direction: row;
            gap: 10px;
        }

        .btn-get-started-primary,
        .btn-get-started-secondary {
            flex: 1;
            padding: 12px 16px;
            font-size: 0.9rem;
        }
    }

    /* Ready to Get Started Section ==============*/

    /* Edithub */
    .edithub a {
        font-weight: 500;
    }

    /* Edithub ==============*/

    /* trusted */
    .trusted .content {
        border-radius: 20px;
    }

    .trusted .content .left img {
        width: 100%;
    }

    .trusted .content .right {
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .trusted .content .right p {
        font-size: 2.4rem;
        font-weight: 600;
        line-height: 3rem;
    }

    .trusted .content .right p span {
        color: #3589e7;
        font-weight: 700;
    }

    /* trusted ==============*/


    /* sample */
    .video-editing .default-video-samples-slide .item {
        opacity: 0.2;
        transition: .4s ease all;
        margin: 0 20px;
    }

    .video-editing .default-video-samples-slide .item video,
    .video-editing .default-video-samples-slide .item iframe {
        cursor: all-scroll;
    }

    .video-editing .default-video-samples-slide .item {
        overflow: hidden;
        /* 16:9 aspect ratio */
        padding-top: 30%;
        position: relative;
        /* margin-bottom: 50px; */
    }

    .video-editing .default-video-samples-slide .item iframe {
        border: 0;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        margin-bottom: 30px;
    }

    .video-editing .default-video-samples-slide .item:hover {
        opacity: 1;
        transition: .4s ease all;
    }

    .default-video-samples-slide .active .item {
        opacity: 1;
    }

    .default-video-samples-slide .owl-item {
        -webkit-backface-visibility: hidden;
        -webkit-transform: translateZ(0) scale(1.0, 1.0);
    }

    .video-editing .nav-pills .nav-link.active {
        background: transparent;
        color: #2676DC !important;
        border-right: 4px solid #2676DC;
        border-radius: unset;
    }

    .video-editing .shadow-video {
        box-shadow: 11px 3px 25px -21px #888;
    }

    .video-editing .video-editing p.or {
        position: relative;
        z-index: 1;
    }

    .video-editing .video-editing p.or:before {
        border-top: 2px solid #dfdfdf;
        content: "";
        margin: 0 auto;
        position: absolute;
        top: 40%;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        z-index: -1;
    }

    /* sample =============*/

    /* why nobacklog */
    .why-list {
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }

    /* .why-list > div:first-child{
                                                                            width: 25px;
                                                                        } */
    .why-list>div:first-child img {
        width: 30px;
    }

    .why-list>div:nth-child(2) {}

    /* why nobacklog =============*/

    /* contact */
    .contact .right img,
    .turn-around .right img {
        width: 100%;
    }

    /* contact =============*/

    .pre-footer {
        background-image: url("https://nobacklog.s3.us-east-2.amazonaws.com/frontend/nbl-media/home/banner2.webp");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    /* deliver */
    .deliver,
    .pre-footer {
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: end;
        position: relative;
    }

    .deliver .content {
        padding: 250px 0;
    }

    .pre-footer .content {
        padding: 100px 0 450px 0;
    }

    .deliver .content h2,
    .pre-footer .content h2 {
        text-align: center;
        letter-spacing: 1px;
        font-size: 3rem !important;
        line-height: 3.5rem;
    }

    /* deliver =============*/

    /* platform */
    .platform.video-editing-wework {
        background: radial-gradient(circle at 50.5% 42.82%, #102c54, transparent 75%), radial-gradient(circle at 96.06% 11.49%, #377f96, transparent 21%), radial-gradient(circle at 79.06% 9.79%, #102c54, transparent 54%), radial-gradient(circle at 94.31% 67.36%, #102c54, transparent 24%), radial-gradient(circle at 12.5% 23.11%, #4aaaca, transparent 30%), radial-gradient(circle at 18.44% 88.38%, #102c54, transparent 100%), radial-gradient(circle at 88.38% 45.17%, #102c54, transparent 98%), radial-gradient(circle at 50% 50%, #1db4ff, #1db4ff 100%)
    }

    .platform.video-editing-wework:hover img {
        box-shadow: 0 3px 5px rgb(23 19 19 / 96%);
        background: white;
        border-radius: 12px;
        margin: 8px !important;
    }

    .platform.video-editing-wework img {
        transition: box-shadow .1s, margin .2s cubic-bezier(.4, 0, .43, .88);
    }

    .platform.video-editing-wework .icon picture img:hover {
        background: white;
        border-radius: 12px;
    }

    /* platform =============*/

    /* benefits */
    .benefits img {
        margin: auto;
        height: 60px;
    }

    .benefits h6 {
        font-size: 1.4rem;
    }

    /* benefits =============*/

    /* testimonials */
    .testimonials .owl-nav button span {
        padding: 13px 23px 13px 17px;
        line-height: 0;
        display: inherit;
        border: 1px solid rgba(0, 0, 0, 1);
        background: rgba(0, 0, 0, 0.2);
        border-radius: 50%;
    }

    .testimonials .owl-nav button:hover span {
        background: rgba(0, 0, 0, 0.5) !important;
    }

    .countup-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .countup {
        margin: auto;
        width: fit-content;
        font-family: 'Poppins', sans-serif;
        border-radius: .5rem;
        background-color: rgba(255, 255, 255, 0.1);
        padding: 15px 30px 15px 30px;
    }

    .countup .countup-title {
        font-size: 1.875rem;
        line-height: 2.25rem;
        font-weight: 700;
        text-align: center;
        font-variation-settings: normal;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .countup .countup-body {
        font-size: .875rem;
        line-height: 1.45rem;
        font-weight: 300;
        text-align: center;
        font-variation-settings: normal
    }

    .countup .countup-wrapper {
        font-size: .875rem;
        line-height: 1.45rem;
        font-weight: 700;
        text-align: center;
        font-variation-settings: normal
    }

    /* testimonials ================*/

    @media(max-width:1000px) {

        /* sample */
        .default-video-samples-slide .item {
            margin: 0;
        }



        /* sample =============*/
    }

    @media (max-width:1536px) {}

    @media (max-width:1280px) {
        .strong {
            font-weight: 600;
        }

        .section-1 h2 {
            font-weight: 400;
        }

        .why-list>div:first-child img {
            width: 30px;
        }

        .deliver .content h2,
        .pre-footer .content h2 {
            font-size: 2.5rem !important;
            line-height: 3rem;
        }
    }

    @media (max-width:1024px) {
        .section-1 h2 {
            font-weight: 600;
        }

        .trusted .content .right p {
            font-size: 2rem;
            line-height: 2.4rem;
        }

        h2 {
            font-size: 1.9rem !important;
            line-height: 2.4rem;
        }

        .deliver .content h2,
        .pre-footer .content h2 {
            font-size: 2.2rem !important;
            line-height: 2.7rem;
        }
    }

    @media (max-width:768px) {
        .hero_area {
            min-height: auto;
            padding: 180px 20px 100px 20px;
        }

        .hero_area h1 {
            font-size: 2rem;
            line-height: 1.3;
        }

        .hero_area .hero-description {
            font-size: 1rem;
        }

        .hero_area .hero-buttons {
            flex-direction: row;
            width: 100%;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero_area .btn-outline-secondary-nbl {
            background: #FFFFFF;
            color: #000000;
            border: 1px solid #CCCCCC;
        }

        .discount-badge {
            font-size: 0.85rem;
            padding: 6px 16px;
        }

        .section-1 {
            background-image: url("https://nobacklog.s3.us-east-2.amazonaws.com/frontend/nbl-media/home/new/bg_dot_mobile.webp");
        }

        .section-1 h2 {
            font-weight: 400;
        }

        .trusted .content .right p {
            font-size: 2rem;
        }

        h2 {
            font-size: 1.8rem !important;
        }

        .trusted .content .left img {
            width: 60%;
            margin: auto;
        }

        .video-editing .default-video-samples-slide .item {
            margin: 0 10px;
        }

        .pre-footer {
            background-image: url("https://nobacklog.s3.us-east-2.amazonaws.com/frontend/nbl-media/home/new/banner2_sm.webp");
        }

        .deliver .content h2,
        .pre-footer .content h2 {
            font-size: 2rem !important;
            line-height: 2.5rem;
        }

        .countup-container {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2.5 rem;
        }
    }

    @media (max-width:640px) {
        .hero_area {
            padding: 180px 15px 100px 15px;
        }

        .hero_area h1 {
            font-size: 1.75rem;
            line-height: 1.3;
        }

        .hero_area .hero-description {
            font-size: 0.95rem;
        }

        .hero_area .hero-footer {
            font-size: 0.85rem;
        }

        .hero_area .hero-buttons {
            gap: 12px;
        }

        .trusted .content .right p {
            font-size: 1.8rem;
            line-height: 2.4rem;
        }

        h2 {
            font-size: 1.6rem !important;
        }

        .deliver .content h2,
        .pre-footer .content h2 {
            font-size: 1.8rem !important;
            line-height: 2.3rem;
        }

        .countup-container {
            /* display: grid; */
            grid-template-columns: repeat(1, minmax(0, 1fr));
            /* gap:2.5 rem; */
        }
    }

    @media (max-width:340px) {
        .hero_area h1 {
            font-size: 1.5rem;
        }

        .hero_area .hero-description {
            font-size: 0.9rem;
        }

        .section-1 h2 {
            font-size: 1.4rem !important;
            line-height: 2rem;
        }

        .trusted .content .right p {
            font-size: 1.4rem;
            line-height: 2rem;
        }

        .video-editing .default-video-samples-slide .item {
            margin: 0 5px;
        }
    }

    /* Mobile visibility utilities */
    .hide-mobile {
        display: block;
    }

    .show-mobile {
        display: none;
    }

    @media (max-width: 767px) {
        .hide-mobile {
            display: none !important;
        }

        .show-mobile {
            display: block !important;
        }
    }

     /* Ensure carousel cells shrink on mobile */
     .carousel-cell {
        width: 80%;
        padding: 10px;
        box-sizing: border-box;
    }

    /* Responsive 16:9 video container */
    .video-wrapper {
        position: relative;
        width: 100%;
        padding-top: 56.25%;
        aspect-ratio: 16 / 9;/* 16:9 aspect ratio */
        height: fit-content;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
    }

    /* Responsive iframe */
    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .inner-container {
        border-radius: 15px;
        overflow: hidden;
    }

    @media (max-width: 767px) {
        .container-md {
            max-width: 100% !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .inner-container {
            border-radius: 0px;
        }
    }

    .flickity-button.flickity-prev-next-button.next {
        box-shadow: none !important;
    }
    .flickity-button.flickity-prev-next-button.prev {
        box-shadow: none !important;
    }
    .flickity-page-dot {
        border: 1px solid #000000 ;
        background-color: #ffffff ;
    }
    .flickity-page-dot:focus {
        background-color: #000000 ;
        box-shadow: none ;
    }

    .owl-next {
        background-color: rgba(0, 0, 0, 0.5) !important;
        border-radius: 9999px !important;
    }
   
    .owl-prev {
        background-color: rgba(0, 0, 0, 0.5) !important;
        border-radius: 9999px !important;
    }