/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */

:root {
    --primary-color: #5f59a9;
    --primary-light: #b38fc3;
    --dark-bg: #180f3a;
    --text-dark: #180f3a;
    --text-gray: #5f5f5f;
    --border-light: #e0e0e0;
    --white: #ffffff;
    --light-bg: #fcfcfc;
    --light-gray: #f3f2ff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-gray);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 96px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 10px 40px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Tajawal', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient( #5E58A8 100%);
    color: var(--white);
    border: 1px solid transparent;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-contact {
    padding: 10px 40px;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    padding: 18px 0;
}

.navbar.scrolled {
    background: rgba(24, 15, 58, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-divider {
    width: 1px;
    height: 20px;
    background: rgba(14, 9, 72, 0.1);
}

.logo-img {
    width: 105px;
    height: 55px;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: var(--transition);
    cursor: pointer;
}

.nav-link:hover {
    color: var(--primary-light);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(24, 15, 58, 0.98);
    flex-direction: column;
    padding: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* margin-top: 70px; */
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-vector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background: rgba(24, 15, 58, 0.3);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 956px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 53px;
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
}

.hero-description {
    font-size: 20px;
    color: var(--white);
    line-height: 1.6;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 120px 0;
    background: #FAFAFA;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}
.about-image {
    flex: 1;
    display: flex;
    justify-content: start;
    align-items: center;
}

.image-frame {
    width: 100%;
    max-width: 573px;
    height: auto;
    aspect-ratio: 573 / 421;
    padding: 4px; /* من Figma */
    border: 1px solid #B38FC3; /* Stroke Linear في التصميم */
    border-radius: 12px; /* نفس Corner radius */
    box-sizing: border-box;
    overflow: hidden; /* عشان يلتزم بالـ inside stroke */
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}


.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
}

.about-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    text-align: right;
}

.text-primary {
    color: var(--primary-color);
}

.about-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.stat-number {
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
}

.services-content {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.services-image {
    flex: 0 0 536px;
    height: 654px;
    /* background: linear-gradient(135deg, #f3f2ff 0%, #f3f2ff 100%); */
    border-radius: 20px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #e8e3ff 0%, #f3f2ff 100%); */
    border-radius: 20px;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 8px;
    flex-shrink: 0;
}

.timeline-dot {
    width: 8px;
    height: 80px;
    background: #cacaca;
    border-radius: 40px;
    transition: var(--transition);
}

.timeline-dot.active {
    background: var(--primary-color);
    height: 80px;
}

.timeline-line {
    width: 8px;
    height: 8px;
    background: #cacaca;
    border-radius: 40px;
}

.services-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
    opacity: 0.4;
    transition: var(--transition);
    cursor: pointer;
}

.service-item.active {
    opacity: 1;
}

.service-item:hover {
    opacity: 0.8;
}

.service-number {
    width: 50.73px;
    height: 44px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 5px 5px 0px rgba(196, 179, 255, 1);
}

.service-item.active .service-number {
    box-shadow: 5px 5px 0px rgba(196, 179, 255, 1);
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

.service-item.active .service-title {
    color: var(--primary-color);
}

.service-description {
    font-size: 18px;
    color: var(--text-dark);
    text-align: right;
    opacity: 0.7;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */

.clients-section {
    padding: 120px 0;
    background: var(--white);
     position: relative;
    margin-top: 100px;   /* يشيل الفراغ بين الكيرف وسكشن عملاؤنا */
    padding-top: 160px;  /* يرجّع مساحة فوق العنوان */
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.client-card {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 128px;
    overflow: hidden;
}

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

/* ============================================
   PRODUCTS SECTION
   ============================================ */
 /* مساحة كافية للكيرف */
.products-section {
    padding: 120px 0;     
    background: #0f0830;
    position: relative;
    overflow: visible;
}


/* الإهليجات الموف (صورة div.c-PJLV.png) */
/* .products-section::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;               
    height: 700px;
    background: url("assets/div.c-PJLV.png") no-repeat center bottom;
    background-size: contain;

    pointer-events: none;
    z-index: 1;
} */
/* .products-section::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(70%);

    width: 100%;
    height: 260px;

    background: #0f0830;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;

    z-index: 1;
} */

.section-header .text-white {
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
        margin-top: 60px;

}

.product-card {
    /* background: rgba(95, 89, 169, 0.3);
    border: 1px solid rgba(95, 89, 169, 0.5);
    border-radius: 16px;
    padding: 24px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
    cursor: pointer; */
        direction: rtl;

  background: rgba(95, 89, 169, 0.25);
    border: 1px solid rgba(95, 89, 169, 0.4);
    border-radius: 16px;
    padding: 24px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(6px);

}

.product-card:hover {
    background: rgba(95, 89, 169, 0.45);
    transform: translateY(-6px);
}

/* .product-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, rgba(179, 143, 195, 0.25) 0%, rgba(95, 89, 169, 0.25) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.product-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, rgba(179, 143, 195, 0.25) 0%, rgba(95, 89, 169, 0.25) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;       /* يمنع خروج الصورة */
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;    /* يحافظ على نسبة الصورة */
}

.product-content {

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    text-align: right;
}

.product-tags {

    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.product-tag {

    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    font-size: 12px;
    color: var(--white);
}


.product-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 120px 0;
    background: #7A51DE1C 11%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
     background: var(--white); /* خلفية بيضاء صريحة */
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    /* إضافة الظل المطلوب */
box-shadow: 0px 1px 11px 0px rgba(196, 179, 255, 1);
border: 1px solid rgba(95, 89, 169, 0.1);

}

.form-input {
    padding: 12px 20px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Tajawal', sans-serif;
    background: var(--white);
    color: var(--text-gray);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(95, 89, 169, 0.1);
}

.form-input::placeholder {
    color: var(--text-gray);
}

.contact-info {
     /* التعديل هنا */
    background: var(--white); /* خلفية بيضاء صريحة */
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* إضافة الظل المطلوب */
/* box-shadow: 0 10px 40px rgba(24, 15, 58, 0.08), 0 2px 8px rgba(24, 15, 58, 0.04);
border: 1px solid rgba(95, 89, 169, 0.1); */

}

.contact-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.contact-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.contact-value {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-brand {
    grid-column: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    text-align: right;
}

.footer-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    text-align: right;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-links a,
.footer-links p {
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    text-align: right;
    margin: 0;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 12px;
}

.footer-contact-item p {
    font-size: 16px;
    color: var(--white);
    margin: 0;
    text-align: right;
}

.footer-bottom {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links-bottom {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-links-bottom a {
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: var(--primary-light);
}

.divider {
    color: rgba(255, 255, 255, 0.4);
}

.footer-copyright {
    font-size: 16px;
    color: var(--white);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 48px;
    }

    .navbar-container {
        padding: 0 48px;
    }

    .navbar-menu {
        gap: 16px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .about-content {
        gap: 48px;
    }

    .services-content {
        gap: 32px;
    }

    .services-image {
        flex: 0 0 400px;
        height: 500px;
    }

    .image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

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

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .navbar-container {
        padding: 0 24px;
    }

    .navbar-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        height: 600px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .about-content {
        flex-direction: column;
        gap: 32px;
    }

    .about-image {
        width: 100%;
    }

    .image-frame {
        max-width: 100%;
        height: auto;
    }

    .about-text {
        gap: 32px;
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-item {
        align-items: flex-start;
    }

    .section-title {
        font-size: 24px;
    }

    .services-content {
        flex-direction: column;
        gap: 32px;
    }

    .services-image {
        flex: 1;
        width: 100%;
        height: auto;
        min-height: 300px;
    }

    .image-placeholder {
        height: auto;
        min-height: 300px;
    }

    .image-placeholder img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .services-timeline {
        display: none;
    }

    .services-list {
        gap: 16px;
    }

    .service-item {
        gap: 12px;
    }

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

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-card {
        min-height: 220px;
    }

    .contact-info {
        padding: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .navbar-container {
        padding: 0 16px;
    }

    .hero {
        height: 500px;
        margin-top: unset;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 12px;
    }

    .about-section,
    .services-section,
    .clients-section,
    .products-section,
    .contact-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 20px;
    }

    .section-description {
        font-size: 14px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 32px;
    }

    .service-number {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
}
.btn {
    overflow: hidden;
    position: relative;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
}

@keyframes ripple-effect {
    to {
        transform: scale(3);
        opacity: 0;
    }
}
.clients-section {
    padding: 120px 0;
    background: #ffffff;
}

.clients-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.clients-slider {
    display: flex;
    gap: 24px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.clients-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    width: 204px;
    height: 128px;
    background: #f5f5f5;;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    flex-shrink: 0;
}

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

@media (max-width: 768px) {
    .clients-section {
        padding: 80px 0;
    }
    
    .client-logo {
        width: 160px;
        height: 100px;
    }
}

/* .clients-slider {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(204px * 8);
    animation: scroll 18s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    width: 204px;
    height: 128px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    margin: 0 12px;
    flex-shrink: 0;
}

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

@media (max-width: 768px) {
    .client-logo {
        width: 160px;
        height: 100px;
    }
} */
