/* Font Face */
@font-face {
    font-family: 'Roboto';
    src: url('Fonts/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('Fonts/Roboto-Italic-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #ffffff;
    --bg-dark: #1a1a1a;
    --accent-blue: #0066cc;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

/* Scroll Animation Styles */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.3s;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s;
}

/* Hero Section - Slider */
.hero-slider {
    position: relative;
    min-height: 100vh;
    margin-top: 0;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
}

.hero-slide.active .hero-slide-image {
    /* Zoom animation disabled */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-in-out 0.5s, transform 1s ease-in-out 0.5s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--text-light);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-download svg {
    flex-shrink: 0;
}

/* Slider Navigation */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--text-light);
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Introduction Section */
.intro-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.intro-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.link {
    color: var(--accent-blue);
    text-decoration: none;
    transition: opacity 0.3s;
}

.link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.btn-black {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    transition: background 0.3s, transform 0.2s;
}

.btn-black:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 1rem;
}

.section-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
    font-weight: 300;
}

.section-label.blue {
    color: var(--accent-blue);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card-large {
    grid-row: 1 / 3;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.5s, filter 0.5s;
}

.service-card:hover .service-image {
    transform: scale(1.05);
    filter: grayscale(70%);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.service-title {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 300;
}

.service-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--text-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
    pointer-events: none;
}

.service-card:hover .service-button {
    transform: scale(1.1);
}

.service-button .arrow {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Approach Section */
.approach-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-image {
    position: relative;
}

.approach-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(100%);
    border-radius: 4px;
}

.approach-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--accent-blue);
    margin: 1rem 0 1.5rem;
    line-height: 1.2;
}

.approach-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.approach-features {
    list-style: none;
}

.approach-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.approach-features li svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 400px;
    text-decoration: none;
    display: block;
    color: inherit;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.5s, filter 0.5s;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
    filter: grayscale(70%);
}

.feature-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 300;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.features-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    padding: 2rem 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    color: var(--text-light);
}

.feature-item-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-item-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Services Hero Section */
.services-hero {
    position: relative;
    min-height: 60vh;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Images /anthony-tyrrell-Bl-LiSJOnlY-unsplash.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.services-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--text-light);
    margin: 0;
}

.services-intro-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

/* Service Detail Page */
.service-detail-hero {
    position: relative;
    min-height: 50vh;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Images /1.png');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
}

.service-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.service-detail-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.service-detail-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-detail-tagline {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-light);
    opacity: 0.9;
    margin: 0;
}

.service-detail-content {
    padding: 6rem 0;
    background: var(--bg-light);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.service-key-services {
    position: sticky;
    top: 100px;
    align-self: start;
}

.service-key-heading {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.service-key-list {
    list-style: none;
    padding: 0;
}

.service-key-list li {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    padding-left: 0;
}

.service-key-list li strong {
    color: var(--text-dark);
    font-weight: 400;
}

.service-main-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.service-main-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-main-content p {
    margin-bottom: 1.5rem;
}

.service-subheading {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin: 3rem 0 2rem;
}

.service-expertise-list {
    margin-top: 2rem;
}

.expertise-item {
    margin-bottom: 2.5rem;
}

.expertise-item h4 {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.expertise-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

/* Clients Section */
.clients-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-top: 3rem;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    width: 100%;
    max-width: 200px;
    height: 120px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-choose-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.why-choose-heading {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.why-choose-list {
    list-style: none;
    padding: 0;
}

.why-choose-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.why-choose-list li strong {
    color: var(--text-dark);
    font-weight: 400;
}

/* Contact Page */
.contact-hero {
    position: relative;
    min-height: 50vh;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Images /anne-nygard-OtqaCE_SEMI-unsplash.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--text-light);
    margin: 0;
}

.contact-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-main-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-top: 1rem;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-top: 1rem;
}

.contact-address {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.contact-email {
    color: var(--accent-blue);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-email:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-form-container {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.3s;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-address {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 400;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}

.footer-menu a:hover {
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .service-card-large {
        grid-row: 1;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid,
    .features-grid-three {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .client-logo {
        height: 110px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-key-services {
        position: static;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .client-logo {
        padding: 1rem;
    }

    .client-logo {
        height: 100px;
        max-width: 100%;
    }

    .client-logo img {
        max-height: 70px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .hero-slider {
        min-height: 100vh;
    }

    .hero-slides {
        height: 100vh;
    }

    .services-section,
    .approach-section,
    .features-section,
    .why-choose-section {
        padding: 4rem 0;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .client-logo {
        height: 90px;
        padding: 1rem;
    }

    .client-logo img {
        max-height: 60px;
    }
}

/* Additional responsive breakpoint for tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .client-logo {
        height: 110px;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2.5rem;
    }
}
