/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*html {
    width: fit-content;
}*/

body {
    font-family: 'Inter', Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
    /* min-width: 100%;
    max-width: 100%;*/
    /*overflow-x: auto;*/
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.header {
    width: 100%;
    height: 69px;
    background-color: white;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.02), 0px 18px 18px rgba(0, 0, 0, 0.02), 0px 41px 25px rgba(0, 0, 0, 0.01), 0px 74px 29px transparent, 0px 115px 32px transparent;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 100px;
    max-width: 1920px;
    margin: 0 auto;
}

.logo-img {
    width: 170px;
    /*height: 36px;*/
    /*object-fit: cover;*/
}

.navigation {
    /*margin-left: -373px;*/

    display: flex;
    align-items: center;
    gap: 32px;
}

    .navigation.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        width: 100%;
        z-index: 999;
    }

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-item {
    position: relative;
}

    .nav-item a:hover {
        border: none;
        outline: none;
        text-decoration: none;
    }

.nav-link {
    font-family: 'Inter', Helvetica;
    font-weight: 500;
    font-size: 16px;
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #42c2f1;
    }

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 16px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}

.bulk-booking-btn {
    background-color: #242251;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    /*font-family: 'Inter', Helvetica;*/
    /*font-weight: 500;*/
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none !important;
}

    .bulk-booking-btn:hover {
        background-color: rgba(36, 34, 81, 0.9);
    }

.product-dropdown {
    display: flex;
    position: absolute;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 15px 20px;
    z-index: 1000;
    min-width: 520px;
    top: 100%;
    left: 0;
}

.menu-list {
    border-right: 2px solid #ddd;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-list1 {
    border-right: 2px solid #ddd;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.menu-item a {
    /*font-weight: bold;*/
    cursor: pointer;
    padding: 5px;
    white-space: nowrap;
    text-decoration: none;
    color: #121212d1;
}

    .menu-item a:hover {
        /*font-weight: bold;*/
        cursor: pointer;
        padding: 5px;
        white-space: nowrap;
        text-decoration: none;
        color: #121212d1;
    }

.menu-description {
    flex: 1;
    padding: 5px 5px 5px 20px;
}

.desc-text {
    display: flex;
    gap: 30px;
    white-space: nowrap;
}

    .desc-text ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .desc-text ul li a {
            font-size: 11px;
            line-height: 1.9;
            color: lightslategrey;
            text-decoration: none;
        }

            .desc-text ul li a:hover {
                font-size: 12px;
                line-height: 1.9;
                color: #000;
                text-decoration: none;
            }

.product-dropdown1 {
    display: flex;
    position: absolute;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 15px 20px;
    z-index: 1000;
    min-width: 300px;
    top: 100%;
    left: 0;
    /* height:200px; */
}

.logo-img a:hover {
    border: none;
    outline: none;
    text-decoration: none;
}

.contact-btn {
    background-color: #242251;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none !important;
    margin-right: -11px;
    display: inline-block;
}

    .contact-btn:hover {
        background-color: rgba(36, 34, 81, 0.9);
    }

.nav-item a:hover {
    border: none;
    outline: none;
    text-decoration: none;
}

.mobile-contact {
    display: none;
}

/*.left-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}*/
.left-section {
    display: flex;
    align-items: center;
}

.right-section {
    display: flex;
    align-items: center;
}

.mobile-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #242251;
    z-index: 1001;
}


