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

:root {
    --primary-color: #442974;
    --secondary-color: #1a8844;
    --dark: #1a1a2e;
    --light: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333;
    --text-light: #666;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-brand i {
    font-size: 2rem;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--white);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding-top: 80px;
    overflow: hidden;
}

/* hero::before removed — card photos provide the visual background */

.hero-overlay {
    display: none; /* cards cover the full hero — overlay not needed */
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 2rem 2rem 1.5rem;
    flex-shrink: 0;
}

.hero-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 0.6rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================== SERVICE BUTTONS — 2×2 Grid ===================== */

.service-buttons {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    padding: 0 3.5rem 3rem;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    direction: ltr;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

/* Each card */
.service-btn {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    padding: 0;
    background: #111;
    display: block;
    box-shadow: 0 10px 35px rgba(0,0,0,0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeIn 0.7s ease-out both;
}

.service-btn:nth-child(1) { animation-delay: 0.1s; }
.service-btn:nth-child(2) { animation-delay: 0.2s; }
.service-btn:nth-child(3) { animation-delay: 0.3s; }
.service-btn:nth-child(4) { animation-delay: 0.4s; }

.service-btn:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 22px 55px rgba(0,0,0,0.5);
}

/* ── Photo ── */
.service-btn-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease, filter 0.45s ease;
    filter: brightness(0.62) saturate(0.85);
}

.service-btn:hover .service-btn-photo {
    transform: scale(1.07);
    filter: brightness(0.48) saturate(1.1);
}

/* ── Overlay ── */
.service-btn-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.8rem 2rem;
    background: linear-gradient(
        175deg,
        rgba(0,0,0,0.25)  0%,
        rgba(0,0,0,0.0)   35%,
        rgba(0,0,0,0.0)   55%,
        rgba(0,0,0,0.78) 100%
    );
    transition: background 0.45s ease;
}

.service-btn:hover .service-btn-overlay {
    background: linear-gradient(
        175deg,
        rgba(68,41,116,0.45) 0%,
        rgba(0,0,0,0.0)      35%,
        rgba(0,0,0,0.0)      55%,
        rgba(26,136,68,0.85) 100%
    );
}

/* ── Number — top-right watermark ── */
.service-num {
    align-self: flex-end;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    color: rgba(255,255,255,0.10);
    user-select: none;
    transition: color 0.4s ease;
}

.service-btn:hover .service-num {
    color: rgba(255,255,255,0.22);
}

/* ── Centre icon ── */
.service-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.service-icon-wrap i {
    font-size: 3.8rem;
    color: rgba(255,255,255,0.60);
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.5));
    transition: color 0.4s ease,
                transform 0.4s cubic-bezier(0.34, 1.5, 0.64, 1),
                filter 0.4s ease;
}

.service-btn:hover .service-icon-wrap i {
    color: #fff;
    transform: scale(1.20) translateY(-5px);
    filter: drop-shadow(0 6px 20px rgba(255,255,255,0.25));
}

/* ── Bottom info ── */
.service-info {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    align-items: flex-start;
}

.service-line {
    height: 3px;
    width: 32px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.45s ease;
    margin-bottom: 0.15rem;
}

.service-btn:hover .service-line { width: 64px; }

