:root {
    --primary-color: #26a9e2;
    --dark-bg: #000;
    --light-variant-bg: #0a0a0a;
    /* Slightly lighter */
    --card-bg: #1a1a1a;
    --text-color: #e0e0e0;
    --heading-color: #fff;
    --border-color: #333;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Alternating background color based on section order */
section:nth-child(odd) {
    background-color: var(--dark-bg);
}

section:nth-child(even) {
    background-color: var(--light-variant-bg);
}

.section-padding {
    padding: 2rem 1rem;
}

h2.section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 3.5rem;
    font-weight: 700;
    position: relative;
    font-size: 2.8rem;
}

h2.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

/* Hero Section with Parallax Background */
.hero-serv {
    height: 60vh;
    /* Use height for parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
    color: var(--heading-color);
    overflow: hidden;
    /* Important for parallax */
}

.hero-serv-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    /* Placeholder: Replace with your high-quality hero image */
    transform: translateZ(0);
    /* Force hardware acceleration */
    will-change: transform;
    /* Hint for browser optimization */
}

.hero-serv>* {
    position: relative;
    z-index: 2;
    /* Ensure text is above parallax background */
}

.hero-serv h1 {
    font-size: 4.8rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0, 118, 255, 0.5);
    line-height: 1.2;
}

.hero-serv p {
    max-width: 700px;
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.7;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    padding: 0.9rem 2.8rem;
    margin-top: 2.5rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 5px 20px #26a9e2;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    /* Light shimmer effect */
    transform: skewX(-30deg);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-primary-custom:hover {
    background-color: #26a9e2;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px #26a9e2;
}

.btn-primary-custom:hover::before {
    left: 100%;
}


.service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 18px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* For shadow */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* Bounce effect */
}

.service-card:hover::before {
    transform: translateX(0);
}


.service-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 20px 40px #26a9e2;
    border-color: var(--primary-color);
}

.icon {
    font-size: 4rem;
    margin-bottom: 1.8rem;
    color: var(--primary-color);
}

[data-aos="icon-bounce"] {
    transform: scale(0.5);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="icon-bounce"].aos-animate {
    transform: scale(1);
    opacity: 1;
}


.service-card h5 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-card p {
    color: #bbb;
    font-size: 1.05rem;
}

/* Features section enhancements for icons */
.features .feature-box {
    display: flex;
    /* Use flexbox for icon and text alignment */
    align-items: flex-start;
    /* Align text to the top */
    gap: 1.5rem;
    /* Space between icon and text */
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    border-left: 6px solid var(--primary-color);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.features .feature-box:hover {
    background-color: #2a2a2a;
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.features .feature-icon {
    font-size: 2.5rem;
    /* Size of feature icons */
    color: var(--primary-color);
    flex-shrink: 0;
    /* Prevent icon from shrinking */
    line-height: 1;
    /* Align icon vertically with text */
    position: relative;
    top: 5px;
    /* Fine-tune vertical alignment */
}

.features .feature-box h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.6rem;
}

.features .feature-box p {
    color: var(--text-color);
    font-size: 1.05rem;
}


/* Image-Text Section */
.image-text-section {
    padding: 6rem 1rem;
}

.image-text-section .img-fluid {
    border-radius: 20px;
    box-shadow: 0 15px 40px #26a9e2;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
    border: 3px solid #26a9e2;
}

.image-text-section .img-fluid:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 25px 50px #26a9e2;
}

