/* ============================================================================
   1. HERO SECTION
   ============================================================================ */
.hero,
.hero-wrapper {
    position: relative;
}

.hero {
    overflow: hidden;
    z-index: 0;
    min-height: 85vh;
    background-color: #0c1829;
    position: relative;
}

/* -- Hero Dynamic Background Slider -- */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1), transform 8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.08);
}

/* -- Hero Floating Particles -- */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 11;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    filter: brightness(0) invert(1);
    opacity: 0.1;
    animation: heroParticleFloat 18s ease-in-out infinite;
    will-change: transform;
}

.hero-particle.p1 {
    width: 90px;
    top: 8%;
    left: 5%;
    opacity: 0.08;
    animation-duration: 22s;
    animation-delay: 0s;
}

.hero-particle.p2 {
    width: 45px;
    top: 15%;
    right: 10%;
    opacity: 0.15;
    animation-duration: 16s;
    animation-delay: -3s;
}

.hero-particle.p3 {
    width: 60px;
    bottom: 25%;
    left: 12%;
    opacity: 0.12;
    animation-duration: 20s;
    animation-delay: -7s;
}

.hero-particle.p4 {
    width: 35px;
    top: 40%;
    right: 5%;
    opacity: 0.18;
    animation-duration: 14s;
    animation-delay: -2s;
}

.hero-particle.p5 {
    width: 70px;
    bottom: 10%;
    right: 18%;
    opacity: 0.09;
    animation-duration: 25s;
    animation-delay: -10s;
}

.hero-particle.p6 {
    width: 30px;
    top: 60%;
    left: 25%;
    opacity: 0.2;
    animation-duration: 12s;
    animation-delay: -5s;
}

.hero-particle.p7 {
    width: 50px;
    top: 5%;
    left: 55%;
    opacity: 0.12;
    animation-duration: 18s;
    animation-delay: -8s;
}

@keyframes heroParticleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(8deg) scale(1.05);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg) scale(0.95);
    }
    75% {
        transform: translateY(-25px) rotate(12deg) scale(1.02);
    }
}

@media (max-width: 575px) {
    .hero-particles {
        display: none;
    }
}

.hero__image {
    display: block
}

.heading-block-image {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none !important;
    z-index: 10;
    margin: 0;
    padding: 1.5rem 2rem !important;
    background: linear-gradient(180deg,
            rgba(10, 30, 50, 0.55) 0%,
            rgba(10, 25, 45, 0.75) 55%,
            rgba(10, 25, 45, 0.9) 100%);
    pointer-events: auto;
    overflow: hidden;
    box-sizing: border-box;
}

/* Remove the base .heading-block decorative line */
.heading-block-image::after {
    display: none !important;
}

/* Override base .heading-block h1 white background */
.heading-block-image h1 {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #fff;
}

/* -- Hero Brand -- */
.hero-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}

.hero-brand-logo {
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
    margin-bottom: 0.25rem;
}

.hero-brand-logo:hover {
    transform: scale(1.04);
}

/* Organization Title (Prominent, Large, and Distinctive) */
.hero-org-title {
    font-size: clamp(2rem, 4.2vw, 3.15rem);
    font-weight: 900;
    color: #ffffff;
    margin-top: 0.5rem;
    margin-bottom: 0;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.01em;
    line-height: 1.25;
    text-align: center;
    font-family: var(--font-heading, inherit);
}

/* Subtle Gradient Divider */
.hero-divider {
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(29, 159, 218, 0.8), #63d2ff, rgba(29, 159, 218, 0.8), transparent);
    margin: 1.15rem auto 0;
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(29, 159, 218, 0.5);
}

/* Light Subtitle / Tagline below name */
.hero-org-desc {
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 860px;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    margin: 1.15rem auto 2.25rem;
    letter-spacing: 0.01em;
}

/* -- Hero Values -- */
.hero-values {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-value {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    letter-spacing: 0.02em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.25s ease;
}

.hero-value:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(29, 159, 218, 0.6);
    transform: translateY(-2px);
}