/* About Section */
.about-section {
    padding: 120px 0 64px;
    /*max-width: 1720px;*/
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.about-container {
    display: flex;
    gap: 52px;
    align-items: flex-start;
}

.about-image {
    flex: 1;
}

.about-img {
    width: 89%;
    height: 509px;
    object-fit: cover;
    border-radius: 6px;
    margin-left: 95px;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.about-title {
    font-family: 'IBM Plex Sans', Helvetica;
    font-weight: 600;
    font-size: 34px;
    color: black;
    margin-bottom: 8px;
}

.about-description {
    font-family: 'Inter', Helvetica;
    font-weight: 400;
    color: #4f4f4f;
    font-size: 16px;
    line-height: 28.8px;
    text-align: justify;
    margin-bottom: 24px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-text {
    font-family: 'Inter', Helvetica;
    color: #4f4f4f;
    font-size: 16px;
}

.learn-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #42c2f1;
    color: #42c2f1;
    background: transparent;
    padding: 3px 12px;
    border-radius: 6px;
    font-family: 'Inter', Helvetica;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0px 0px 4px #00abfc;
    transition: all 0.3s ease;
    width: fit-content;
}

    .learn-more-btn:hover, img:hover {
        /* background-color: #42c2f1;*/
        color: #42c2f1;
    }


.star-icon {
    width: 24px;
    height: 24px;
}

/* Hero Section */
/*.hero-section {
    width: 100%;
    padding: 80px 90px;
}*/
.hero-section {
    padding-bottom: 0px;
    padding-top: 80px;
    padding-right: 90px;
    padding-left: 90px;
    width: 100%;
    /* padding: 80px 90px; */
}

.hero-container {
    display: flex;
    gap: 32px;
    /*max-width: 1720px;*/
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-family: 'IBM Plex Sans', Helvetica;
    font-weight: 600;
    font-size: 45px;
    line-height: 60px;
    color: black;
    margin-bottom: 48px;
}

.hero-description {
    font-size: 14px;
    margin-top: -34.1px;
    margin-bottom: 64px;
    color: #4f4f4f;
}

.highlight {
    font-weight: 600;
    color: #4f4f4f;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    /*  margin-bottom: 64px;*/
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'IBM Plex Sans', Helvetica;
    font-weight: 600;
    color: #242251;
    font-size: 40px;
    height: 55px;
    overflow: hidden;
    margin-bottom: -10px;
}

.stat-label {
    font-family: 'Inter', Helvetica;
    font-weight: 400;
    color: #4f4f4f;
    font-size: 12px;
}

.hero-visualizations {
    margin-right: 38px;
    flex: 1;
    position: relative;
    height: 600px;
}

.chart-card {
    position: absolute;
    background: white;
    border-radius: 16.83px;
    box-shadow: 0px 5.26px 12.62px rgba(0, 0, 0, 0.04), 0px 22.09px 22.09px rgba(0, 0, 0, 0.03), 0px 49.45px 29.46px rgba(0, 0, 0, 0.02), 0px 88.37px 35.77px rgba(0, 0, 0, 0.01), 0px 138.87px 38.93px transparent;
}

.main-chart {
    width: 550px;
    height: 402px;
    right: 0;
    top: 64px;
    padding: 65px 30px 65px 30px;
    /*    width: 660px;
    height: 445px;
    right: 0;
    top: 64px;
    padding: 65px 30px 65px 30px;*/
}

.chart-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.small-chart {
    width: 212px;
    height: 210px;
    left: 0;
    top: 337px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.small-chart-img {
    width: 227px;
    height: 122px;
    margin-bottom: 20px;
}

.chart-line {
    width: 225px;
    height: 1px;
}

.bar-chart {
    width: 226px;
    height: 80px;
    right: -50px;
    top: 0;
    padding: 16px;
}

.bar-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
}

.bar {
    width: 17px;
    border-radius: 4.21px;
}

.bar-1 {
    height: 28px;
    background: linear-gradient(0deg, rgba(120, 121, 241, 1) 0%, rgba(66, 194, 241, 1) 100%);
}

.bar-2 {
    height: 43px;
    background: linear-gradient(0deg, rgba(120, 121, 241, 1) 0%, rgba(66, 194, 241, 1) 100%);
}

.bar-3 {
    height: 56px;
    background: linear-gradient(0deg, rgba(120, 121, 241, 1) 0%, rgba(66, 194, 241, 1) 100%);
}

.bar-4 {
    height: 28px;
    background: linear-gradient(0deg, rgba(120, 121, 241, 1) 0%, rgba(66, 194, 241, 1) 100%);
}

.bar-5 {
    height: 56px;
    background: linear-gradient(0deg, rgba(120, 121, 241, 1) 0%, rgba(66, 194, 241, 1) 100%);
}

.bar-6 {
    height: 56px;
    background: linear-gradient(180deg, rgba(66, 194, 241, 1) 0%, rgba(120, 121, 241, 1) 100%);
}

/*.rating-card {
    width: 302px;
    height: 118px;
    right: -65px;
    top: 410px;
    padding: 12.04px;
    box-shadow: 10.52px 4.21px 42.08px rgba(0, 0, 0, 0.16);
}*/

.rating-header {
    display: flex;
    align-items: center;
    gap: 12.62px;
    margin-bottom: 12.62px;
}

.customer-count {
    font-family: 'Manrope', Helvetica;
    font-weight: 800;
    font-size: 16.8px;
    line-height: 21px;
}

.count-number {
    color: black;
}

.count-label {
    color: #8c8c8c;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 12px;
    height: 11px;
}

.rating-footer {
    display: flex;
    align-items: center;
    gap: 12.62px;
}

.forward-icon {
    width: 25.25px;
    height: 25.25px;
}

.rating-score {
    font-family: 'Manrope', Helvetica;
    font-weight: 800;
    color: black;
    font-size: 21px;
    line-height: 21px;
}

.user-avatars {
    display: flex;
    margin-left: -4.21px;
}

.avatar {
    width: 50.5px;
    height: 50.5px;
    margin-left: -8.42px;
    border-radius: 50%;
}

.avatar-count {
    width: 42px;
    height: 42px;
    margin-left: -8.42px;
    background-color: rgba(120, 121, 241, 1);
    border-radius: 21.04px;
    border: 1.05px solid #242251;
    box-shadow: 0px 4.21px 4.21px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', Helvetica;
    font-weight: 600;
    color: white;
    font-size: 10.5px;
    line-height: 21px;
}


/*@media (max-width: 768px) {

    .hero-section {
        padding: 40px 20px;
    }

    .hero-container {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 13px;
        margin: 0 0 32px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 32px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    .hero-visualizations {
        height: 300px;
    }

    .chart-card {
        position: relative;
        width: 100%;
        box-shadow: none;
        border-radius: 12px;
        margin: 20px 0;
    }

    .main-chart {
        width: 100%;
        height: auto;
        padding: 20px;
        top: 0;
        right: 0;
    }

    .chart-img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .small-chart {
        width: 100%;
        height: auto;
        padding: 20px;
        position: relative;
        left: 0;
        top: 0;
        margin-top: 20px;
    }

    .small-chart-img {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .bar-chart {
        width: 100%;
        height: auto;
        padding: 16px;
        position: relative;
        right: 0;
        top: 0;
        margin-top: 20px;
    }
     

    .bar {
        width: 10px;
    }

    .rating-card {
        width: 100%;
        height: auto;
        padding: 15px;
        position: relative;
        right: 0;
        top: 0;
        margin-top: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .rating-header {
        gap: 8px;
        margin-bottom: 8px;
    }

    .customer-count {
        font-size: 14px;
    }

    .stars {
        gap: 1px;
    }

    .star {
        width: 10px;
        height: 10px;
    }

    .rating-footer {
        gap: 8px;
    }

    .forward-icon {
        width: 20px;
        height: 20px;
    }

    .rating-score {
        font-size: 18px;
    }

    .user-avatars {
        margin-left: 0;
        justify-content: center;
    }

    .avatar {
        width: 35px;
        height: 35px;
        margin-left: -5px;
    }

    .avatar-count {
        width: 35px;
        height: 35px;
        font-size: 10px;
        margin-left: -5px;
    }
}*/












/* Impact Section */
.impact-section {
    width: 100%;
    padding: 0px 90px;
}

.impact-container {
   /* max-width: 1720px;*/
    margin: 0 auto;
    text-align: center;
}

.impact-title {
    /*font-family: 'IBM Plex Sans', Helvetica;*/
    font-weight: 600;
    font-size: 35px;
    color: black;
    margin-bottom: 20px;
}

.impact-description {
    max-width: 558px;
    margin: 0 auto 64px;
    /*font-family: 'Inter', Helvetica;*/
    color: #4f4f4f;
    font-size: 14px;
    line-height: 28.8px;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 80px;
    justify-items: center;
    align-items: center;
}


/*.client-logos {
    display: flex;
    flex-direction: column;
    gap: 80px;
}*/

.logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*flex-wrap: wrap;*/
    gap: 20px;
}

.client-logo {
    height: 65px;
    object-fit: contain;
    /*filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;*/
}

    .client-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

/* Statistics Section */
.statistics-section {
    width: 100%;
    /*max-width: 1724px;*/
    margin: 0 auto;
    padding: 64px 24px;
}

.statistics-title {
    margin-left: 30px;
    font-family: 'IBM Plex Sans', Helvetica;
    font-weight: 600;
    font-size: 36px;
    text-align: left;
    color: black;
    margin-bottom: 20px;
}

.statistics-description {
    /*max-width: 1575px;*/
    /* margin: 0 auto 40px;*/
    font-size: 15px;
    color: #4f4f4f;
    font-family: 'Inter', Helvetica;
    line-height: 28.8px;
}

/*.certifications-scroll {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding-bottom: 16px;
    margin-bottom: 64px;
}*/







.certifications-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 16px 0;
}

