/* Global Styles */
@font-face {
    font-family: 'Alexandria';
    src: url('Alexandria.ttf') format('truetype');
    font-weight: 100 900; /* Support full weight range */
    font-display: swap;
}

:root {
    --primary-color: #ea9527;
    --secondary-color: #1a1a1a; /* Dark luxury contrast */
    --text-color: #333;
    --light-bg: #f8f9fa;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Font Awesome Duotone Luxury Accent */
.fa-duotone, .fa-sharp-duotone {
    --fa-primary-color: #333;
    --fa-secondary-color: var(--primary-color);
    --fa-secondary-opacity: 1;
}

body {
    font-family: 'Alexandria', sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Section Alignment */
.section-header, .ach-title, .ach-subtitle, .section-title, .section-subtitle {
    text-align: right;
}

/* Standardized Section Headers (Based on About Section) */
.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    display: inline-block;
    margin-bottom: 10px;
    background: rgba(255, 215, 0, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--text-color);
    line-height: 1.3;
    position: relative;
    padding-bottom: 0;
}

.section-title::after {
    display: none; /* Remove simple line if present elsewhere */
}

.section-title span {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
    border-radius: 5px;
}

/* Screen Reader Text - Visually Hidden */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header */
.top-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    font-size: 13px;
}

.top-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #666;
    margin-left: 15px;
}

.top-contact a:hover {
    color: var(--primary-color);
}

.separator {
    color: #ccc;
    margin: 0 10px;
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: #666;
    font-size: 14px;
}

.top-social a:hover {
    color: var(--primary-color);
}


/* Main Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link img {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    font-weight: 600;
    color: #333;
    position: relative;
    padding: 5px 0;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--primary-color);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #cf8523 100%);
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(234, 149, 39, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(234, 149, 39, 0.35);
    background: linear-gradient(135deg, #cf8523 0%, var(--primary-color) 100%);
}

/* Mobile Menu Trigger */
.menu-trigger, .close-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-widget p {
    color: #aaa;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .header-content-wrapper {
        justify-content: space-between;
    }

    .menu-trigger {
        display: block;
        font-size: 24px;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        z-index: 2000;
        padding: 60px 20px;
        transition: right 0.3s ease;
    }

    .main-navigation.active {
        right: 0;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 24px;
        color: #333;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
    }

    .header-actions {
        display: none; /* Hide CTA on mobile or move it */
    }
}

/* --- Header Logo Responsive --- */
.header-logo-img {
    
    height: auto;
    transition: max-width 0.3s ease;
}

@media (max-width: 768px) {
    .header-logo-img {
        
    }
}

/* Categories Section */
.categories-section {
    background-color: #f8f9fa; /* Light Gray */
    position: relative;
    z-index: 1;
    overflow: hidden; /* Prevent horizontal scrollbar due to swiper */
}

/* Swiper Wrapper & Slide */
.categories-swiper {
    padding: 10px; /* Space for shadow/hover transform */
    margin: -10px;
    padding-bottom: 40px;
}

/* Card Style (New) */
.category-card-new {
    display: flex;
    flex-direction: column;
    background-color: #fcfcfc; /* Very light gray/white */
    border-radius: 20px;
    padding: 20px;
    height: 320px; /* Fixed height based on visual */
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    justify-content: space-between;
}

.category-card-new:hover {
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.cat-new-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cat-new-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensure product isn't cropped */
    transition: transform 0.4s ease;
}

.category-card-new:hover .cat-new-img img {
    transform: scale(1.05);
}

.cat-new-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid transparent; /* Separator if needed */
    padding-top: 10px;
}

.cat-new-title {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin: 0;
    line-height: 1.3;
    text-align: right;
    max-width: 80%;
}

.cat-new-arrow {
    color: #888;
    font-size: 16px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.category-card-new:hover .cat-new-arrow {
    color: var(--primary-color);
    transform: translateX(-5px); /* Move left on hover (RTL) */
    
}

/* All Categories Card */
.category-card-all {
    display: block;
    height: 320px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cat-all-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card-all:hover .cat-all-bg {
    transform: scale(1.05);
}

.cat-all-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    z-index: 1;
}

.cat-all-text {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cat-all-text i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.category-card-all:hover .cat-all-text i {
    transform: translateX(-5px);
}

/* Navigation Buttons */
.categories-nav-buttons {
    display: flex;
    gap: 10px;
}

.cat-swiper-button-prev,
.cat-swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cat-swiper-button-prev:hover,
.cat-swiper-button-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.cat-swiper-button-prev.swiper-button-disabled,
.cat-swiper-button-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f9f9f9;
    color: #ccc;
    border-color: #eee;
}

/* Achievements Section */
.achievements-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.achievement-item {
    text-align: center;
    padding: 30px 20px;
    background: #fcfcfc;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
}

.ach-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    background: rgba(234, 149, 39, 0.1); /* Primary color light */
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.achievement-item:hover .ach-icon {
    background: var(--primary-color);
    color: #fff;
}

.ach-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 10px;
    font-family: 'Alexandria', sans-serif;
}