.hero-value i {
    color: var(--accent-color, #1D9FDA);
    font-size: 0.82rem;
}

/* -- Hero Entrance Animations -- */
.hero-anim {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeInUp 0.8s ease-out forwards;
}

.hero-anim-1 {
    animation-delay: 0.2s;
}

.hero-anim-2 {
    animation-delay: 0.45s;
}

.hero-anim-3 {
    animation-delay: 0.7s;
}

@keyframes heroFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================================
   2. HERO SECTION - MOBILE RESPONSIVE
   ============================================================================ */
/* Mobile */
@media (max-width: 575px) {
    .hero {
        min-height: 85vh;
        background-attachment: scroll;
    }

    .heading-block-image {
        padding: 1.5rem 1rem !important;
        justify-content: center;
    }

    .hero-brand-logo {
        max-width: 175px;
    }

    .hero-org-title {
        font-size: 1.55rem;
        line-height: 1.28;
    }

    .hero-divider {
        width: 110px;
        margin: 0.75rem auto 0;
    }

    .hero-org-desc {
        font-size: 0.88rem;
        line-height: 1.55;
        margin: 0.75rem auto 1.35rem;
        max-width: 92%;
    }

    .hero-values {
        gap: 0.4rem;
        max-width: 95%;
    }

    .hero-value {
        font-size: 0.72rem;
        padding: 0.3rem 0.65rem;
    }

    /* Hero Numbers - Same as desktop, only size adjustments */
    .hero__numbers {
        padding: 0.5rem 0 !important;
        gap: 0 !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .number__item {
        flex-direction: column !important;
        gap: 0.25rem !important;
        flex: 0 0 33.33% !important;
        max-width: 33.33% !important;
        margin: 0 !important;
        padding: 0.75rem 0 !important;
    }

    /* Vertical dividers between columns */
    .number__item:nth-child(3n+1),
    .number__item:nth-child(3n+2) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    [dir="rtl"] .number__item:nth-child(3n+1),
    [dir="rtl"] .number__item:nth-child(3n+2) {
        border-right: none;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

    /* Horizontal divider between rows */
    .number__item:nth-child(-n+3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .number__value {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .number__text {
        font-size: 0.8rem !important;
        word-spacing: normal !important;
    }
}

/* ============================================================================
   3. HERO NUMBERS / STATS BAR
   ============================================================================ */
/* Tablet and Desktop */
@media (min-width: 576px) {
    .hero-wrapper {
        height: calc(100vh - 68px);
        overflow: hidden;
    }

    .hero-wrapper .hero {
        height: 100%;
    }
}

.hero__numbers {
    width: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(17, 34, 64, 0.95) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 0.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (min-width: 576px) and (max-width: 991px) {
    .hero__numbers {
        gap: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .number__item {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        flex-direction: column;
        margin: 0;
        padding: 1rem 0;
        position: relative;
    }

    /* Vertical dividers between columns */
    .number__item:nth-child(3n+1),
    .number__item:nth-child(3n+2) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    [dir="rtl"] .number__item:nth-child(3n+1),
    [dir="rtl"] .number__item:nth-child(3n+2) {
        border-right: none;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

    /* Horizontal divider between rows */
    .number__item:nth-child(-n+3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .number__item .number__text {
        word-spacing: normal !important;
    }
}

@media (min-width: 992px) {
    .hero__numbers {
        height: auto;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        padding: 1rem 1rem;
        gap: 0.5rem;
        background: linear-gradient(135deg, rgba(13, 27, 42, 0.85) 0%, rgba(17, 34, 64, 0.9) 100%);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(29, 159, 218, 0.2);
    }
}

.number__item {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 5;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
    will-change: transform, opacity;
}

.number__item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .number__item {
        gap: 0.75rem;
    }
}

@media (min-width: 992px) {
    .number__item {
        flex-direction: row;
        height: 50px;
        margin: 0 10px;
        gap: 0;
    }

    /* Vertical dividers between items */
    .number__item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -11px;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(255, 255, 255, 0.2);
    }

    [dir="rtl"] .number__item:not(:last-child)::after {
        right: auto;
        left: -11px;
    }
}

.number__text {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

.number__item .number__text {
    font-size: 0.85rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    padding: 0 6px;
    text-align: center;
    max-width: 130px;
}

@media (min-width: 576px) {
    .number__item .number__text {
        font-size: 0.88rem;
    }
}

@media (min-width: 992px) {
    .number__item .number__text {
        font-size: 0.84rem;
        max-width: 130px;
        text-align: start;
        padding: 0 10px;
    }
}

.number__value {
    background: linear-gradient(135deg, var(--accent-color) 0%, #4aa32e 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.number__unit {
    font-size: 0.6em;
    font-weight: 700;
    margin-left: 1px;
}

@media (min-width: 576px) {
    .number__value {
        width: 70px;
        height: 70px;
        border-radius: 35px;
        font-size: 1.75rem;
    }
}

@media (min-width: 992px) {
    .number__value {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        font-size: 1.5rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .number__item:hover .number__value {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(var(--accent-color-rgb), 0.5);
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .number__value {
        width: 75px;
        height: 75px;
        font-size: 1.65rem;
    }

    .number__item .number__text {
        font-size: 15px;
        width: 120px;
    }
}

/* Glow effect when counter completes */
@keyframes counterGlow {
    0% {
        box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(var(--accent-color-rgb), 0.6), 0 0 50px rgba(var(--accent-color-rgb), 0.2);
    }

    100% {
        box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.3);
    }
}

.number__value.counter-done {
    animation: counterGlow 0.8s ease-out;
}



/* RTL Support for Hero Numbers */
[dir="rtl"] .number__item .number__text {
    text-align: center;
}

@media (min-width: 992px) {
    [dir="rtl"] .number__item .number__text {
        text-align: right;
    }
}

/* Keep numbers in LTR for Arabic */
[dir="rtl"] .number__value {
    direction: ltr;
    font-family: 'Outfit', 'Poppins', sans-serif;
}

/* ============================================================================
   4. SCROLL INDICATOR / LEGACY
   ============================================================================ */


.slick-slider .slick-prev:before {
    content: "?";
    font-family: FontAwesome;
    font-size: 35px;
    color: #b7b6b6
}

.slick-slider .slick-next:before {
    content: "?";
    font-family: FontAwesome;
    font-size: 35px;
    color: #b7b6b6
}

@media (min-width: 992px) {
    .bleed {
        display: -ms-grid !important;
        display: grid !important;
        -ms-grid-columns: calc((100vw - 1400px) / 2) minmax(0, 1fr) minmax(0, 2fr) calc((100vw - 1400px) / 2);
        grid-template-columns: calc((100vw - 1400px) / 2) minmax(0, 1fr) minmax(0, 2fr) calc((100vw - 1400px) / 2);
        -ms-grid-rows: auto;
        grid-template-rows: auto
    }
}

/* ============================================================================
   5. ABOUT COMPANY SECTION
   ============================================================================ */
.about-company-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.about-company-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0.22;
}

.about-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(var(--main-color-rgb), 0.04) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(var(--accent-color-rgb), 0.03) 100%);
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(var(--main-color-rgb), 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--main-color-rgb), 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--main-color);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    bottom: -50px;
    left: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--main-color);
    top: 50%;
    left: -50px;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    bottom: 10%;
    right: 5%;
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.about-company-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-company-wrapper {
        grid-template-columns: 1fr 1.3fr;
        gap: 30px;
        align-items: stretch;
    }
}

.about-company-brand {
    text-align: center;
    height: 100%;
}

.brand-showcase-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 30px 22px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 0.35s ease;
}

.brand-showcase-card:hover {
    box-shadow: 0 12px 35px rgba(15, 36, 70, 0.08);
    border-color: rgba(29, 159, 218, 0.3);
}

.brand-letters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(4px, 1vw, 8px);
    margin-bottom: 6px;
}

.letter {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 4.5vw, 68px);
    font-weight: 900;
    color: #1D9FDA;
    position: relative;
    display: inline-block;
    text-shadow: 0 3px 14px rgba(29, 159, 218, 0.18);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.letter:hover {
    transform: translateY(-6px) scale(1.08);
    color: #0f2446;
    text-shadow: 0 0 20px rgba(15, 36, 70, 0.25);
}

/* Staggered animation */
.letter-o {
    animation: letterPop 0.6s ease-out 0.1s both;
}

.letter-r {
    animation: letterPop 0.6s ease-out 0.2s both;
}

.letter-i {
    animation: letterPop 0.6s ease-out 0.3s both;
}

.letter-e {
    animation: letterPop 0.6s ease-out 0.4s both;
}

.letter-n {
    animation: letterPop 0.6s ease-out 0.5s both;
}

.letter-t {
    animation: letterPop 0.6s ease-out 0.6s both;
}

@keyframes letterPop {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.6);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.brand-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.tagline-line {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #61B23A);
}

.tagline-line:last-child {
    background: linear-gradient(90deg, #61B23A, transparent);
}

.tagline-text {
    font-size: clamp(12.5px, 1.2vw, 14.5px);
    font-weight: 700;
    color: #61B23A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.brand-since {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(29, 159, 218, 0.08);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(29, 159, 218, 0.2);
    color: #0f2446;
    font-size: 13.5px;
    font-weight: 700;
}

.brand-since i {
    color: #1D9FDA;
    font-size: 13px;
}

/* Bottom Strategic Pillars Row (Full Width 3 Cards in 1 Row) */
.about-bottom-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .about-bottom-pillars {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 26px;
    }
}

@media (min-width: 992px) {
    .about-bottom-pillars {
        gap: 20px;
        margin-top: 28px;
    }
}

.bottom-pillar-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, #1D9FDA 0%, #1483b8 50%, #0d6b99 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 15px;
    padding: 16px 18px;
    box-shadow: 0 6px 22px rgba(29, 159, 218, 0.22);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.bottom-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #61B23A;
    opacity: 1;
    transition: all 0.35s ease;
}

.bottom-pillar-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #1791c7 0%, #0f75a6 50%, #095982 100%);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 14px 32px rgba(15, 36, 70, 0.28);
}

.bottom-pillar-card:hover::before {
    height: 5px;
    box-shadow: 0 0 12px rgba(97, 178, 58, 0.6);
}

.bottom-pillar-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #61B23A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(15, 36, 70, 0.12);
    transition: all 0.35s ease;
}