.certifications-scroll {
    display: flex;
    gap: 40px;
    animation: scrollLeft 10s linear infinite;
}

.certification-card {
    min-width: 200px; /* adjust as per your design */
    height: 150px; /* adjust as needed */
    background: #f8f8f8;
    border-radius: 8px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

.cert-bg {
    width: 100%;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cert-name {
    margin-top: 8px;
    font-size: 14px;
    font-weight: bold;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-140%); /* depends on how many cards, adjust as needed */
    }
}




.certifications-scroll::-webkit-scrollbar {
    height: 8px;
}

.certifications-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.certifications-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

    .certifications-scroll::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.certification-card {
    width: 312px;
    height: 274.11px;
    background-color: #242251;
    border-radius: 10px;
    flex-shrink: 0;
    padding: 10px;
}

.cert-bg {
    width: 292px;
    height: 190px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
}

.cert-name {
    font-weight: 600;
    color: white;
    font-size: 15.6px;
    text-align: center;
    line-height: 25px;
    font-family: 'Inter', Helvetica;
}





/* Trust Section */
.trust-section {
    width: 100%;
    padding: 64px 24px;
}

.trust-container {
   /* max-width: 1400px;*/
    margin: 0 auto;
}

.trust-title {
    font-size: 48px;
    text-align: center;
    font-weight: 600;
    font-family: 'IBM Plex Sans', Helvetica;
    color: black;
    margin-bottom: 24px;
}