.image-text-content h3 {
    color: var(--heading-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.image-text-content p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.15rem;
}

.cta {
    background: linear-gradient(135deg, var(--dark-bg), #001f40);
    text-align: center;
    padding: 3rem 1rem;
    border-top: 6px solid var(--primary-color);
}

.cta h2 {
    color: var(--heading-color);
    margin-bottom: 1.8rem;
    font-size: 3.2rem;
    font-weight: 800;
}

.cta p {
    font-size: 1.3rem;
    color: var(--text-color);
}

/* --- Seamless Workflow Redesign --- */
.workflow-timeline {
    display: flex;
    flex-direction: column;
    /* Stack vertically for mobile first */
    position: relative;
    padding: 2rem 0;
}

/* Vertical line in the middle */
.workflow-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    /* Center the line */
    top: 0;
    bottom: 0;
    width: 3px;
    /* Thickness of the line */
    background-color: var(--border-color);
    /* Light gray line */
    transform: translateX(-50%);
}

.workflow-step-new {
    display: flex;
    align-items: center;
    /* Align icon and text vertically */
    margin-bottom: 3.5rem;
    position: relative;
    padding: 1rem;
    /* Padding for the box */
    /* Removed fixed flex: 1 1 300px; from old .workflow-step */
}

/* Connecting circle */
.workflow-step-new .circle {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
    font-weight: bold;
    flex-shrink: 0;
    /* Prevent shrinking */
    z-index: 2;
    /* Ensure it's above the line */
    box-shadow: 0 0 0 5px var(--dark-bg);
    /* Halo effect */
}

.workflow-step-new .content {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.8rem 2.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.workflow-step-new .content:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px #26a9e2;
    border-color: var(--primary-color);
}

.workflow-step-new h5 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.workflow-step-new p {
    font-size: 1.05rem;
    color: var(--text-color);
}

/* Mobile Layout: Content to the right of the line */
.workflow-step-new .circle {
    margin-right: 1.5rem;
    margin-left: calc(50% - 15px);
    /* Position circle to align with the line */
    position: absolute;
    left: 0;
    /* Resetting position for media query */
}

.workflow-step-new .content {
    margin-left: calc(50% + 30px);
    /* Adjust content position */
    width: calc(50% - 50px);
    /* Adjust content width */
}

/* Desktop Layout: Alternating left/right */
@media (min-width: 768px) {
    .workflow-timeline::before {
        left: 50%;
        /* Keep vertical line centered */
    }

    .workflow-step-new {
        justify-content: space-between;
        /* Push content to left/right */
        margin-left: 0;
        margin-right: 0;
    }

    /* Even steps (0-indexed: 0, 2, 4) on the left */
    .workflow-step-new:nth-child(even) {
        flex-direction: row-reverse;
        /* Swap order for right content */
    }

    .workflow-step-new:nth-child(even) .circle {
        margin-right: calc(50% - 15px);
        /* Position circle to align with the line */
        margin-left: 0;
        order: 2;
        /* Put circle after content in flex-direction: row-reverse */
    }

    .workflow-step-new:nth-child(even) .content {
        text-align: right;
        margin-right: calc(50% + 30px);
        /* Adjust content position */
        width: calc(50% - 50px);
        margin-left: 0;
    }

    /* Odd steps (0-indexed: 1, 3) on the right */
    .workflow-step-new:nth-child(odd) .circle {
        margin-left: calc(50% - 15px);
        /* Position circle to align with the line */
        margin-right: 0;
        order: 0;
        /* Default order */
    }

    .workflow-step-new:nth-child(odd) .content {
        text-align: left;
        margin-left: calc(50% + 30px);
        /* Adjust content position */
        width: calc(50% - 50px);
        margin-right: 0;
    }
}

/* End Workflow Redesign */


.testimonial-carousel {
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
}

.testimonial-item {
    color: var(--text-color);
    font-style: italic;
    max-width: 900px;
    margin: auto;
    font-size: 1.3rem;
    line-height: 1.8;
    padding: 2.5rem 3rem;
    background-color: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px #26a9e2;
    position: relative;
    border-top: 5px solid var(--primary-color);
    margin-bottom: 10px;
}

.testimonial-item::before {
    content: "“";
    font-family: serif;
    font-size: 10rem;
    color: rgba(0, 118, 255, 0.1);
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: 0;
    line-height: 1;
}

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

.testimonial-item strong {
    color: var(--primary-color);
    font-size: 1.15rem;
    display: block;
    margin-top: 1.5rem;
}


.faq {
    padding: 6rem 1rem;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2.2rem;
    margin-bottom: 1.5rem;
    border-left: 6px solid var(--primary-color);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    background-color: #2a2a2a;
    border-color: #26a9e2;
    transform: translateY(-5px);
}

.faq-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Section Divider */
.section-divider {
    height: 100px;
    /* Adjust height as needed */
    background-color: transparent;
    /* Will be covered by clip-path */
    position: relative;
    z-index: 1;
}

/* Angled Divider for sections following the main dark background */
.section-divider.angle-up-light {
    background-color: var(--light-variant-bg);
    /* Color of the next section */
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
    margin-top: -100px;
    /* Pulls it up to overlap the previous section */
}

/* Angled Divider for sections following the light variant background */
.section-divider.angle-up-dark {
    background-color: var(--dark-bg);
    /* Color of the next section */
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
    margin-top: -100px;
    /* Pulls it up to overlap the previous section */
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    h2.section-title {
        font-size: 2.2rem;
    }

    .image-text-content h3 {
        font-size: 2.2rem;
    }

    .image-text-section .row>div {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary-custom {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }

    .section-padding {
        padding: 4rem 1rem;
    }

    h2.section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .service-card,
    .faq-item {
        padding: 2rem;
    }

    .service-card .icon {
        font-size: 3rem;
    }

    .features .feature-icon {
        font-size: 2rem;
        /* Adjust feature icon size for mobile */
    }

    .image-text-content h3 {
        font-size: 1.8rem;
    }

    .image-text-content p,
    .testimonial-item p {
        font-size: 1rem;
    }

    .cta h2 {
        font-size: 2.5rem;
    }

    .testimonial-item::before {
        font-size: 6rem;
        top: -10px;
        left: 10px;
    }

    .section-divider {
        height: 50px;
        /* Smaller divider on mobile */
        margin-top: -50px;
    }
}





/* contact us */

.section-cu {
    padding: 80px 10%;
    background-color: var(--dark);
}

.contact-intro-cu {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro-cu h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-intro-cu p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: auto;
}

.contact-container-cu {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-details-cu,
.contact-form-cu {
    flex: 1;
    background-color: var(--black);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 30px #26a9e2;
}

.contact-details-cu ul {
    list-style: none;
    padding: 0;
}

.contact-details-cu li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-light);
}

.contact-details-cu li span {
    font-weight: 600;
    color: white;
}

.hours-cu {
    margin-top: 30px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 40px;
    p{
        text-align: center;
        margin-bottom: 0;
    }
}

.form-row-cu {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-row-cu input,
.form-row-cu select {
    flex: 1;
    min-width: 180px;
}

.contact-form-cu input,
.contact-form-cu select,
.contact-form-cu textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 10px;
    background-color: var(--dark);
    color: white;
    font-size: 16px;
    transition: 0.3s ease;
}

.contact-form-cu input:focus,
.contact-form-cu select:focus,
.contact-form-cu textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 10px #26a9e2;
    outline: none;
}