.bottom-pillar-card:hover .bottom-pillar-icon {
    background: #61B23A;
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.22);
}

.bottom-pillar-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bottom-pillar-title {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.bottom-pillar-text {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.94);
    margin: 0;
    line-height: 1.45;
}

/* Content Side */
.about-company-content {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 30px 28px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-lead-title {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 800;
    color: #1D9FDA;
    margin-top: 6px;
    margin-bottom: 12px;
    line-height: 1.35;
}

.highlight-term {
    font-weight: 700;
    color: #0f2446;
}

.highlight-link {
    font-weight: 700;
    color: #1D9FDA;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.highlight-link:hover {
    color: #0f2446;
}

.content-header {
    margin-bottom: 8px;
}

/* Company Slogan - Left Side */
.company-slogan {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
    padding: 15px 25px;
    background: rgba(var(--main-color-rgb), 0.04);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(var(--main-color-rgb), 0.1);
}

.slogan-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 700;
    color: #2c3e50;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.slogan-item:hover {
    color: var(--main-color);
    transform: scale(1.05);
}

.slogan-item i {
    color: var(--main-color);
    font-size: clamp(12px, 1.5vw, 18px);
    transition: all 0.3s ease;
}

.slogan-item:hover i {
    transform: scale(1.2);
}

.slogan-dot {
    color: var(--accent-color);
    font-size: clamp(12px, 1.8vw, 20px);
    font-weight: bold;
    opacity: 0.6;
}