.ach-label {
    display: block;
    font-size: 16px;
    color: #777;
    font-weight: 500;
}

@media (max-width: 991px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

/* Vision & Mission Section */
.vision-mission-section {
    background-color: #f8f9fa; /* Light Gray */
    padding: 60px 0 100px;
    position: relative;
    z-index: 1;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid #f5f5f5;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.vision-card {
    border-bottom: 3px solid var(--primary-color);
}

.mission-card {
    border-bottom: 3px solid var(--secondary-color);
}

.vm-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: #f9f9f9;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.mission-card .vm-icon-wrapper {
    color: var(--secondary-color);
}

.vm-card:hover .vm-icon-wrapper {
    background: var(--primary-color);
    color: #fff;
}

.mission-card:hover .vm-icon-wrapper {
    background: var(--secondary-color);
    color: #fff;
}

.vm-content {
    flex-grow: 1;
}

.vm-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #2c3e50;
}

.vm-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vm-card {
        padding: 30px 20px;
        flex-direction: column;
        align-items: flex-start;
        text-align: right;
    }
}

/* Why Choose Us Section */
.wcu-section {
    padding: 80px 0;
    background-color: #fff; /* White */
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wcu-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: right;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wcu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.wcu-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s;
}

.wcu-card:hover::before {
    opacity: 1;
}

.wcu-icon-box {
    width: 80px;
    height: 80px;
    background: #f4f6f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 25px 0; /* Align right */
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.wcu-card:hover .wcu-icon-box {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

.wcu-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.wcu-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}

@media (max-width: 991px) {
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .wcu-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section Luxury */
.cta-section-luxury {
    position: relative;
    padding: 60px 0;
    background-color: var(--secondary-color);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(234, 149, 39, 0.85) 100%);
    z-index: 1;
}

.cta-inner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-text-content {
    text-align: right;
    max-width: 70%;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
}

.cta-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0;
    font-weight: 300;
}

.cta-btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.cta-btn-luxury:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(234, 149, 39, 0.4);
}

@media (max-width: 991px) {
    .cta-inner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-text-content {
        text-align: center;
        max-width: 100%;
    }

    .cta-title {
        font-size: 28px;
    }
    
    .cta-btn-luxury {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
}

/* Blog Section Styling */
.blog-section {
    background-color: #f8f9fa; /* Light Gray */
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 70px;
}

.blog-date .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 14px;
    color: #777;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-title a {
    color: #2c3e50;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.6;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: gap 0.3s;
}

.blog-link:hover {
    gap: 15px;
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section Styling */
.faq-section {
    background-color: #fff; /* White */
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    border-right: 4px solid var(--primary-color); /* Brand Identity Accent */
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(234, 149, 39, 0.15); /* Primary Glow */
    background: #fff;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align start to put items next to each other */
    cursor: pointer;
    background: #fff;
    transition: background 0.3s;
    gap: 20px; /* Space between icon and text */
}

.faq-item.active .faq-question {
    background: rgba(234, 149, 39, 0.03); /* Very light primary tint */
    border-bottom: 1px solid rgba(234, 149, 39, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color); /* Secondary Identity Color */
    flex-grow: 1;
    /* padding-left: 20px; Remove padding since we use gap */
    text-align: right;
}

.toggle-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-color); /* Primary Identity Color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; /* White Icon */
    transition: all 0.3s;
    flex-shrink: 0;
    order: -1; /* Move icon to the start (Right in RTL) */
    box-shadow: 0 4px 10px rgba(234, 149, 39, 0.3);
}

.faq-item.active .toggle-icon {
    background: var(--secondary-color); /* Switch to Secondary on Active */
    color: #fff;
    transform: rotate(45deg); /* Rotate for X effect */
}

.faq-answer {
    padding: 0 30px 30px 85px; /* Add left padding to align with text */
    color: #666;
    line-height: 1.8;
    display: none; /* Hidden by default */
    padding-top: 20px;
    font-size: 15px;
    text-align: right;
}

@media (max-width: 768px) {
    .faq-answer {
        padding: 0 30px 30px 30px;
    }
}

/* Partners Section Styling */
.partners-section {
    background-color: #f8f9fa;
    padding-bottom: 60px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.partner-item {
    width: 150px; /* Fixed width for consistency */
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.partner-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 20px;
    }
    .partner-item {
        width: 120px;
        height: 80px;
    }
}
