@font-face {
    font-family: 'Roboto-condences';
    src: url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap) format('woff2');
}

@font-face {
    font-family: 'Roboto';
    src: url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap) format('woff2');
}

@font-face {
    font-family: 'Avenir-Next-Medium';
    src: url('../fonts/avenir-next-medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Avenir-Next-Regular';
    src: url('../fonts/avenir-next-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'RobotoCondensed-Black';
    src: url('../fonts/RobotoCondensed-Black.ttf') format('truetype');
}

.roboto-condensed-nav {
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.roboto-condensed-title {
    font-family: 'RobotoCondensed-Black';
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

.Avenir-Next-Medium-title {
    font-family: 'Avenir-Next-Medium';
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Mona-Sans';
    src: url('../fonts/mona-sans/Mona-Sans.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Mona-Sans-Bold';
    src: url('../fonts/mona-sans/Mona-Sans-Bold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

/* Navigation / normal text */
.mona-sans-nav {
    font-family: 'Mona-Sans', sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

/* Titles / headings */
.mona-sans-title {
    font-family: 'Mona-Sans-Bold';
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.home-who {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -10rem;
    position: relative;
    z-index: 3;
}

.home-who-title {
    font-size: 4rem;
    color: #006694;
}

.home-who-stats {
    display: flex;
    gap: 2rem;
    margin-top: 5rem;
}

.home-who-align {
    max-width: 90%;
    width: 100%;
    padding: 0 2rem;
}

body {
    margin: 0;
}

.hero-section {
    background: url('/images/hero-background.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.5rem;
}

.hero-section .btn {
    background-color: #006694;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px;
}

.about-btn {
    background-color: #0072BB;
    color: #ffffff;
    padding: 0.5rem 2rem;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-right: 1rem;
    font-family: 'Mona Sans';
    border-radius: 7px;
}

.about-btn:hover {
    background-color: #005c7f;
    /* box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); */
}

.product-btn {
    color: #008EE9;
    padding: 0.5rem 2rem;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(163, 219, 255, 0.49);
    font-family: 'Mona Sans';
    border-radius: 7px;
    border: 1px solid #008EE9;
}

.product-btn:hover {
    background-color: #f1f1f1;
    color: #006694;
    /* box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); */
}

.products-row {
    display: flex;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.products-row button {
    color: #006694;
    font-size: 4rem !important;
    box-shadow: none;
    opacity: 0.7;
}

.scrolling-wrapper {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    /* Hide overflow to prevent scrollbars */
    width: 100%;
    /* Ensure it takes full width */
    position: relative;
}

/* Ensure all cards are uniform */
.product-card {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    width: 400px;
    /* Fixed width for each card */
    height: 250px;
    background: white;
    border-radius: 12px;
    border: 1px solid #8e8e8e;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    padding: 16px;
    margin-right: 2rem;
    /* Space between cards */
    overflow: hidden;
    animation: scrollCard 20s linear infinite;
    /* Animation for each card */
}

/* Image Section */
.image-container {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

/* Animation to move cards from right to left */
@keyframes scrollCard {
    0% {
        transform: translateX(100%);
        /* Start from the right end of the screen */
    }

    100% {
        transform: translateX(-100%);
        /* Move to the left end of the screen */
    }
}

/* Arrow Buttons */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /*background: rgba(0, 0, 0, 0.5);*/
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.scroll-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Text Section */
.text-container {
    flex: 1;
    font-size: 1.2rem;
    font-weight: bold;
    color: #337ab7;
    text-align: left;
    padding-left: 1rem;
    display: flex;
    align-items: center;
    word-wrap: break-word;
    overflow: hidden;
}

.text-container p {
    margin: 0;
    white-space: normal;
}

/* Smooth Infinite Scrolling */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }

    /* Moves all cards */
}

.products-row:hover .scrolling-wrapper {
    animation-play-state: paused;
}



.testimonials {
    position: relative;
    background: url('/images/peer-bg.png') no-repeat center center;
    background-size: cover;
    min-height: 110vh;
    /* Fallback for mobile */
    height: 0;
    padding-bottom: 76.8%;
    /* Adjust based on image aspect ratio (16:9 = 56.25%, 4:3 = 75%, etc) */
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.testimonials .container-fluid {
    position: relative;
    z-index: 2;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Optional: Add padding */

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

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #fff;
    font-family: 'Avenir-Next-Medium';
    padding: 0 15rem;
}

.testimonial-name {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    font-family: 'RobotoCondensed-Black';
    margin-top: 15rem;
}

.testimonial-position {
    font-size: 1.25rem;
    color: #fff;
    font-family: 'Avenir-Next-Medium';
}

.testimonial-services-cont {
    font-size: 1.4rem;
    color: #333;
    font-family: 'Avenir-Next-Medium';
    margin-bottom: -2rem;
}

#testimonial-container {
    text-align: center;
    position: relative;
    width: 100%;
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50rem;
    /* Increased container height */
    overflow: visible;
    overflow-x: hidden;
}

.carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1200px;
    /* Increased container width */
    perspective: none;
    /* Remove 3D perspective */
    margin: 2rem auto 0 auto;
}

.testimonial-item {
    position: absolute;
    transition: transform 0.8s ease, opacity 0.8s ease, margin 0.8s ease;
    margin: 0 50px;
}

.circle-image {
    border-radius: 50%;
    width: 10rem;
    /* Increased base size */
    height: 10rem;
    transition: width 0.5s, height 0.5s, transform 0.5s ease;
}

.center-image .circle-image {
    width: 12rem;
    /* Increased center size */
    height: 12rem;
    transform: scale(1.2);
    border: 3px solid white;
}

.testimonial-arrow {
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
    background-color: white;
    color: white;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 18px;
    z-index: 10;
    transition: background-color 0.3s ease;
    border-radius: 50%;
    width: 0;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#testimonial-container button {
    color: #006694;
    font-size: 4rem !important;
    box-shadow: none;
}

.testimonial-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.left-arrow {
    left: 5rem;
}

.right-arrow {
    right: 5rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.stats div {
    text-align: center;
}

.curve-section {
    position: relative;
    color: white;
    text-align: center;
    padding: 1rem 5rem;
    overflow: hidden;
    z-index: 1;
    height: 40rem;
}

.curve-section::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: white;
    z-index: 2;
}

.curve-section .content {
    margin-top: 10rem;
    position: relative;
    z-index: 3;
    max-width: 46%;
    text-align: left;
}
.about-left-img-sec {
    position: relative;
}

img.exp-img {
    position: absolute;
    bottom: 0;
    right: -54px;
}

img.abt-main-img {
    width: 100%;
}

.top-moving-band {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.top-moving-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); */
    z-index: 2;
    pointer-events: none;
}

/* Single image */
.top-moving-band img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Keyframes for the scrolling animation */
@keyframes scrollImages {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.curve-section h1 {
    font-size: 56px;
    margin-bottom: 0;
    font-family: "Mona Sans", sans-serif;
    font-weight: 800;
    color: #008EE9;
    text-transform: capitalize;
    line-height: 68px;
}
.curve-section h1 span {
    color: #181818;
}
.curve-section p {
    font-size: 2.5rem;
    margin: -1.2rem auto -0.5rem;
    font-family: 'Avenir-Next-regular';
}

.curve-section .subtitle {
    font-size: 16px;
    margin: 1rem auto 1rem;
    font-family: 'Mona Sans';
    color: #323232;
    font-weight: 400;
}

.curve-section .buttons {
    margin-top: 20px;
}

.curve-section .btn {
    background-color: #006694;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.curve-section .btn:hover {
    background-color: #004d73;
}
.offerings-top-cont {
    max-width: 65%;
    margin-inline: auto;
    text-align: center;
}

.offerings-top-cont h2 {
    font-family: 'Mona Sans';
    font-weight: 600;
    text-transform: capitalize;
    line-height: 58px;
    margin: 10px 0;
}

.offerings-top-cont p {
    max-width: 80%;
    margin-inline: auto;
    color: #4B4B4B;
    font-size: 16px;
}
/* Curve Section about- */
.about-curve-section {
    position: relative;
    color: white;
    text-align: center;
    padding: 1rem;
    overflow: hidden;
    z-index: 1;
    height: 15rem;
}
.abt-right-cont {
    text-align: left;
    padding-left: 50px;
}

.abt-right-cont p {
    font-size: 16px;
    color: #4B4B4B;
    font-family: 'Mona Sans';
    line-height: 30px;
}
.abt-right-cont span {
    background: rgba(47, 196, 255, 0.03);
    padding: 0.5rem 2rem;
    border: 0.2px solid #0072BB;
    border-radius: 6px;
    color: #008EE9;
    font-size: 16px;
    font-family: 'Mona Sans';
    display: inline-block;
}

.abt-right-cont h2 {
    font-size: 40px;
    font-weight: 600;
    margin: 1.3rem 0;
    color: #181818;
    font-family: 'mona sans';
}
.s-offer-box {
    border: 1px solid #46B7FF;
    text-align: center;
    margin-bottom: 24px;
    border-radius: 6px;
        background: #fff;
}

.s-offer-box h6 {
    border-top: 1px solid #46B7FF;
    padding: 10px;
    font-family: 'Mona Sans';
}
.whyus-right-cont span {
    background: rgba(47, 196, 255, 0.03);
    padding: 0.5rem 2rem;
    border: 0.2px solid #0072BB;
    border-radius: 6px;
    color: #008EE9;
    font-size: 16px;
    font-family: 'Mona Sans';
    display: inline-block;
}

.whyus-right-cont h2 {
    font-size: 40px;
    font-weight: 600;
    margin: 1.3rem 0;
    color: #181818;
    font-family: 'mona sans';
    text-transform: capitalize;
}

.offerings-top-cont span,.testimonial-content>span {
    background: rgba(47, 196, 255, 0.03);
    padding: 0.5rem 2rem;
    border: 0.2px solid #0072BB;
    border-radius: 6px;
    color: #008EE9;
    font-size: 16px;
    font-family: 'Mona Sans';
    display: inline-block;
}
/* Container for sliding images */
.sliding-images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Gradient overlay for sliding images */
.sliding-images-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    /* Adjust the gradient as needed */
    z-index: 2;
    /* Ensure the gradient is above the images */
}

/* Sliding images */
.sliding-images {
    display: flex;
    width: 200%;
    height: 100%;
    animation: slide 20s linear infinite;
}

.sliding-images img {
    width: 25%;
    height: 100%;
    object-fit: cover;
}

/* Keyframes for sliding animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move the container by 50% to create the sliding effect */
    }
}

/* Content inside the section about */
.about-curve-section .content {
    position: relative;
    z-index: 3;
    /* Ensure content is above the gradient and images */
    padding: 10rem;
}

.about-curve-section h1 {
    font-size: 6rem;
    margin-bottom: -1rem;
    font-family: 'RobotoCondensed-Black';
}

.about-curve-section p {
    font-size: 1.4rem;
    font-family: 'Avenir-Next-Medium';
}

/* Curve at the bottom */
.about-curve-section::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    background-color: white;
    clip-path: ellipse(100% 50% at 50% 100%);
    z-index: 2;
}

/* Custom CSS for 7 equal columns */
.col-md-1-7 {
    flex: 0 0 16.66%;
    max-width: 16.66%;
}

.services img {
    max-width: 100%;
    height: 5rem;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.services-logo img {
    max-width: 80%;
    /*height: 10rem;*/
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.services-logo hr {
    width: 80%;
    margin: auto;
}

.services img:hover {
    filter: grayscale(0%);
}

.services hr {
    border-color: #000;
    margin: 0 auto;
    width: 70%;
    border-width: 0.1rem;
}

.offerings img {
    transition: transform 0.3s ease;
        width: 100%;
}


.testimonial-section {
    padding: 80px 0;
    background-image: url(../images/testimonial-bg.png);
}

.testimonial-box {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    border-radius: 7px;
    display: flex;
    gap: 40px;
    padding: 40px;
}

img.title-icon {
    width: 18px;
    margin-right: 5px;
    height: 21px;
}


.tag {
    color: #0a8be0;
    font-size: 13px;
    font-weight: 600;
}

.testimonial-content h2 {
    margin: 12px 0 18px;
    color: #0b2c40;
}

#testimonial-text {
    color: #555;
    line-height: 1.7;
}

.author {
    margin-top: 20px;
}

.author span {
    font-size: 13px;
    color: #777;
        font-family: 'Mona Sans';
}
p#testimonial-text {
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
    display: block;
    width: 100%;
}

.testimonial-content {
    width: 100%;
}
.nav-arrows {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: end;
}

.nav-arrows button {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    border: 1px solid #0a8be0;
    background: none;
    cursor: pointer;
    padding: 0;
    box-shadow: none;
        color: #000;
}

.nav-arrows button:hover {
    background: #0a8be0;
    color: #fff;
}


.marquee {
    width: 100%;
    overflow: hidden;
    background: #f9f9f9;
    padding: 30px 0;
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.marquee-item {
    min-width: 220px;
    height: 120px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(6px);
}

/* hover pause */
.marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.marquee.reverse .marquee-track {
    animation-direction: reverse;
}

section.brands {
    background: #f9f9f9;
}

section.brands h6 {
    margin-bottom: 20px;
        font-size: 20px;
    font-family: 'Mona Sans';

}
.regional {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    margin-top: 20px;
    flex-wrap:wrap; 
} 
p {
    font-size: 16px;
    font-family: 'Mona Sans';
    line-height: 30px;
}
section.brands h2 {
    width: 70%;
    margin-inline: auto;
}


/* .offerings img:hover {
    transform: scale(1.05);
} */

.card {
    border-radius: 0;
    height: 20rem;
    width: 25rem;
    overflow: hidden;
    position: relative;
    background-color: #FFF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    /* Default shadow */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    /* Smooth hover effect */
    padding: 1rem;
}

.card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* Stronger shadow on hover */
    transform: translateY(-5px);
    /* Slight lift on hover */
}

.card img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
    /* Slight zoom effect on hover */
}

.card-body {
    padding: 1rem;
}


.offerings-title {
    font-size: 4rem;
    color: #006694;
}

.offerings-subtitle {
    font-size: 1rem;
    line-height: 1.5;
}

.py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.off-services-cont {
    font-size: 1.3rem;
    color: #333;
    font-family: 'Avenir-Next-Medium';
    margin-bottom: 5rem !important;
    padding: 0px 15rem;
}

.service-card-header {
    display: flex;
    /* Use Flexbox */
    align-items: center;
    /* Vertically center the items */
    justify-content: space-between;
    /* Space between title and image */
}

.service-card-header h5 {
    margin: 0;
    /* Remove default margin for better alignment */
    font-size: 2.5rem;
    font-family: 'RobotoCondensed-Black';
}

.service-card-header p {
    font-size: 1.5rem !important;
    font-family: 'RobotoCondensed-Black';
}

/* General Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /*font-family: Arial, sans-serif;*/
    height: 80px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
}

.navbar .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar .logo img {
    height: 40px;
    margin-right: 10px;
}

.navbar .logo .tagline {
    font-size: 14px;
    color: #555;
    font-style: italic;
}

/* Nav Links */
.navbar .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li {
    margin: 0 15px;
}

.navbar .nav-links a {
    text-decoration: none;
    font-size: 1.09rem;
    color: #006694;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #006694;
}
.s-whyus-box {
    border: 1px solid #008EE9;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.s-whyus-box h3 {
    font-size: 18px;
    margin: 1rem 0 1rem;
    font-family: 'Mona Sans';
    font-weight: 600;
}
.s-whyus-box:hover {background: #008EE9;color: #fff;}

.s-whyus-box:hover img {filter: brightness(0) invert(1);}
/* about hero */
.who-we-are {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7rem;
    background-color: #fff;
}

.who-content {
    max-width: 50%;
    padding: 0 1rem;
}

.who-content h2 {
    font-size: 4rem;
    color: #006694;
}

.who-content p {
    font-size: 1.1rem;
    color: #333;
}

.who-stats {
    display: flex;
    gap: 20px;
    margin-top: 6rem;
}

.who-stat {
    text-align: center;
    flex: 1;
    background-color: rgba(163, 219, 255, 0.13);
    /* Light background */
    padding-top: 1.2rem;
    border: 1px solid rgba(70, 183, 255, 1);
    border-radius: 6px;
}

.who-stat .who-number {
    font-size: 70px;
    font-weight: bold;
    color: #008EE9;
}

.who-number-sym {
    font-size: 2.5rem;
    font-weight: bold;
    color: #008EE9;
}

.who-stat p {
    font-size: 1.2rem;
    color: #181818;
    margin-top: 0;
}

.who-image img {
    /* max-width: 400px; */
    height: 50rem;
    /* border-radius: 10px; */
}

/* Base Styles */
.cust-navbar {
    background-color: white;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cust-navbar .cust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cust-navbar .cust-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.cust-navbar .cust-logo img {
    height: 3rem;
    margin-right: 1rem;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #006694;
    border-radius: 2px;
}

/* Nav Links - Desktop */
.cust-nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.cust-nav-links li {
    margin: 0 1rem;
}

.cust-nav-links a {
    text-decoration: none;
    font-size: 1rem;
    color: #006694;
    transition: color 0.3s ease;
}

.cust-nav-links a:hover {
    color: #004d6e;
}

.services-title {
    font-size: 4rem;
    color: #006694;
}

.services-cont {
    font-size: 1.1rem;
    padding: 0 15rem;
    color: #333;
    font-family: 'Avenir-Next-Medium';
}

.partners-sub-heads {
    font-size: 0.7rem;
    font-weight: 700;
    color: #006694;
    margin-bottom: -1rem;
    margin-top: 2rem;
}

.services-cont-subtitle {
    font-size: 1.3rem;
    color: #333;
    font-family: 'Avenir-Next-Medium';
    padding: 0px 10rem;
}

.why-choose-us-cont {
    font-size: 1.1rem;
    color: #333;
    padding: 0 11rem 0 0;
}

.cust-font-services {
    font-size: 1.8rem;
    color: #006694;
    text-align: start;
    font-weight: 900;
    font-family: 'Roboto Condensed';
}

.contact-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    /* Ensures the width matches the text length */
    color: white;
    /*text-decoration-line: underline;*/
    /*text-decoration-thickness: 1rem;*/
    /*text-decoration-color: #EC1C25;*/
}

.contact-subtitle {
    font-family: 'Avenir-Next-Medium';
    margin-bottom: 5rem;
    font-size: 1.2rem;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    /* padding: 50px; */
    background: #006694;
    color: white;
}

.left-section {
    width: 50%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/office-photo-trustech.png') no-repeat center center;
    background-size: cover;
    /* Ensures text remains visible */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding: 2rem 5rem; */
    font-size: 1.2rem;
    color: #fff;
}

.right-section {
    width: 50%;
    border-radius: 10px;
    display: flex;
    /* Enable flexbox */
    justify-content: center;
    /* Center content horizontally */
    align-items: center;
    /* Center content vertically */
    /* Full viewport height */
    box-sizing: border-box;
    /* Include padding in height calculation */
    background-color: #006694;
    /* Optional: light background for the section */
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Add consistent spacing between fields */
    width: 100%;
    /* Ensure form takes full width of the container */
}

.form-row {
    display: flex;
    gap: 1rem;
    /* Add space between name and phone fields */
    width: 100%;
}

.form-row input {
    flex: 1;
    padding: 2rem;
    border: none;
    border-radius: 1rem;
    height: 5rem;
    background-color: #BBD6E3;
    font-size: 1.4rem;
    font-family: 'Avenir-Next-Regular';
}

input,
textarea {
    width: 100%;
    /* padding: 10px; */
    border: none;
    border-radius: 1rem;
    background-color: #BBD6E3;
    box-sizing: border-box;
    height: 6rem;
    font-size: 1.4rem !important;
    padding: 2rem;
    font-family: 'Avenir-Next-Regular' !important;
}

input::placeholder,
textarea::placeholder {
    font-weight: bold;
    color: #555;
}

textarea {
    height: 12rem;
}

button {
    width: 10rem;
    padding: 0.7rem 2rem;
    background: #fff;
    color: #006694;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    font-family: 'Roboto Condensed' !important;
    font-size: 1.3rem !important;
}

button:hover {
    background: #8f909b;
    color: white;
}

.moving-band-container {
    overflow: hidden;
    white-space: nowrap;
    background-color: #d0021b;
    /* red background */
    padding: 10px 0;
}

.moving-band {
    display: inline-block;
    /*animation: moveLeft 10s linear infinite;*/
    white-space: nowrap;
}

.moving-band span {
    color: #ffffff;
    font-family: 'Avenir-Next-Medium';
    font-size: 1rem;
    display: inline-block;
    /*margin-right: 50px;*/
}

.moving-band img {
    width: 0.8rem;
}

@keyframes moveLeft {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.moving-band-container {
    overflow: hidden;
    background-color: #00304F;
    /* Red background */
    padding: 10px 10px;
}

.moving-band {
    display: inline-flex;
    /* Use inline-flex for inline behavior */
    align-items: center;
    /* Vertically center the content */
    white-space: nowrap;
}

.moving-band img {
    margin-right: 0.75rem;
    /* Add spacing between image and text */
}


/* brands section curve */
.brands-curve-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
        url('/images/inner-bnr-bg-new.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    height: 20rem;
    display: grid;
    align-content: center;
}


.brands-curve-section::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    /* height: 100px; */
    background-color: white;
    clip-path: ellipse(100% 50% at 50% 100%);
    z-index: 2;
}

/* Content inside the section about */
.brands-curve-section .content {
    position: relative;
    z-index: 3;
    /*padding: 5rem;*/
    margin-top: 1rem;
}

.brands-curve-section h1 {
    font-size: 5rem;
    font-family:  'Mona-Sans', sans-serif;
    line-height: 5rem;
    font-weight: 600;
}

.brands-curve-section p {
    font-size: 1.8rem;
    font-family: 'Avenir-Next-Regular';
    margin: -1rem auto 0.5rem
}

.brand-sub {
    font-family: 'Avenir-Next-Medium';
    font-size: 1.3rem;
    color: #fff;
    font-weight: 500;
}

.partner-logos {
    padding: 0 10rem;
}


.section-title {
    font-size: 4rem;
    font-weight: 700;
    color: #006694;
    font-family: 'RobotoCondensed-Black';
    margin-top: 2rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #333;
    font-family: 'Avenir-Next-Medium';
    margin-bottom: 5rem !important;
    padding: 0px 7rem;
}

.big-scr {
    display: block !important;
}

.sm-scr {
    display: none !important;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.service-item img {
    margin-right: 1rem;
}

.service-number {
    font-size: 3rem;
    font-weight: bold;
    color: #006694;
    margin-right: 1rem;
}

.service-content h5 {
    font-size: 2.5rem;
    font-family: 'Roboto Condensed';
    font-weight: 900;
    color: #006694;
}

.service-content p {
    font-size: 1rem;
    color: #006694;
    font-family: 'Avenir-Next-Regular';
    margin-right: 5rem;
}


/* Keyframes for seamless scrolling */
@keyframes seamlessScroll {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Small devices (phones, 576px and down) */
@media (max-width: 768px) {
    
    

    .home-who-stats {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 0rem;
    }

    .who-stat {
        width: 48%;
        box-sizing: border-box;
        min-width: 150px;
    }

    .home-who {
        margin-bottom: 0rem;
    }

    .services-title,
    .offerings-title {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: white;
        width: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .services-cont {
        font-size: 0.8rem;
        margin-bottom: 1rem !important;
        padding: 0 !important;
    }

    .partners-sub-heads {
        margin-bottom: 0rem;
        margin-top: 1rem;
    }

    .col-md-1-7 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

    .off-services-cont,
    .services-cont-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem !important;
        padding: 0 !important;
    }

    .curve-section::before {
        background: none;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .curve-section {
        padding: 10px;
    }

    .curve-section h1 {
        font-size: 2.5rem;
    }

    .curve-section p {
        font-size: 1.5rem;
    }

    .brands-curve-section p {
        margin: -0.5rem auto 0.5rem
    }

    .curve-section .subtitle {
        font-size: 0.8rem;
    }

    .curve-section .content {
        margin-top: 5rem;
    }

    .home-who {
        margin-top: -8rem;
    }

    .who-stat .who-number {
        font-size: 4rem;
    }

    .offerings .card-body {
        padding: 0.5rem;
    }

    .card-logo-img {
        top: 10px;
        right: 10px;
        width: 100px;
        height: auto;
    }

    .off-services-cont {
        font-size: 1rem;
        margin-bottom: 0;
        padding: 0;
    }

    .product-card {
        width: 20rem;
        height: 10rem;
    }

    .left-arrow {
        left: 1rem;
    }

    .right-arrow {
        right: 1rem;
    }

    /* .offerings img {
        width: 50% !important;
    } */

    .card {
        height: auto;
        width: auto;
    }

    .services img {
        height: 3.5rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .moving-band span {
        font-size: 12px;
    }

    /* Mobile menu */
    .cust-nav-links {
        display: none;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        padding: 1rem 0;
    }

    .cust-nav-links.show {
        display: block !important;
    }

    .cust-nav-links li {
        margin: 1rem 0 !important;
    }

    .testimonials {
        background-position: 60% center;
        background: url(/images/peer-bg-sm.png) no-repeat center center;
    }

    .home-who-align {
        padding: 0rem;
    }

    .curve-section h1 {
        font-size: 2.5rem;
    }

    .curve-section p {
        font-size: 1.5rem;
        margin: -0.5rem auto;
    }

    .services-cards-stack {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
        margin-bottom: 1rem;
    }

    .contact-section {
        flex-direction: column;
    }

    .left-section,
    .right-section {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row input {
        width: 100% !important;
    }

    .partner-logos {
        padding: 0 1rem;
    }

    .services-logo hr {
        width: 95%;
        margin: auto;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 0rem !important;
        padding: 0px 1rem;
    }

    .testimonials {
        min-height: 85vh;
    }

    .testimonial-name {
        font-size: 1.5rem;
        margin-top: 10rem;
    }

    .testimonial-quote {
        padding: 0rem 1rem;
    }

    .testimonial-services-cont {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-top: 0rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem !important;
        padding: 0px 1rem;
    }

    .big-scr {
        display: none !important;
    }

    .sm-scr {
        display: block !important;
    }

    .swiper {
        padding: 2rem 0;
        position: relative;
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: #007bff;
        /* Make arrows blue */
        top: 50%;
        transform: translateY(-50%);
    }

    .swiper-wrapper {
        display: flex;
        align-items: center;
        /* Optional if you want vertical center too */
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        /* Center content inside each slide horizontally */
        align-items: center;
        /* Center content inside each slide vertically */
        text-align: center;
        /* Center text inside the service content */
    }

    .service-item {
        display: flex;
        flex-direction: column;
        /* Stack image, heading, paragraph vertically */
        align-items: center;
        /* Center all children horizontally */
        justify-content: center;
        /* Center all children vertically */
        height: 100%;
        /* Full height to allow centering properly */
    }

    .service-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 2rem;
    }

    .service-content h5 {
        font-size: 1.5rem;
        margin: 1rem auto;
    }

    .service-content p {
        font-size: 0.9rem;
        margin-right: 0rem;
    }

    .moving-band span {
        font-size: 0.8rem;
        letter-spacing: 0px;
    }

    .hi-sm {
        display: none !important;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonial-position {
        font-size: 0.8rem;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        display: none !important;
    }

    .testimonial-section {
        position: relative;
    }

    .testimonial-top {
        z-index: 1;
        position: relative;
    }

    .testimonial-bottom-wrapper {
        position: relative;
        background-color: #007bff;
        /*padding-top: 80px;*/
    }

    .testimonial-bottom {
        background: linear-gradient(to bottom, #01acec, #007bb5);
        padding-top: 2rem;
        padding-bottom: 40px;
        position: relative;
        z-index: 1;
    }

    .testimonial-img-wrapper {
        position: absolute;
        top: -60px;
        /* Moves it upward to sit across white and blue */
        left: 50%;
        transform: translateX(-50%);
        width: 9rem;
        height: 9rem;
        border-radius: 50%;
        overflow: hidden;
        border: 6px solid white;
        z-index: 2;
        background-color: white;
    }

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

    .testimonial-title {
        font-size: 1.5rem;
        color: #006694;
    }

    .testimonial-subtitle {
        font-size: 1rem;
        font-family: 'Avenir-Next-Medium';
    }

    .testimonial-name {
        font-weight: bold;
        font-size: 2rem;
    }

    .testimonial-designation {
        font-size: 0.9rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        max-width: 600px;
        margin: auto;
        padding: 0 1rem;
    }

    .testimonial-swiper {
        padding-top: 30px;
    }

    .testimonial-nav {
        position: absolute;
        top: -12%;
        transform: translateY(-50%);
        font-size: 2rem;
        cursor: pointer;
        color: white;
        z-index: 10;
        user-select: none;
    }

    .testimonial-button-prev {
        left: 1rem;
    }

    .testimonial-button-next {
        right: 3rem;
    }

}

/* Extra small devices (phones, 480px and down)  */
@media (max-width: 576px) {
    .home-who-stats {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .testimonials img {
        width: 15rem !important;
        height: 15rem !important;
        margin-top: 0rem;
    }

    .services .col-2 {
        width: 33%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row input {
        width: 100% !important;
    }

    .curve-section h1 {
        font-size: 2rem;
    }

    .curve-section p {
        font-size: 1.2rem;
    }

    .who-stat .who-number {
        font-size: 3rem;
    }

    .services-cards-stack {
        gap: 0.5rem;
    }

    .service-card {
        padding: 1rem;
    }

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

    .contact-subtitle {
        font-size: 1rem;
    }
    .contact-section .container {
    flex-wrap: wrap !impotant;
    }

    .regional {
    flex-wrap: wrap;
    }

    img.exp-img {
        display: none;
        
    }
}
/* Base state (hidden) */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state */
.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}
.brand-card:hover {
    margin-top: -20px;
}
.brand-card{
    transition: transform 0.5s ease;
}