@media (max-width: 576px) {
    .company-slogan {
        gap: 8px;
        padding: 12px 18px;
    }

    .slogan-item {
        gap: 4px;
    }
}

.content-description {
    font-size: 16px;
    line-height: 1.85;
    color: #4a5568;
    margin-bottom: 18px;
}

/* About Key Points / Highlights */
.about-key-points {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 24px;
    margin-top: 14px;
}

.about-key-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1e293b;
    background: rgba(29, 159, 218, 0.06);
    border: 1px solid rgba(29, 159, 218, 0.2);
    padding: 0.5rem 1.15rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: fit-content;
}

.about-key-item:hover {
    background: rgba(29, 159, 218, 0.14);
    border-color: rgba(29, 159, 218, 0.45);
    transform: translateX(-4px);
}

[dir="ltr"] .about-key-item:hover {
    transform: translateX(4px);
}

.about-key-item i {
    color: var(--accent-color, #1D9FDA);
    font-size: 1.05rem;
    width: 18px;
    text-align: center;
}

/* About CTA Button */
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1D9FDA 0%, #0E6A96 100%);
    color: #fff;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 16px rgba(29, 159, 218, 0.25);
}

.about-cta-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(29, 159, 218, 0.38);
    color: #fff;
}

.about-cta-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.about-cta-btn .btn-icon i {
    color: #1D9FDA;
    font-size: 11px;
}

.about-cta-btn:hover .btn-icon {
    transform: translateX(4px);
}