.contact-form-cu textarea {
    margin-bottom: 20px;
}

.contact-form-cu button {
    padding: 15px 35px;
    background-color: #26a9e2;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form-cu button:hover {
    background-color: #26a9e2;
}

.map-container-cu {
    margin-top: 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px #26a9e2;
}

.map-container-cu iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .form-row-cu {
        flex-direction: column;
    }

    .contact-container-cu {
        flex-direction: column;
    }

    .section-cu {
        padding: 50px 20px;
    }
}

.gm-body {
    background: linear-gradient(135deg, var(--dark-bg), #26a9e2);
}

h2.gm-heading {
    color: #26a9e2;
    text-align: center;
    margin-bottom: 30px;
}

.table-gm {
    background-color: transparent;
    color: #fff;
}

.table-gm th {
    background-color: #121314;
    color: #fff;
    font-weight: 600;
    text-align: center;
    border: none;
}

.table-gm td {
    background-color: #000;
    text-align: center;
    vertical-align: middle;
    border: none;
    padding: 12px;
    color: #fff;
}

.tech-icon-gm {
    font-size: 1.4rem;
    margin-right: 6px;
}



.bd-client-adj {

   
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
    background-color: #000;
}

.cred-carousel-container {
    /* max-width: 1200px; */
    width: 100%;
    background: #000;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    /* padding: 40px 20px; */
    box-shadow: 0 20px 40px #26a9e2;
    position: relative;
    overflow: hidden;
}

.cred-carousel-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #000;
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.client-lg {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cred-subtitle {
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cred-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
    padding: 30px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cred-carousel-track {
    display: flex;
    gap: 30px;
    animation: infiniteScroll 60s linear infinite;
    width: calc(1200% + 60px);
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.cred-logo-slide {
    flex: 0 0 200px;
    height: 100px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cred-carousel-track:hover {
    animation-play-state: paused;
}

.cred-logo-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s ease;
}

.cred-logo-slide:hover::before {
    left: 100%;
}

.cred-logo-slide:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cred-logo-slide img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.cred-logo-slide:hover img {
    filter: grayscale(0%);
}

.cred-logo-placeholder {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    text-align: center;
    padding: 20px;
}

.cred-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.cred-nav-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cred-nav-btn:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cred-nav-btn:active {
    transform: translateY(0) scale(0.95);
}

.cred-dots-container {
    display: flex;
    gap: 10px;
}

.cred-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.cred-dot.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.cred-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cred-dot:hover::before {
    opacity: 1;
}

.cred-auto-play-toggle {
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid #667eea;
    color: #667eea;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cred-auto-play-toggle:hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}

.cred-auto-play-toggle.paused {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

.cred-auto-play-toggle.paused:hover {
    background: #dc3545;
    color: white;
}

@media (max-width: 768px) {
    .cred-carousel-container {
        padding: 20px 15px;
    }

    .client-lg {
        font-size: 2rem;
    }

    .cred-logo-slide {
        flex: 0 0 140px;
        height: 100px;
    }

    .cred-carousel-track {
        gap: 20px;
        animation: infiniteScrollMobile 15s linear infinite;
    }

    @keyframes infiniteScrollMobile {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50% - 10px));
        }
    }

    .cred-carousel-controls {
        display: none;
    }
}

@media (max-width: 480px) {
    .cred-logo-slide {
        flex: 0 0 120px;
        height: 80px;
    }

    .cred-carousel-track {
        gap: 15px;
        animation: infiniteScrollSmall 12s linear infinite;
    }

    @keyframes infiniteScrollSmall {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50% - 7.5px));
        }
    }

    .client-lg {
        font-size: 1.8rem;
    }

    .cred-subtitle {
        font-size: 1rem;
    }
}