.service-name {
    display: block;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

/* CTA slides up on hover */
.service-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transform: translateY(8px);
    transition: color 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.service-btn:hover .service-cta {
    color: rgba(255,255,255,0.9);
    transform: translateY(0);
}

.service-cta i { font-size: 0.8rem; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(68, 41, 116, 0.05), rgba(26, 136, 68, 0.05));
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(68, 41, 116, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-section .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.about-title {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInDown 1s ease-out;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-paragraph {
    text-align: center;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-dark);
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.about-paragraph::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.about-paragraph::after {
    content: '"';
    position: absolute;
    bottom: -40px;
    left: 30px;
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Services Overview Section */
.services-overview {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(10px);
    opacity: 0.5;
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.medical-bg {
    background: linear-gradient(135deg, #442974, #6b3fa0);
}

.logistic-bg {
    background: linear-gradient(135deg, #1a8844, #25a556);
}

.food-bg {
    background: linear-gradient(135deg, #442974, #1a8844);
}

.petroleum-bg {
    background: linear-gradient(135deg, #1a8844, #442974);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-learn-more {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(68, 41, 116, 0.4);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
    animation: floatPulse 3s ease-in-out infinite;
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Service Pages */
.service-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    overflow-y: auto;
}

.service-page.active {
    opacity: 1;
    visibility: visible;
}

.service-page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem 0;
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.service-page-header .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.back-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

.service-page-header h1 {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Countries Section */
.countries-section {
    margin-top: 3rem;
}

.countries-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.countries-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.country-tab {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.country-tab:hover,
.country-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.country-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.country-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Company Info Card */
.company-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.info-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.info-badge {
    background: linear-gradient(135deg, var(--secondary-color), #25a556);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: linear-gradient(135deg, rgba(68, 41, 116, 0.05), rgba(26, 136, 68, 0.05));
    transform: translateX(-5px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.info-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.info-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.info-value.link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-value.link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Services List */
.services-list {
    margin-top: 3rem;
}

.services-list h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mini-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mini-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.mini-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.mini-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Products Section */
.products-section {
    margin-top: 3rem;
}

.products-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.product-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(68, 41, 116, 0.1), rgba(26, 136, 68, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: rotate(360deg);
}

.product-image i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card:hover .product-image i {
    -webkit-text-fill-color: var(--white);
}

.product-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-product {
    background: linear-gradient(135deg, var(--secondary-color), #25a556);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-product:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(26, 136, 68, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero {
        height: auto;
        min-height: 100svh;
    }

    .service-buttons {
        gap: 14px;
        padding: 0 1.2rem 1.5rem;
    }

    .service-icon-wrap i { font-size: 2.8rem; }

    .service-name {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }

    .service-num { font-size: 3rem; }

    .service-cta { display: none; }

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

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

    .countries-tabs {
        flex-direction: column;
    }

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

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

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

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Statistics Section */
.statistics-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,117.3C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center;
    background-size: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    color: var(--white);
    position: relative;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(360deg);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.testimonial-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

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

.contact-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(68, 41, 116, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(68, 41, 116, 0.3);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
    margin-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* ===================== SERVICE DESCRIPTION ===================== */
.service-description {
    background: linear-gradient(135deg, rgba(68,41,116,0.07), rgba(26,136,68,0.07));
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(68,41,116,0.1);
}

.service-description p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-dark);
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border-radius: 16px;
    padding: 1.8rem 2.5rem;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

/* ===================== INNER TABS (About/Products/Partners/Events/Contact) ===================== */
.inner-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 2rem 0 1.5rem;
    background: var(--white);
    padding: 1rem 1.2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(68,41,116,0.08);
}

.inner-tab {
    background: transparent;
    border: 2px solid rgba(68,41,116,0.2);
    color: var(--text-dark);
    padding: 0.65rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.inner-tab i {
    font-size: 0.95rem;
}

.inner-tab:hover,
.inner-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(68,41,116,0.25);
}

.inner-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
    padding-bottom: 2rem;
}

.inner-tab-content.active {
    display: block;
}

/* ===================== ENERGY TABS (Clean Energy / Energy — Petroleum only) ===================== */
.energy-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
}

.energy-tab {
    background: var(--white);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: var(--shadow);
}

.energy-tab:hover,
.energy-tab.active {
    background: linear-gradient(135deg, var(--secondary-color), #1a8844);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26,136,68,0.35);
}

.energy-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.energy-content.active {
    display: block;
}

/* ===================== TAB SECTION HELPERS ===================== */
.tab-section-inner {
    padding: 1.5rem 0;
}

.tab-section-inner h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tab-section-inner h3::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.tab-contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-top: 1.5rem;
    max-width: 700px;
}

.tab-contact-form h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* Contact Info Card (phone + email display) */
.tab-contact-info {
    margin-top: 1.5rem;
    max-width: 540px;
}

.tab-contact-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.4rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-info-item:nth-child(2) {
    border-left-color: var(--secondary-color);
}

.contact-info-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
}

.contact-info-item .ci-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .ci-icon i {
    font-size: 1.4rem;
    color: #fff;
}

.contact-info-item .ci-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-item .ci-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item .ci-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item:hover .ci-value {
    color: var(--primary-color);
}

/* ===================== FOOD BUTTON — FULL WIDTH BOTTOM ROW ===================== */
.service-btn:nth-child(3) {
    grid-column: 1 / -1;
}

/* ===================== SERVICE PAGE LANGUAGE SWITCHER ===================== */
.service-lang-switcher {
    margin-left: auto;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

[dir="rtl"] .service-lang-switcher {
    margin-left: 0;
    margin-right: auto;
}

.service-lang-switcher a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border: 1.5px solid rgba(255,255,255,0.45);
    border-radius: 20px;
    transition: all 0.25s ease;
    letter-spacing: 0.06em;
}

.service-lang-switcher a:hover,
.service-lang-switcher a.lang-active {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

/* ===================== RESPONSIVE — NEW COMPONENTS ===================== */
@media (max-width: 480px) {
    .service-buttons {
        gap: 10px;
        padding: 0 1rem 1.2rem;
    }

    .service-name {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .service-num { font-size: 2.2rem; }

    .service-icon-wrap i { font-size: 2.2rem; }

    .service-btn-overlay { padding: 1.2rem 1.3rem; }
}

@media (max-width: 768px) {
    .inner-tabs {
        gap: 0.4rem;
        padding: 0.8rem;
    }

    .inner-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .energy-tabs {
        flex-direction: column;
    }

    .service-description p {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .tab-contact-form {
        padding: 1.5rem;
    }
}
/* ══════════════════════════════════════════════
   PRODUCT MODAL
══════════════════════════════════════════════ */
.product-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.product-modal-overlay.active { display: flex; }
.product-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px 32px;
    max-width: 520px;
    width: 100%;
    position: relative;
    text-align: center;
    animation: pModalIn .25s ease;
}
@keyframes pModalIn {
    from { opacity: 0; transform: scale(.9); }
    to   { opacity: 1; transform: scale(1); }
}
.product-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    background: none; border: none;
    font-size: 18px; cursor: pointer;
    color: #888; transition: color .2s;
}
.product-modal-close:hover { color: var(--primary-color); }
[dir="rtl"] .product-modal-close { right: auto; left: 14px; }
.product-modal-icon-wrap {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: #fff; font-size: 30px;
}
.product-modal-box h3 { font-size: 22px; margin-bottom: 10px; color: var(--text-dark); }
.product-modal-box > p { color: #666; margin-bottom: 12px; }
.product-modal-box hr { border: none; border-top: 1px solid #eee; margin: 16px 0; }
.product-modal-note { font-size: 14px; color: #555; margin-bottom: 16px; }
.product-modal-contact {
    display: flex; gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}
.product-modal-contact .btn-primary {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; padding: 10px 18px;
}

/* ══════════════════════════════════════════════
   COMING SOON CARD
══════════════════════════════════════════════ */
.coming-soon-card {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}
.coming-soon-icon {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 24px;
}
.coming-soon-card h3 { font-size: 26px; color: var(--text-dark); margin-bottom: 14px; }
.coming-soon-card p { color: #666; max-width: 420px; margin: 0 auto 24px; }
.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 8px 24px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
}

/* ══════════════════════════════════════════════
   COMPANY PROFILE RICH SECTIONS
══════════════════════════════════════════════ */
.profile-section { margin: 22px 0; }
.profile-section h4 {
    font-size: 15px; font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 6px;
}
.profile-list { padding-left: 22px; margin: 0; }
[dir="rtl"] .profile-list { padding-left: 0; padding-right: 22px; }
.profile-list li { margin-bottom: 6px; color: #555; line-height: 1.65; }
.profile-note { font-size: 13px; color: #888; font-style: italic; margin-top: 8px; }
.profile-section-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
.services-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.services-two-col h5 { font-size: 13px; font-weight: 700; color: #333; margin-bottom: 6px; }
.company-info-card hr { border: none; border-top: 1px solid #eee; margin: 16px 0; }
@media (max-width: 768px) {
    .profile-section-row, .services-two-col { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   MEDIQU GROUP OVERVIEW CARD
══════════════════════════════════════════════ */
.mediqu-group-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(68,41,116,.14);
    border: 1px solid rgba(68,41,116,.08);
    margin: 0 auto;
}
.mgc-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a8844 100%);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    flex-wrap: wrap;
}
.mgc-logo {
    width: 60px; height: 60px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}
.mgc-title h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; letter-spacing: .3px; }
.mgc-title span { font-size: 13px; opacity: .85; font-weight: 400; }
.mgc-badge {
    margin-left: auto;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.3);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    white-space: nowrap;
}
[dir="rtl"] .mgc-badge { margin-left: 0; margin-right: auto; }
.mgc-body {
    padding: 32px 36px;
    border-bottom: 1px solid #f0f0f0;
}
.mgc-body p {
    color: #555; line-height: 1.9; font-size: 15px;
    margin-bottom: 16px; position: relative;
    padding-{{ "left" }}: 16px;
}
.mgc-body p::before {
    content: '';
    position: absolute;
    left: 0; top: 6px;
    width: 4px; height: calc(100% - 12px);
    background: linear-gradient(to bottom, var(--primary-color), #1a8844);
    border-radius: 4px;
}
[dir="rtl"] .mgc-body p { padding-left: 0; padding-right: 16px; }
[dir="rtl"] .mgc-body p::before { left: auto; right: 0; }
.mgc-body p:last-child { margin-bottom: 0; }
.mgc-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #f0f0f0;
    gap: 1px;
}
.mgc-pillar {
    background: #fafafa;
    padding: 24px 20px;
    text-align: center;
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    transition: background .25s;
}
.mgc-pillar:hover { background: #f0ecfa; }
.mgc-pillar .mgc-pillar-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--primary-color), #1a8844);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px;
    margin-bottom: 4px;
}
.mgc-pillar strong { font-size: 14px; color: #333; font-weight: 700; }
.mgc-pillar span { font-size: 12px; color: #888; line-height: 1.55; }
.mgc-team {
    padding: 18px 36px;
    background: #f8f5ff;
    display: flex; align-items: center; gap: 14px;
    border-top: 1px solid #ede8f7;
    border-bottom: 1px solid #ede8f7;
}
.mgc-team-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 17px;
}
.mgc-team span { font-size: 14px; color: #555; line-height: 1.6; }
.mgc-countries {
    padding: 16px 36px;
    display: flex; align-items: center;
    gap: 10px; flex-wrap: wrap;
    background: #fff;
}
.mgc-countries-label {
    font-size: 11px; color: #aaa;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: .6px;
    margin-right: 6px;
}
[dir="rtl"] .mgc-countries-label { margin-right: 0; margin-left: 6px; }
.mgc-flag { font-size: 20px; }
@media (max-width: 860px) {
    .mgc-header { padding: 20px; gap: 14px; }
    .mgc-badge { margin-left: 0; width: 100%; justify-content: center; }
    [dir="rtl"] .mgc-badge { margin-right: 0; }
    .mgc-body { padding: 24px 20px; }
    .mgc-pillars { grid-template-columns: 1fr; gap: 1px; }
    .mgc-team, .mgc-countries { padding: 14px 20px; }
}

/* ── PARTNER LOGO STRIP ─────────────────────────────────────────────────── */
.logo-partner-strip {
    padding: 28px 0;
    margin-bottom: 0;
}
.logo-partner-strip--medical {
    background: linear-gradient(135deg, #f4f0fa 0%, #ede6f7 100%);
    border-top: 3px solid #442974;
    border-bottom: 3px solid #442974;
}
.logo-partner-strip--logistic {
    background: linear-gradient(135deg, #edf8f2 0%, #d9f2e6 100%);
    border-top: 3px solid #1a8844;
    border-bottom: 3px solid #1a8844;
}
.logo-partner-strip__heading {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.logo-partner-strip--medical .logo-partner-strip__heading { color: #442974; }
.logo-partner-strip--logistic .logo-partner-strip__heading { color: #1a8844; }
.logo-partner-strip__track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
}
.logo-partner-strip__item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 10px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    min-width: 100px;
    max-width: 160px;
    height: 68px;
}
.logo-partner-strip__item:hover {
    transform: translateY(-3px);
    text-decoration: none;
}
.logo-partner-strip--medical .logo-partner-strip__item {
    border: 1px solid rgba(68,41,116,.18);
    box-shadow: 0 2px 8px rgba(68,41,116,.08);
}
.logo-partner-strip--medical .logo-partner-strip__item:hover {
    box-shadow: 0 6px 20px rgba(68,41,116,.18);
}
.logo-partner-strip--logistic .logo-partner-strip__item {
    border: 1px solid rgba(26,136,68,.18);
    box-shadow: 0 2px 8px rgba(26,136,68,.08);
}
.logo-partner-strip--logistic .logo-partner-strip__item:hover {
    box-shadow: 0 6px 20px rgba(26,136,68,.18);
}
.logo-partner-strip__item img {
    max-height: 46px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
@media (max-width: 600px) {
    .logo-partner-strip__item { min-width: 80px; max-width: 120px; height: 56px; padding: 8px 12px; }
    .logo-partner-strip__item img { max-height: 36px; max-width: 90px; }
}