[dir="rtl"] .about-cta-btn:hover .btn-icon {
    transform: translateX(-4px);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .about-company-section {
        padding: 50px 0 40px;
    }

    .about-company-wrapper {
        gap: 18px;
    }

    .brand-showcase-card {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .brand-letters {
        gap: 4px;
        margin-bottom: 4px;
    }

    .letter {
        font-size: clamp(28px, 8vw, 40px);
    }

    .brand-tagline {
        margin-bottom: 12px;
        gap: 8px;
    }

    .tagline-line {
        width: 24px;
    }

    .tagline-text {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .brand-since {
        padding: 5px 14px;
        font-size: 12px;
    }

    .about-company-content {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .about-lead-title {
        font-size: 1.18rem;
        margin-top: 4px;
        margin-bottom: 10px;
    }

    .content-description {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .about-cta-btn {
        padding: 8px 18px;
        font-size: 13px;
        margin: 0;
    }

    .about-bottom-pillars {
        margin-top: 18px;
        gap: 12px;
    }

    .bottom-pillar-card {
        padding: 14px 16px;
        gap: 12px;
    }

    .bottom-pillar-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        border-radius: 9px;
    }

    .bottom-pillar-title {
        font-size: 0.95rem;
    }

    .bottom-pillar-text {
        font-size: 0.8rem;
    }
}

/* ============================================================================
   6. SECTORS SECTION - Background, Header & Quote
   ============================================================================ */
.sectors-section {
    padding: 70px 0 50px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

/* Warm gradient background */
.sectors-bg-warm {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(170deg,
            #fdf8f0 0%,
            #f5f0e8 30%,
            #eef5f9 70%,
            #f0f4f8 100%);
    z-index: 0;
}

.sectors-bg-warm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(97, 178, 58, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(29, 84, 147, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(29, 159, 218, 0.03) 0%, transparent 40%);
    z-index: 1;
}

.sectors-bg-warm::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2361B23A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 2;
}

/* Sectors Section: Header Spacing */
.sectors-section .section-header {
    position: relative;
    z-index: 3;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .sectors-section .section-header {
        margin-bottom: 1.25rem;
    }
}

/* Humanitarian Quote */
.sectors-quote {
    text-align: center;
    margin-top: 30px;
    padding: 10px 40px 0;
    position: relative;
    z-index: 3;
}

.sectors-quote-icon {
    font-size: 32px;
    color: var(--accent-color, #61B23A);
    opacity: 0.4;
    margin-bottom: 12px;
    display: block;
}

.sectors-quote p {
    font-size: 18px;
    font-weight: 500;
    color: var(--main-color);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    opacity: 0.75;
}

/* -- Sectors Swiper & Pagination -- */
.sectors-swiper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px 70px;
}

.sectors-swiper-pagination {
    position: absolute;
    bottom: 16px !important;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.sectors-swiper .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: var(--main-color, #0f2446);
    opacity: 0.22;
    margin: 0 5px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sectors-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 26px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--main-color, #0f2446), var(--accent-color));
}

/* Sectors Swiper Container & Navigation Arrows */
.sectors-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.sectors-swiper-prev,
.sectors-swiper-next {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1.5px solid rgba(15, 36, 70, 0.12);
    border-radius: 50%;
    color: var(--main-color, #0f2446);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    top: calc(50% - 30px);
    transform: translateY(-50%);
}

.sectors-swiper-prev::after,
.sectors-swiper-next::after {
    font-size: 15px;
    font-weight: 900;
}

.sectors-swiper-prev {
    left: -18px;
}

.sectors-swiper-next {
    right: -18px;
}

html[dir="rtl"] .sectors-swiper-prev {
    left: auto;
    right: -18px;
    transform: translateY(-50%) scaleX(-1);
}

html[dir="rtl"] .sectors-swiper-next {
    right: auto;
    left: -18px;
    transform: translateY(-50%) scaleX(-1);
}

.sectors-swiper-prev:hover,
.sectors-swiper-next:hover {
    background: var(--accent-color, #61B23A);
    border-color: var(--accent-color, #61B23A);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(97, 178, 58, 0.35);
}

@media (max-width: 991px) {
    .sectors-swiper-prev,
    .sectors-swiper-next {
        display: none !important;
    }
}

.sectors-swiper .sector-card {
    height: 100%;
}

/* -- Sector Cards - Humanitarian Design -- */
/* Sector Card - Humanitarian Design */
.sector-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 0 0 22px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 360px;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 2px solid rgba(97, 178, 58, 0.08);
    z-index: 3;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(97, 178, 58, 0.22), 0 8px 20px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, var(--accent-color, #61B23A) 0%, #4a9e2e 100%);
    border-color: var(--accent-color, #61B23A);
    color: #ffffff;
}

/* SECTORS - Card Styles */
.sector-card-image-wrapper {
    width: 100%;
    height: 155px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    z-index: 1;
}

.sector-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: ellipse(100% 60% at 50% 0%);
    transition: all 0.3s ease;
    transform-origin: top center;
}

.sector-card:hover .sector-card-image {
    clip-path: ellipse(100% 75% at 50% 0%);
    transform: scale(1.05);
}

.sector-card-icon-wrapper {
    width: 66px;
    height: 66px;
    margin: -74px 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sector-card:hover .sector-card-icon-wrapper {
    transform: scale(1.05);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sector-card-icon {
    width: 44px;
    height: 44px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.sector-card-icon-fa {
    font-size: 26px;
    color: var(--main-color);
    transition: all 0.3s ease;
}

.sector-card:hover .sector-card-icon-fa {
    color: var(--accent-color, #61B23A);
}

.sector-card-title {
    font-size: 19.5px;
    font-weight: 800;
    color: var(--main-color);
    text-shadow: none;
    margin: 0 16px 6px;
    line-height: 1.3;
    transition: color 0.3s ease;
    z-index: 2;
    position: relative;
}

.sector-card:hover .sector-card-title {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.sector-card-summary {
    font-size: 13.5px;
    color: #6c757d;
    line-height: 1.55;
    margin: 0 16px 16px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    transition: color 0.3s ease;
}

.sector-card:hover .sector-card-summary {
    color: rgba(255, 255, 255, 0.9);
}

.sector-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 22px;
    background: linear-gradient(135deg, var(--main-color) 0%, #1a3a6b 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin: 0 16px 0;
    z-index: 2;
}

.sector-card:hover .sector-card-btn {
    background: #ffffff;
    color: var(--accent-color, #61B23A);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.sector-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--main-color, #1D9FDA) 0%, var(--main-color-lighter, #45B0E5) 100%);
    transition: left 0.4s ease;
    z-index: 0;
}

[dir="rtl"] .sector-card-btn::before {
    left: auto;
    right: -100%;
    transition: right 0.4s ease;
}

.sector-card-btn span,
.sector-card-btn i {
    position: relative;
    z-index: 1;
}

.sector-card:hover .sector-card-btn {
    color: #ffffff !important;
}

.sector-card:hover .sector-card-btn::before {
    left: 0;
}

[dir="rtl"] .sector-card:hover .sector-card-btn::before {
    right: 0;
}

.sector-card-btn i {
    transition: transform 0.3s ease;
}

.sector-card:hover .sector-card-btn i {
    transform: translateX(5px);
}

[dir="rtl"] .sector-card:hover .sector-card-btn i {
    transform: translateX(-5px);
}

.sector-card-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    border: 2px solid #ffffff;
    background: transparent;
    transition: border-color 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.sector-card:hover .sector-card-border {
    border-color: var(--main-color);
}

@media (max-width: 767px) {
    .sector-card {
        min-height: 330px;
        border-radius: 20px;
        padding: 0 0 18px 0;
    }

    .sector-card-image-wrapper {
        height: 135px;
        margin-bottom: 0;
    }

    .sector-card-icon-wrapper {
        width: 58px;
        height: 58px;
        margin: -65px auto 10px;
    }

    .sector-card-icon-fa {
        font-size: 24px;
    }

    .sector-card-title {
        font-size: 17.5px;
        margin: 0 12px 6px;
    }

    .sector-card-summary {
        font-size: 12.8px;
        line-height: 1.5;
        margin: 0 12px 14px;
        min-height: 36px;
    }

    .sector-card-btn {
        padding: 8px 18px;
        font-size: 12.5px;
        margin: 0 12px 0;
    }

    .sectors-quote {
        margin-top: 20px;
        padding: 5px 15px 0;
    }

    .sectors-quote p {
        font-size: 15px;
        line-height: 1.65;
    }
}

/* ============================================================================
   7. HUMANITARIAN CTA BANNER
   ============================================================================ */
.humanitarian-cta-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.humanitarian-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.75) 0%, rgba(var(--accent-color-rgb), 0.6) 100%);
}

.humanitarian-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.humanitarian-cta-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.humanitarian-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.humanitarian-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 35px;
}

.humanitarian-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.humanitarian-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.humanitarian-btn-primary {
    background: #fff;
    color: var(--main-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.humanitarian-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    color: var(--main-color-darkest);
}

.humanitarian-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.humanitarian-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 575px) {
    .humanitarian-cta-section {
        padding: 50px 0;
    }

    .humanitarian-cta-title {
        font-size: 1.5rem;
    }

    .humanitarian-cta-actions {
        flex-direction: column;
    }

    .humanitarian-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================================
   8. BLOG SECTION
   ============================================================================ */
.blog-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), #ff6b6b, var(--main-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 0%;
    }
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--main-color), var(--accent-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(var(--main-color-rgb), 0.2);
}

.blog-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-darker) 100%);
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.15);
    filter: brightness(0.9);
}

.blog-card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-card-gradient {
    opacity: 1;
}

.blog-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffffff80;
    justify-content: center;
    color: var(--main-color);
    padding: 8px 15px;
    border-radius: 50px;
    border: 2px solid var(--main-color);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.4);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.blog-featured-badge i {
    font-size: 14px;
}

[dir="rtl"] .blog-featured-badge {
    right: auto;
    left: 15px;
}

.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #999;
    font-weight: 600;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-date i,
.blog-read-time i {
    color: var(--main-color);
    font-size: 14px;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.blog-card:hover .blog-card-title {
    color: var(--main-color);
    transform: translateX(5px);
}

[dir="rtl"] .blog-card:hover .blog-card-title {
    transform: translateX(-5px);
}

.blog-card-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--main-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    padding: 12px 0;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-read-more::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--main-color), var(--accent-color));
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-read-more::before {
    width: 100%;
}

.read-more-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.blog-card:hover .read-more-icon {
    transform: translateX(8px) rotate(360deg);
    background: linear-gradient(135deg, var(--main-color), var(--accent-color));
}

[dir="rtl"] .blog-card:hover .read-more-icon {
    transform: translateX(-8px) rotate(-360deg);
}

.btn-visit-blog {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--main-color);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.35s ease;
    border: 2px solid var(--main-color);
}

.btn-visit-blog:hover {
    background: var(--main-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(var(--main-color-rgb), 0.35);
}

.btn-visit-blog i {
    transition: transform 0.3s ease;
}

.btn-visit-blog:hover i {
    transform: translateX(5px);
}

[dir="rtl"] .btn-visit-blog:hover i {
    transform: translateX(-5px);
}

/* Simple View Details Button */
.btn-view-details {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--main-color);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-view-details .read-more-text {
    transition: all 0.3s ease;
}

.btn-view-details .read-more-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-view-details .read-more-icon i {
    font-size: 12px;
}

.h-metodo__item:hover .btn-view-details .read-more-text {
    color: var(--accent-color, var(--accent-color));
}

.h-metodo__item:hover .btn-view-details .read-more-icon {
    background: var(--accent-color, var(--accent-color));
    transform: translateX(5px);
}

[dir="rtl"] .h-metodo__item:hover .btn-view-details .read-more-icon {
    transform: translateX(-5px);
}

/* Services item hover for btn-view-details */
.services-item .btn-view-details {
    background: var(--main-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.services-item .btn-view-details .read-more-text {
    color: #fff;
}

.services-item .btn-view-details .read-more-icon {
    background: var(--accent-color);
    color: var(--main-color);
}

.services-item:hover .btn-view-details {
    background: var(--accent-color);
    border-left-color: var(--main-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.3);
}

.services-item:hover .btn-view-details .read-more-text {
    color: var(--main-color);
}

.services-item:hover .btn-view-details .read-more-icon {
    background: var(--main-color);
    color: #fff;
    transform: translateX(5px);
}

[dir="rtl"] .services-item .btn-view-details {
    border-left: none;
    border-right: 3px solid var(--accent-color);
}

[dir="rtl"] .services-item:hover .btn-view-details {
    border-right-color: var(--main-color);
}

[dir="rtl"] .services-item:hover .btn-view-details .read-more-icon {
    transform: translateX(-5px);
}

@media (max-width: 992px) {
    .blog-card-image-wrapper {
        height: 220px;
    }

    .blog-card-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .blog-card-image-wrapper {
        height: 200px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .blog-card-excerpt {
        font-size: 14px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .blog-card-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .blog-card {
        margin-bottom: 20px;
    }

    .blog-card-image-wrapper {
        height: 180px;
    }

    .btn-visit-blog {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* ============================================================================
   9. PROJECTS SHOWCASE SECTION
   ============================================================================ */
/* Projects Showcase Section */
.projects-showcase-section {
    position: relative;
    overflow: hidden;
}

/* Section Decorative Background */
.section-decor-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Subtle dot pattern */
.section-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(var(--accent-color-rgb), 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Soft accent glows */
.section-glow {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(60px);
}

.glow-top {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: var(--accent-color);
}

.glow-bottom {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: -80px;
    background: var(--main-color);
}

/* Section Header */
.projects-showcase-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.projects-showcase-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--main-color);
    color: var(--accent-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.projects-showcase-header .header-badge i {
    font-size: 16px;
}

.projects-showcase-header .showcase-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--main-color);
    margin: 0 0 15px;
    text-transform: uppercase;
}

.projects-showcase-header .showcase-subtitle {
    font-size: 1.1rem;
    color: var(--color-neutral-gray);
    max-width: 600px;
    margin: 0 auto 25px;
}

.header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-line .line-segment {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.header-line i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

/* Projects Portfolio Grid */
.projects-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Portfolio Card */
.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: cardFadeIn 0.6s ease-out calc(var(--card-index) * 0.15s) both;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(var(--main-color-rgb), 0.2);
}

.portfolio-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Image Container */
.portfolio-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.portfolio-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.1);
}

/* Overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(var(--main-color-rgb), 0) 0%,
            rgba(var(--main-color-rgb), 0.4) 50%,
            rgba(var(--main-color-rgb), 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-card:hover .overlay-content {
    transform: translateY(0);
}

.project-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(var(--accent-color-rgb), 0.3);
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.project-excerpt {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--main-color);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-project-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.view-project-btn:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 6px 25px rgba(var(--accent-color-rgb), 0.5);
}

.view-project-btn:hover i {
    transform: translateX(4px);
}

[dir="rtl"] .view-project-btn:hover i {
    transform: translateX(-4px);
}

/* Card Hover Overlay */
.card-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.08), transparent);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .card-hover-overlay {
    opacity: 1;
}

/* Featured Badge */
.featured-star-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    box-shadow: 0 5px 20px rgba(var(--accent-color-rgb), 0.5);
    z-index: 3;
    animation: badgePulse 2s ease-in-out infinite;
}

[dir="rtl"] .featured-star-badge {
    right: auto;
    left: 20px;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(var(--accent-color-rgb), 0.5);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(var(--accent-color-rgb), 0.7);
    }
}

/* Card Footer */
.portfolio-card-footer {
    padding: 25px;
    background: #fff;
    border-top: 3px solid var(--accent-color);
}

.project-info {
    flex: 1;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--main-color);
    margin: 0 0 8px;
    text-align: center;
    transition: color 0.3s ease;
}