.trust-description {
    font-size: 18px;
    text-align: center;
    font-weight: 400;
    /*  font-family: 'Inter', Helvetica;*/
    color: #10384f;
    max-width: 759px;
    margin: 0 auto 64px;
    line-height: 28.8px;
}

.testimonials-container {
    display: flex;
    gap: 32px;
}

.testimonials-header {
    width: 25%;
    position: relative;
}

@media (max-width: 1024px) {
    .testimonials-header {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .testimonials-header {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .testimonials-header {
        width: 100%;
    }
}

.quote-mark {
    position: absolute;
    top: -79px;
    left: -15px;
    font-family: 'Dhyana-Regular', Helvetica;
    font-weight: 400;
    color: #767676;
    font-size: 204.4px;
    line-height: 1;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 600;
    font-family: 'IBM Plex Sans', Helvetica;
    color: black;
    margin: 64px 0 32px;
}

.pagination-dots {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 32px;
}

.dot {
    width: 14px;
    height: 6px;
    border-radius: 8px;
    background-color: #d9d9d9;
}

    .dot.active {
        width: 25px;
        background-color: #4e4e4e;
    }

/*.testimonials-grid {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}*/

.testimonial-item {
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-family: 'Inter', Helvetica;
    font-weight: 600;
    color: black;
    font-size: 16px;
    margin-bottom: 2px;
}

.company-location {
    font-family: 'Inter', Helvetica;
    font-weight: 400;
    color: black;
    font-size: 14px;
}

.testimonial-card {
    border-radius: 12px;
    box-shadow: 0px 10px 23px rgba(0, 0, 0, 0.02), 0px 41px 41px rgba(0, 0, 0, 0.02), 0px 93px 56px rgba(0, 0, 0, 0.01), 0px 165px 66px transparent, 0px 259px 72px transparent;
    background-color: #f5f5f5;
    padding: 32px;
}

.testimonial-text {
    font-family: 'IBM Plex Sans', Helvetica;
    font-weight: 500;
    color: black;
    font-size: 18px;
    line-height: 28.8px;
}

@media (max-width: 1024px) {
    .trust-title {
        font-size: 36px;
    }

    .trust-description {
        font-size: 16px;
        margin-bottom: -18px;
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonials-title {
        font-size: 36px;
        text-align: center;
    }

    .testimonial-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .trust-title {
        font-size: 28px;
        line-height: 36px;
    }

    .trust-description {
        font-size: 15px;
        line-height: 24px;
        padding: 0 12px;
    }

    .testimonials-title {
        font-size: 28px;
        margin: 48px 0 24px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .pagination-dots {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .trust-title {
        font-size: 24px;
        line-height: 30px;
    }

    .trust-description {
        font-size: 14px;
        margin-bottom: 32px;
        padding: 0 8px;
    }

    .testimonials-title {
        font-size: 24px;
        margin: 32px 0 16px;
    }

    .testimonial-avatar {
        width: 30px;
        height: 30px;
    }

    .company-name {
        font-size: 14px;
    }

    .company-location {
        font-size: 13px;
    }

    .testimonial-card {
        padding: 16px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 24px;
    }

    .pagination-dots {
        margin-top: 24px;
    }
}




/* Partners Section (FAQ) */
.partners-section {
    width: 100%;
    /*max-width: 1660px;*/
    margin: 0 auto;
    padding: 48px 24px;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.faq-title {
    font-weight: 600;
    font-size: 48px;
    color: #00131e;
    font-family: 'IBM Plex Sans', Helvetica;
}

.faq-description {
    /*max-width: 619px;*/
    font-size: 16px;
    color: #4f4f4f;
    /* font-family: 'Inter', Helvetica; */
    line-height: 25.8px;
    margin-top: 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 28px;
    margin-top: 32px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq-item {
    border: none;
}

.faq-question {
    /*font-family: 'Inter', Helvetica;*/
    font-weight: 300;
    color: black;
    font-size: 21px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: color 0.3s ease;
}

    .faq-question:hover {
        color: #000;
        border: none;
    }

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding-top: 16px;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Services Section */
.services-section {
    position: relative;
    width: 100%;
    padding: 96px 0;
    background-color: #242251;
    overflow: hidden;
}

.services-container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 83px;
}

.services-header {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 64px;
}
.services-title {
    font-weight: 600;
    color: white;
    font-size: 37px;
    font-family: 'IBM Plex Sans', Helvetica;
    max-width: 845px;
}

.services-cta {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: auto;
}

.services-description {
    font-weight: 400;
    color: #e5e5e5;
    font-size: 14px;
    font-family: 'IBM Plex Sans', Helvetica;
    line-height: 28.8px;
    width: 354px;
}
.get-quote {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: white;
    font-weight: 500;
    font-size: 17px;
    font-family: 'IBM Plex Sans', Helvetica;
    line-height: 24px;
    transition: color 0.3s ease;
}

    .get-quote:hover {
        color: #42c2f1;
    }

.arrow-icon {
    width: 24px;
    height: 24px;
    margin-left: 8px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 65px;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    height: 480px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.service-card-title {
    font-weight: 500;
    color: black;
    font-size: 24px;
    font-family: 'IBM Plex Sans', Helvetica;
    line-height: 28.8px;
    max-width: 250px;
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b2b-icon {
    background-color: #f3f8fd;
}

.b2c-icon {
    background-color: #f4fef5;
}

.b2g-icon {
    background-color: #fef9f4;
}

.service-icon img {
    width: 24px;
    height: 24px;
}

.service-card-description {
    font-weight: 400;
    color: #4f4f4f;
    font-size: 16px;
    font-family: 'IBM Plex Sans', Helvetica;
    line-height: 24px;
    max-width: 323px;
    margin-bottom: auto;
}

.service-card-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.service-arrow {
    width: 52px;
    height: 53px;
    border-radius: 33px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/*    .th:hover {
        background-color: black;
        color: white;
    }*/




.floating-label {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: white;
    border-radius: 5.13px;
    box-shadow: 1.28px 0.64px 3.85px rgba(0, 0, 0, 0.04), 5.78px 3.85px 6.42px rgba(0, 0, 0, 0.03), 12.19px 8.34px 8.98px rgba(0, 0, 0, 0.02), 21.82px 14.12px 10.27px rgba(0, 0, 0, 0.01), 34.65px 22.46px 11.55px transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Sans', Helvetica;
    font-weight: 600;
    font-size: 46.2px;
    text-align: center;
}

.b2b-label {
    top: 161px;
    right: 10%;
    transform: rotate(-26.42deg);
    color: #1884ff;
}

.b2g-label {
    top: 569px;
    left: 7%;
    transform: rotate(14.89deg);
    color: #e76b00;
}

.b2c-label {
    top: 649px;
    right: 15%;
    transform: rotate(7.84deg);
    color: #00a900;
}

/* Certifications Section (Contact Form) */
.certifications-section {
    position: relative;
    width: 100%;
    /* padding: 64px 0;*/
    background-color: #242251;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding-bottom: 40px;
    padding-top: 64px;
}

.certifications-container {
    /* max-width: 1400px;*/
    /*margin: 0 100px;*/
    /*    margin: 0px 169px 0px 91px;
*/ margin: 0px 134px 0px 80px;
    /*padding: 0 24px;*/
    display: flex;
    justify-content: space-between;
    gap: 163px;
}

.form-content {
    max-width: 691px;
}

.form-title {
    font-weight: 600;
    color: white;
    font-size: 36px;
    line-height: 55.2px;
    /* font-family: 'IBM Plex Sans', Helvetica;*/
    margin-bottom: 8px;
}

.form-description {
    color: #dfdfdfba;
    font-size: 14px;
    line-height: 26.8px;
    /*font-family: 'Inter', Helvetica;*/
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    /*max-width: 700px;*/
    gap: 9px;
    color: white;
    max-width: 562px;
}

.form-group {
    position: relative;
    /*  margin-bottom: 30px; */
}


    .form-group input {
        width: 100%;
        padding: 2px 0;
        /*padding: 1px 1px 6px 1px;*/
        /*padding: 13px 1px 3px 1px;*/
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        border-bottom: 1px solid #8D8D8D;
        color: #8D8D8D;
        font-size: 16px;
        outline: none;
        transition: all 0.3s ease;
    }


    .form-group label {
        position: absolute;
        top: 4px;
        /* top: -13px;*/
        left: 0;
        font-size: 11px;
        /*color: rgba(255, 255, 255, 0.6);*/
        color: #8D8D8D;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group input:not(:placeholder-shown) {
        height: 50px; /* increase input height */
        font-size: 14px;
        padding-top: 12px;
        border-bottom: 1px solid #8D8D8D;
        color: #fff;
    }

        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown) + label {
            top: -10px;
            font-size: 15px;
            color: #fff;
        }


/*.contact-form {
    max-width: 643px;*/
/*  margin-left: auto; */
/*color: white;*/
/*  font-family: 'Roboto', sans-serif; */
/*}*/

/*.form-field {
    position: relative;
    width: 100%;
    margin-bottom: 24px;*/ /* spacing between fields */
/*}

.form-label {
    display: block;*/
/*font-family: 'Roboto', Helvetica;*/
/*font-weight: 400;
    color: #8c8c8c;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 4px;
}


.form-input {
    width: 100%;*/
/* height: 1px;*/
/*border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    padding: 8px 0;
    color: white;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-input:focus {
        border-bottom-color: white;
        box-shadow: 0 1px 0 0 white;
    }

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}*/

/* .form-input:hover {
        border-bottom-color: rgba(255, 255, 255, 0.4);
    }*/
.form-submit {
    width: 82px;
    height: 35px;
    margin-top: 5px;
    /*background-color: #eaf7ff;*/
    /*color: black;*/
    /*border: none;*/
    border-radius: 4px;
    /*font-family: 'Inter', Helvetica;*/
    /*font-weight: 500;*/
    /*font-size: 20px;*/
    cursor: pointer;
    /*transition: background-color 0.3s ease;*/

    background-color: white;
    color: #1d1a3f;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 15px;
}

    .form-submit:hover {
        /* background-color: #e0e0e0; */
        background-color: #242251;
        color: #fff;
        border: 1px solid #fff;
    }

.form-separator {
    /*width: 100%;*/
    height: 1px;
    /*background-color: rgba(255, 255, 255, 0.1);*/
    background-color: #fff;
    margin-top: 90px;
    margin-left: 91px;
    margin-right: 91px;
    margin-bottom: -41px;
}

/* Footer */
.footer {
    width: 100%;
    background-color: #242251;
    /*padding: 48px 0;*/
    padding-top: 48px;
}

/*.footer-container {
    max-width: 1722px;
    margin: 0 auto;
    padding: 0 24px;
    margin-left: 50px;
    margin-right: 50px;
}*/
.footer-container {
    /*max-width: 1722px;*/
    margin: 0 auto;
    padding: 0 24px;
    margin-left: 50px;
    margin-right: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 3px;
    /*border-bottom: 1px solid white;*/
    flex-wrap: wrap;
    margin-right: -42px;
}



.footer-brand {
    display: flex;
    flex-direction: column;
    width: 420px;
    gap: 15px;
    /* max-width: 400px; 
    flex-shrink: 0;*/
}




.footer-logo {
    width: 150.54px;
    /*height: 32px;
    object-fit: cover;*/
}

.footer-brand-text {
    /*font-family: 'Inter', Helvetica;*/
    font-weight: 400;
    color: #dfdfdfcc;
    font-size: 13px;
    line-height: 20px;
}

.newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.newsletter-input {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.email-input {
    width: 244px;
    /* flex: 1; */
    height: 35px;
    border: 1px solid white;
    background: transparent;
    color: #dfdfdf;
    font-weight: 300;
    font-size: 10px;
    padding: 0 12px;
    outline: none;
}

    .email-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

.download-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #eaf7ff;
    color: #eaf7ff;
    /* font-weight: 500; */
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 35px;
    border-radius: 3px;
}

    .download-btn:hover {
        /*background-color: #eaf7ff;*/
        color: #eaf7ff;
    }

.download-icon {
    width: 20px;
    height: 20px;
}

.newsletter-disclaimer {
    width: 389px;
    font-weight: 400;
    color: #dfdfdfcc;
    font-size: 13px;
    line-height: 20px;
}

.footer-links {
    display: flex;
    /* flex-wrap: wrap; */
    width: 607px;
    /* gap: -18px;*/
    justify-content: space-between;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    min-width: 150px;
}

.footer-column-title {
    font-weight: 600;
    color: white;
    font-size: 13px;
    line-height: 13px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    list-style: none;
}

    .footer-list li {
        padding: 4px 0;
    }

.footer-link {
    font-weight: 400;
    color: white;
    font-size: 13px;
    line-height: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-link:hover {
        color: #42c2f1;
    }

.social-links {
    width: auto;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    color: #fff;
    font-size: 13px;
    line-height: 26px;
}

    .social-item img {
        width: 19px;
    }

.social-icon {
    width: 24px;
    height: 24px;
}

.social-text {
    font-weight: 400;
    color: white;
    font-size: 14px;
    line-height: 21px;
}

.footer-separator {
    /*width: 100%;*/
    /*margin: 24px 0 16px;*/
    height: 1px;
    /*background-color: rgba(255, 255, 255, 0.1);*/
    background-color: #fff;
    /* margin-top: 48px;
    margin-left: 91px;
   */
    margin-right: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 12px;
    /*margin-right: 91px;*/
    margin-right: 16px;
}

.copyright {
    color: #dfdfdf9e;
    font-size: 11px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.legal-link {
    color: #dfdfdf9e;
    font-size: 11px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

    .legal-link:hover {
        color: white;
    }

/* Responsive Design */
/*@media (max-width: 1200px) {
    .header-container {
        padding: 0 50px;
    }
    
    .navigation {
        margin-left: 100px;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .hero-visualizations {
        height: 400px;
    }
    
    .main-chart {
        width: 100%;
        max-width: 500px;
        height: 300px;
        position: relative;
        right: auto;
        top: 0;
    }
    
    .small-chart {
        width: 200px;
        height: 200px;
        left: 0;
        top: 250px;
    }
    
    .bar-chart {
        width: 200px;
        right: 0;
        top: 0;
    }
    
    .rating-card {
        width: 250px;
        right: 0;
        top: 320px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        flex-wrap: wrap;
    }
    
    .navigation {
        margin-left: 0;
        order: 3;
        width: 100%;
        margin-top: 10px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .about-container {
        flex-direction: column;
        gap: 32px;
    }
    
    .about-title {
        font-size: 25px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 48px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonials-header {
        width: 100%;
    }
    
    .testimonials-grid {
        width: 100%;
        grid-template-columns: 1fr;
    }
    
    .services-header {
        flex-direction: column;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .faq-header {
        flex-direction: column;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .header {
        height: auto;
        padding: 10px 0;
    }
    
    .header-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-section {
        padding-top: 140px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .about-title,
    .impact-title,
    .statistics-title,
    .trust-title,
    .services-title,
    .faq-title,
    .form-title {
        font-size: 28px;
    }
    
    .empanels-container {
        overflow-x: auto;
    }
    
    .empanel-logo {
        position: relative;
        display: inline-block;
        margin-right: 20px;
    }
}*/

/*Smooth scrolling 
html {
    scroll-behavior: smooth;
}*/

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #42c2f1;
    outline-offset: 2px;
}

/* Animation for loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section,
.hero-section,
.impact-section,
.statistics-section,
.trust-section,
.partners-section,
.services-section,
.certifications-section {
    animation: fadeInUp 0.6s ease-out;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}
.logo-img a:hover {
    border: none;
    outline: none;
    text-decoration: none;
}
/*@media (max-width: 768px) {
    .about-img {
        width: 100%;
        height: auto;
        margin-left: 0;
        border-radius: 6px;
    }
}*/


/* ===================== MEDIA QUERIES ===================== */

/* Header Responsive Styles */
@media (max-width: 992px) {
    .header-container {
        padding: 10px 20px;
    }

    .navigation {
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 69px; /* below the fixed header */
        left: 0;
        z-index: 999;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease-in-out;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        border-top: 1px solid #ddd;
    }

        .navigation.active {
            max-height: 1000px;
            padding: 10px 20px;
        }

    .nav-list {
        width: 100%;
        flex-direction: column;
        display: flex;
        gap: 12px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .nav-item {
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        font-size: 18px;
        color: #242251;
        text-decoration: none;
    }

    .mobile-toggle {
        display: block;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .contact-btn {
        display: none;
    }

    .mobile-contact {
        display: block;
        margin-top: 10px;
        padding: 10px;
        background-color: #242251;
        color: #fff;
        text-align: center;
        border-radius: 8px;
        width: 100%;
        text-decoration: none !important;
    }

    /*  Dropdowns for mobile  */
    .product-dropdown,
    .product-dropdown1 {
        display: none; /* hide by default */
        position: static;
        box-shadow: none;
        padding: 10px 0;
        /*flex-direction: column;*/
        border: none;
        min-width: 100%;
    }

    .dropdown.open .product-dropdown,
    .dropdown.open .product-dropdown1 {
        display: flex; /* show only when .open added via JS */
    }

    .menu-list,
    .menu-list1 {
        /* border: none;
        padding: 0;
        gap: 10px;*/
        border-right: 2px solid #ddd;
        padding-right: 20px;
        /* display: flex;*/
        flex-direction: column;
        gap: 10px;
    }

    .menu-item {
        padding: 5px 0;
    }

    .dropdown-content {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none;
    }

    .dropdown.show-on-mobile .dropdown-content {
        gap: 20px;
        box-shadow: none;
        min-width: auto;
        overflow-x: auto;
        scroll-behavior: smooth;
    }
    /* REMOVE THIS — it's for hover, not useful in mobile */
    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        overflow-x: auto;
        scroll-behavior: smooth;
    }
}
/* Footer Responsive Styles */
@media (max-width: 992px) {
    .footer {
        width: 100%;
        background-color: #242251;
        padding-top: 48px;
    }

    .footer-container {
        padding: 0 20px;
        margin: 0 auto;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-right: 0;
    }

    .footer-brand {
        width: 100%;
    }

    .footer-brand-text {
        width: 100%;
    }

    .newsletter-input {
        flex-direction: column;
        align-items: stretch;
    }

    .email-input {
        width: 100%;
        margin-bottom: 10px;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }

    .newsletter-disclaimer {
        width: 100%;
    }

    .footer-links {
        /*flex-direction: column;*/
        flex-direction: row; /* default layout for 426px–992px */
        width: 100%;
        gap: 30px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-separator {
        margin: 20px 0;
    }

    .footer-bottom {
        flex-direction: row;
        gap: 10px;
        margin-right: 0;
        padding: 0px 0 8px;
    }

    .legal-links {
        flex-direction: row;
        gap: 8px;
    }

    .social-item {
        font-size: 14px;
    }
}
@media (max-width: 426px) {
    .footer-brand {
        width: 100%;
    }

    .footer-brand-text {
        width: 100%;
    }

    .newsletter-input {
        flex-direction: column;
        align-items: stretch;
    }

    .email-input {
        width: 55%;
        margin-bottom: 10px;
    }

    .download-btn {
        width: 55%;
        justify-content: center;
    }

    .newsletter-disclaimer {
        width: 59%;
    }


    .footer-links {
        /*flex-direction: column;*/
        flex-flow: wrap;
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .legal-links {
        flex-direction: column;
    }
}
/* About (home) Responsive Styles */
@media (max-width: 1440px) {
    .about-img {
        width: 96% 804px;
        height: 531px;
        /* object-fit: cover; */
        border-radius: 6px;
        margin-left: 40px;
    }
}
@media (max-width: 1024px) {
    .about-img {
        width: 103%;
        height: 596px;
        /* object-fit: cover; */
        border-radius: 6px;
        margin-left: 23px;
    }
}
    @media (max-width: 768px) {
        .about-section {
            padding: 60px 16px 32px;
        }

        .about-container {
            flex-direction: column;
            gap: 32px;
        }

        .about-image {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .about-img {
            width: 100%;
            height: auto;
            margin-left: 0;
        }

        .about-content {
            width: 100%;
        }

        .about-title {
            font-size: 26px;
            text-align: center;
        }

        .about-description {
            font-size: 15px;
            line-height: 24px;
            text-align: justify;
        }

        .features-list {
            gap: 10px;
        }

        .feature-text {
            font-size: 15px;
        }

        .learn-more-btn {
            align-self: center;
            font-size: 13px;
        }
    }