.portfolio-card:hover .project-title {
    color: var(--accent-color);
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: var(--color-neutral-gray);
}

.meta-item i {
    color: var(--main-color);
    font-size: 0.9rem;
}

.meta-sector-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(var(--main-color-rgb), 0.08);
    color: var(--main-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 600;
}

.meta-sector-badge i {
    font-size: 0.8rem;
    color: var(--accent-color);
}



/* CTA Section */
.projects-showcase-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.explore-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--main-color);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.35s ease;
    border: 2px solid var(--main-color);
}

.explore-all-btn:hover {
    background: var(--main-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(var(--main-color-rgb), 0.35);
}

.explore-all-btn i {
    transition: transform 0.3s ease;
}

.explore-all-btn:hover i {
    transform: translateX(5px);
}

[dir="rtl"] .explore-all-btn:hover i {
    transform: translateX(-5px);
}

.total-projects-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(var(--accent-color-rgb), 0.15);
    border: 2px solid var(--accent-color);
    padding: 15px 25px;
    border-radius: 15px;
}

.total-projects-badge .count {
    font-size: 2rem;
    font-weight: 900;
    color: var(--main-color);
    line-height: 1;
}

.total-projects-badge .label {
    font-size: 0.95rem;
    color: var(--color-neutral-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
    .projects-showcase-section {
        padding: 80px 0;
    }

    .projects-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .portfolio-image-container {
        height: 280px;
    }

    .projects-showcase-cta {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .projects-showcase-section {
        padding: 60px 0;
    }

    .projects-showcase-header {
        margin-bottom: 40px;
    }

    .projects-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .portfolio-image-container {
        height: 260px;
    }

    .portfolio-card-footer {
        padding: 20px;
    }

    .project-title {
        font-size: 1.1rem;
    }

    .explore-all-btn {
        padding: 15px 30px;
        font-size: 0.95rem;
    }
}

/* ============================================================================
   10. GALLERY MARQUEE
   ============================================================================ */
.gallery-marquee-section {
    margin: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.gallery-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Gradient fade edges */
}

.gallery-marquee::before,
.gallery-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.gallery-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
}

.gallery-marquee::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
}

.gallery-marquee-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: gallery-marquee-scroll 40s linear infinite;
}

.gallery-marquee:hover .gallery-marquee-track {
    animation-play-state: paused;
}

/* RTL: Reverse animation direction */
[dir="rtl"] .gallery-marquee-track {
    animation-name: gallery-marquee-scroll-rtl;
}

@keyframes gallery-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes gallery-marquee-scroll-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

.gallery-marquee-item {
    flex-shrink: 0;
    text-decoration: none;
    display: block;
}

.gallery-image-wrapper {
    position: relative;
    width: 280px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-marquee-item:hover .gallery-image-wrapper {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(var(--main-color-rgb), 0.25);
}

.gallery-marquee-item:hover .gallery-image-wrapper img {
    transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            transparent 30%,
            rgba(var(--main-color-rgb), 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-marquee-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-marquee-item:hover .gallery-title {
    transform: translateY(0);
}

.gallery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--main-color);
    font-size: 0.95rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.gallery-marquee-item:hover .gallery-icon {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-marquee-section {
        margin: 50px 0 30px;
    }

    .gallery-image-wrapper {
        width: 240px;
        height: 160px;
    }

    .gallery-marquee::before,
    .gallery-marquee::after {
        width: 50px;
    }

    .gallery-marquee-track {
        animation-duration: 30s;
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .gallery-marquee-section {
        margin: 40px 0 25px;
    }

    .gallery-image-wrapper {
        width: 200px;
        height: 140px;
        border-radius: 10px;
    }

    .gallery-marquee::before,
    .gallery-marquee::after {
        width: 30px;
    }

    .gallery-marquee-track {
        animation-duration: 25s;
        gap: 10px;
    }

    .gallery-title {
        font-size: 0.8rem;
    }

    .gallery-icon {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .gallery-overlay {
        padding: 15px 10px;
    }
}

/* ============================================================================
   STRATEGIC PARTNERS SECTION
   ============================================================================ */
.partners-section {
    padding: 4.5rem 0 3.5rem;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(15, 36, 70, 0.05);
    border-bottom: 1px solid rgba(15, 36, 70, 0.05);
}

.partners-ticker-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
    margin: 2.25rem 0 1rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-ticker-track {
    display: flex;
    width: max-content;
    animation: partnersMarquee 35s linear infinite;
    will-change: transform;
}

.partners-ticker-group {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem;
    flex-shrink: 0;
}

[dir="rtl"] .partners-ticker-group,
html[dir="rtl"] .partners-ticker-group {
    padding-right: 0;
    padding-left: 1.5rem;
}

[dir="rtl"] .partners-ticker-track,
html[dir="rtl"] .partners-ticker-track {
    animation-name: partnersMarqueeRtl;
}

.partners-ticker-container:hover .partners-ticker-track {
    animation-play-state: paused;
}

@keyframes partnersMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes partnersMarqueeRtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.partner-logo-card {
    width: 190px;
    height: 90px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 15px rgba(15, 36, 70, 0.04);
    border: 1px solid rgba(15, 36, 70, 0.08);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    filter: grayscale(85%) opacity(0.85);
}

.partner-logo-card:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(29, 159, 218, 0.12);
    border-color: rgba(29, 159, 218, 0.4);
}

.partner-logo-card img {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@media (max-width: 767px) {
    .partners-section {
        padding: 3rem 0 2.5rem;
    }

    .partners-ticker-container {
        padding: 1rem 0;
        margin: 1.5rem 0 0.5rem;
    }

    .partner-logo-card {
        width: 140px;
        height: 72px;
        padding: 0.6rem 0.85rem;
        border-radius: 12px;
    }

    .partner-logo-card img {
        max-height: 34px;
    }
}

