/* ===================================
   CELLNAMA Professional Homepage
   Inspired by CELLNAMA Biosystems Design
   Digital Pathology Solutions
   =================================== */

/* ===================================
   CSS Variables - CELLNAMA Color Palette
   =================================== */
:root {
    /* CELLNAMA Brand Colors */
    --cellnama-red: #E30613;
    --cellnama-dark-red: #B10510;
    --cellnama-blue: #003C7D;
    --cellnama-light-blue: #0066CC;
    --cellnama-dark-blue: #002654;
    /* CellNama Accent Colors */
    --cellnama-primary: #0066CC;
    --cellnama-secondary: #003C7D;
    --cellnama-accent: #E30613;
    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-off-white: #F8F9FA;
    --color-light-gray: #E5E7EB;
    --color-gray: #6B7280;
    --color-dark-gray: #374151;
    --color-black: #111827;
    /* Text Colors */
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --text-light: #9CA3AF;
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-dark: #1F2937;
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* ===================================
   Global Reset & Typography
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 400;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    padding-top: 0;
}

/* Typography - Vazirmatn Font Weights */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 700;
    /* Bold for all headings */
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    /* Extra bold for h1 */
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    /* Semi-bold for h4 */
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 400;
    /* Regular for body text */
    line-height: 1.7;
}

strong,
b {
    font-weight: 700;
}

/* Prevent horizontal overflow from all sections */
section {
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   NOTE: Header styles moved to cellnama-header.css (loaded globally in _Layout.cshtml)
   =================================== */

/* ===================================
   STICKY SECTION NAVIGATION (Cellnama Style)
   =================================== */
.section-nav-sticky {
    position: relative;
    background: #ffffff;
    z-index: 9000;
    overflow: hidden;
    margin-top: 0;
}

.section-nav-sticky.is-stuck {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    border-radius: 0;
}

.section-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 40px;
}

.section-nav-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-nav-item {
    margin: 0;
    flex: 1;
    max-width: 280px;
}

.section-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: #ffffff;
    color: #4B5563;
    text-decoration: none;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: 100%;
    min-height: 52px;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
}

.section-nav-link:hover {
    background: #F9FAFB;
    color: var(--cellnama-dark-blue);
    border-color: var(--cellnama-light-blue);
}

.section-nav-link.active {
    background: var(--cellnama-red);
    color: #ffffff;
    border-color: var(--cellnama-red);
}

.section-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #E30613;
    border-radius: 2px;
}

/* ===================================
   HERO VIDEO SECTION (CELLNAMA Style)
   =================================== */
.hero-video-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    height: 85vh;
    max-height: 900px;
    overflow: hidden;
    background: var(--cellnama-dark-blue);
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    min-height: calc(100% + 100px);
    z-index: 1;
    will-change: transform;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    backface-visibility: hidden;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    min-height: calc(100% + 100px);
    background: linear-gradient(135deg, rgba(0, 60, 125, 0.4) 0%, rgba(0, 102, 204, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-video-content {
    position: relative;
    z-index: 3;
    padding: 0 15px;
}

.hero-video-text {
    max-width: 700px;
}

.hero-video-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-video-title .text-highlight {
    color: var(--cellnama-red);
    position: relative;
    display: inline-block;
}

.hero-video-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.hero-video-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Hero CTA Buttons - Inside Hero Area */
.hero-cta-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    position: relative;
    z-index: 10;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    min-width: 180px;
    margin: 0;
}

.btn-hero-primary {
    background: var(--cellnama-red);
    color: #ffffff;
    border: 2px solid var(--cellnama-red);
    box-shadow: 0 2px 8px rgba(227, 6, 19, 0.3);
}

.btn-hero-primary:hover {
    background: var(--cellnama-dark-red);
    border-color: var(--cellnama-dark-red);
    box-shadow: 0 4px 16px rgba(227, 6, 19, 0.5);
    transform: translateY(-1px);
    color: #ffffff;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    color: #ffffff;
}

.btn-hero-text {
    display: inline-block;
}

.btn-hero-primary i,
.btn-hero-secondary i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateY(2px);
}

.btn-hero-secondary:hover i {
    transform: scale(1.1);
}

/* Curved Bottom Edge (CELLNAMA Style) */
.hero-curve-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 4;
}

.hero-curve-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-curve-bottom .shape-fill {
    fill: var(--color-white);
}

/* ===================================
   BUTTONS (CELLNAMA Style)
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary-cellnama {
    background: var(--cellnama-red);
    color: var(--color-white);
    border-color: var(--cellnama-red);
}

.btn-primary-cellnama:hover {
    background: var(--cellnama-dark-red);
    border-color: var(--cellnama-dark-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

.btn-outline-cellnama {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-cellnama:hover {
    background: var(--color-white);
    color: var(--cellnama-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-light-cellnama {
    background: var(--color-white);
    color: var(--cellnama-blue);
    border-color: var(--color-white);
}

.btn-light-cellnama:hover {
    background: var(--cellnama-red);
    color: var(--color-white);
    border-color: var(--cellnama-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   FEATURED NEW PRODUCT SECTION
   =================================== */
.featured-new-product-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.featured-new-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--cellnama-red), #FF4D5A);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.featured-new-product-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.brand-name {
    color: var(--text-primary);
}

.brand-highlight {
    color: var(--cellnama-red);
}

.product-model {
    display: block;
    color: var(--cellnama-blue);
    font-size: 3rem;
    margin-top: 0.5rem;
}

.featured-new-product-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.featured-new-product-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.featured-new-product-features {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
}

.featured-new-product-features li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-light-gray);
    transition: all var(--transition-base);
}

.featured-new-product-features li:hover {
    padding-right: 1rem;
    background: rgba(0, 102, 204, 0.03);
    border-radius: var(--radius-md);
}

.featured-new-product-features li i {
    font-size: 1.75rem;
    color: var(--cellnama-blue);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.featured-new-product-features strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.featured-new-product-features span {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Product Image Carousel */
.featured-new-product-carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.product-image-carousel {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 100%;
}

.product-image-carousel .carousel-cell {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    padding: 2rem;
    max-width: 100%;
}

.product-image-carousel .carousel-cell img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

/* Flickity Customization */
.flickity-viewport {
    overflow: hidden;
    max-width: 100%;
}

.flickity-slider {
    max-width: 100%;
}

.flickity-button {
    background: var(--color-white);
    border: none;
    color: var(--cellnama-blue);
    box-shadow: var(--shadow-md);
}

.flickity-button:hover {
    background: var(--cellnama-red);
    color: var(--color-white);
}

.flickity-page-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 60, 125, 0.3);
}

.flickity-page-dots .dot.is-selected {
    background: var(--cellnama-red);
    width: 32px;
}

/* ===================================
   CELLNAMA-STYLE FEATURED PRODUCT SECTION
   =================================== */
.cellnama-featured-product-section {
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
}

.cellnama-featured-container {
    display: flex;
    align-items: stretch;
    min-height: 700px;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.cellnama-content-panel {
    clip-path: url(#borderShape);
    -webkit-clip-path: url(#borderShape);
}

.cellnama-product-image-side {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cellnama-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.cellnama-content-inner {
    width: 100%;
    height: 100%;
    padding: 4.75rem 5rem 4.75rem 6.75rem;
    color: #ffffff;
    direction: rtl;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    background: linear-gradient(135deg, #003C7D 0%, #0066CC 100%);
}

.cellnama-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 0.3rem 0.75rem;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    margin: 0 0 0.75rem auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cellnama-product-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cellnama-product-model {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.cellnama-product-tagline {
    font-size: 1.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cellnama-feature-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.cellnama-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

.cellnama-feature-list li::before {
    content: "✓";
    font-weight: 700;
    color: #E30613;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cellnama-discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #E30613;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
}

.cellnama-discover-btn:hover {
    background: #B10510;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(227, 6, 19, 0.5);
    color: #ffffff;
}

.cellnama-discover-btn i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.cellnama-discover-btn:hover i {
    transform: translateX(-4px);
}

/* Responsive Design for Cellnama Featured Section */
@media (max-width: 1400px) {
    .cellnama-featured-container {
        min-height: 600px;
    }

    .cellnama-content-inner {
        padding: 4.75rem 5rem 4.75rem 6.75rem;
    }

    .cellnama-product-heading {
        font-size: 1.6rem;
    }

    .cellnama-product-model {
        font-size: 1.15rem;
    }

    .cellnama-product-tagline {
        font-size: 0.85rem;
    }

    .cellnama-feature-list li {
        font-size: 0.75rem;
    }

    .cellnama-discover-btn {
        font-size: 0.7rem;
        padding: 0.55rem 1.35rem;
    }
}

@media (max-width: 1200px) {
    .cellnama-featured-container {
        min-height: 550px;
    }

    .cellnama-product-image-side {
        flex: 0 0 42%;
        max-width: 42%;
        padding: 1.5rem;
    }

    .cellnama-content-inner {
        padding: 4.75rem 5rem 4.75rem 6.75rem;
    }

    .cellnama-product-heading {
        font-size: 1.4rem;
    }

    .cellnama-product-model {
        font-size: 1rem;
    }

    .cellnama-product-tagline {
        font-size: 0.8rem;
    }

    .cellnama-feature-list li {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }

    .cellnama-discover-btn {
        font-size: 0.65rem;
        padding: 0.5rem 1.2rem;
    }

    .cellnama-product-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.65rem;
    }

    /* Remove clip-path for better responsiveness */
    .cellnama-content-panel {
        clip-path: none !important;
        -webkit-clip-path: none !important;
    }

    .cellnama-content-inner {
        border-radius: 20px;
        overflow: hidden;
    }
}

@media (max-width: 992px) {
    .cellnama-featured-container {
        flex-direction: column;
        min-height: auto;
    }

    .cellnama-content-panel {
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
        order: 2;
        -webkit-mask-image: none;
        mask-image: none;
        clip-path: none !important;
        -webkit-clip-path: none !important;
    }

    .cellnama-product-image-side {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: auto;
        order: 1;
        padding: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cellnama-product-image {
        max-width: 60%;
        width: 60%;
        height: auto;
        object-fit: contain;
    }

    .cellnama-content-inner {
        padding: 2.5rem 2rem;
        min-height: auto;
        border-radius: 20px;
        overflow: hidden;
    }

    .cellnama-product-heading {
        font-size: 1.6rem;
    }

    .cellnama-product-model {
        font-size: 1.2rem;
    }

    .cellnama-product-tagline {
        font-size: 1.6rem;
    }

    .cellnama-feature-list {
        margin-bottom: 1.5rem;
    }

    .cellnama-feature-list li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .cellnama-discover-btn {
        font-size: 0.75rem;
        padding: 0.6rem 1.5rem;
    }

    .cellnama-product-badge {
        margin: 0 0 1rem auto;
    }
}

@media (max-width: 768px) {
    .cellnama-product-image-side {
        min-height: 300px;
        padding: 1.5rem;
    }

    .cellnama-content-inner {
        padding: 1.75rem 1.35rem;
        border-radius: 20px;
        overflow: hidden;
    }

    .cellnama-content-panel {
        clip-path: none !important;
        -webkit-clip-path: none !important;
    }

    .cellnama-product-heading {
        font-size: 1.35rem;
    }

    .cellnama-product-model {
        font-size: 1rem;
    }

    .cellnama-product-tagline {
        font-size: 0.8rem;
    }

    .cellnama-feature-list li {
        font-size: 0.7rem;
    }

    .cellnama-discover-btn {
        padding: 0.55rem 1.35rem;
        font-size: 0.7rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cellnama-product-image-side {
        min-height: 250px;
        padding: 1rem;
    }

    .cellnama-content-inner {
        padding: 1.35rem 1.1rem;
        border-radius: 20px;
        overflow: hidden;
    }

    .cellnama-content-panel {
        clip-path: none !important;
        -webkit-clip-path: none !important;
    }

    .cellnama-product-heading {
        font-size: 1.2rem;
    }

    .cellnama-product-model {
        font-size: 0.95rem;
    }

    .cellnama-product-tagline {
        font-size: 0.75rem;
    }

    .cellnama-feature-list {
        margin: 0.75rem 0;
    }

    .cellnama-feature-list li {
        font-size: 0.65rem;
        padding: 0.3rem 0;
    }

    .cellnama-discover-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.65rem;
    }
}

/* ===================================
   THREE PILLAR SECTION (CELLNAMA Style)
   =================================== */
.three-pillar-section {
    padding: 80px 0;
    background: transparent;
}

.section-header-cellnama {
    margin-bottom: 4rem;
}

.section-title-cellnama {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description-cellnama {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.pillar-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.pillar-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.pillar-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
    display: block;
}

.pillar-card:hover .pillar-card-image img {
    transform: scale(1.1);
}

.pillar-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 60, 125, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pillar-card:hover .pillar-card-overlay {
    opacity: 1;
}

.pillar-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.pillar-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(16%) sepia(97%) saturate(1822%) hue-rotate(196deg) brightness(92%) contrast(101%);
}

.pillar-card-body {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pillar-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.pillar-card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.pillar-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pillar-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pillar-features-list li i {
    color: var(--cellnama-blue);
    font-size: 1.125rem;
}

.pillar-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cellnama-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    margin-top: auto;
}

.pillar-card-link:hover {
    gap: 1rem;
    color: var(--cellnama-red);
}

/* ===================================
   CAROUSEL FOR THREE PILLARS - CLEAN SLATE
   =================================== */

.hp-carousel-card {
    width: 50%;
    max-width: 800px;
    margin: 0 auto;
    margin-left: -5%;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: filter var(--transition-base);
}

.hp-carousel-card.is-selected img {
    filter: opacity(100%);
}

.hp-carousel-card:first-child {
    margin-left: 0;
}

.hp-carousel--media-image {
    position: relative;
    width: 140%;
    height: 35rem;
    overflow: visible;
    background: transparent;
    padding: 1rem 2rem;
    margin-left: -10%;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hp-carousel--media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: white;
    position: relative;
    filter: brightness(0.7) opacity(30%);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Clip-path mask from Clip-Path.svg file */
.image-mask--cellnama {
    clip-path: url(#borderShape);
    -webkit-clip-path: url(#borderShape);
    background: white;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

/* Clip-path mask for right-side images (from Clip-path-right.svg) */
.image-mask--cellnama-right {
    clip-path: url(#borderShapeRight);
    -webkit-clip-path: url(#borderShapeRight);
    background: white;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.ai-image-adjust {
    /* Empty for now, keeping for future adjustments */
}

/* Overlay Title on Image - Top Left like CellNama with Curved Background */
.hp-carousel--overlay-title {
    position: absolute;
    top: 25%;
    left: 6%;
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: right;
    z-index: 2;
    direction: rtl;
    line-height: 1.3;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 0 50px 50px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    max-width: fit-content;
}

.hp-carousel--overlay-title:hover {
    padding-right: 4.5rem;
    padding-left: 4rem;
    background: rgba(255, 255, 255, 1);
    transform: translateX(10px) scaleX(1.1);
}

.hp-carousel--bottom {
    text-align: center;
    padding: 0 4rem 0 1rem;
}

.hp-carousel--bottom p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    direction: rtl;
}

/* Icon Navigation */
.carousel-nav-cellnama {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hp-slider-custom-nav {
    display: inline-flex !important;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    width: 100%;
}

.icon-nav-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-nav-item div {
    margin-bottom: 0.75rem;
}

.icon-nav-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.4);
    transition: all 0.4s ease;
}

.icon-nav-item span {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.4s ease;
    opacity: 0.6;
}

/* Active/Selected State - Synced with carousel */
.icon-nav-item.is-selected img,
.icon-nav-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15);
}

.icon-nav-item.is-selected span,
.icon-nav-item:hover span {
    color: var(--cellnama-blue);
    opacity: 1;
    font-weight: 700;
}

/* Flickity carousel card positioning */
.hp-carousel-card {
    position: relative;
}


/* Navigation Carousel - Force Center */
.carousel-nav-cellnama {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hp-slider-custom-nav .flickity-viewport {
    overflow: visible;
    width: 100% !important;
}

.hp-slider-custom-nav .flickity-slider {
    display: flex !important;
    align-items: center;
    justify-content: center;
    /* Removed left and transform !important to allow Flickity navigation to work */
}

/* Navigation Cell Wrapper */
.hp-slider-custom-nav .icon-nav-item {
    width: 150px;
    margin: 0 1.5rem;
    /* Removed left and transform !important to allow Flickity to position items */
}

/* Hide Flickity arrows on both carousels */
.hp-carousel .flickity-button,
.hp-slider-custom-nav .flickity-button {
    display: none !important;
}

/* Responsive Design for Carousel */
@media (max-width: 992px) {

    /* Solutions section - one slide at a time */
    .hp-carousel .carousel-cell {
        width: 100% !important;
        margin: 0 !important;
        min-width: 100%;
    }

    /* Removed transform: none !important to allow Flickity to slide properly on mobile */

    .hp-carousel-card {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        margin-left: 0 !important;
    }

    .hp-carousel--media-image {
        height: 400px;
        width: 100%;
        margin-left: 0;
        padding: 1rem;
    }

    /* Force Flickity to show one slide */
    #integratedsolutions .hp-carousel .carousel-cell {
        width: 100% !important;
        /* Removed left: 0 !important to allow Flickity positioning */
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .hp-carousel--header a {
        font-size: 1.3rem;
    }

    .hp-slider-custom-nav .icon-nav-item {
        width: 120px;
        margin: 0 1rem;
    }

    .icon-nav-item img {
        width: 60px;
        height: 60px;
    }

    /* Remove clip-paths at tablet size for better responsiveness */
    .image-mask--cellnama,
    .image-mask--cellnama-right {
        clip-path: none !important;
        -webkit-clip-path: none !important;
        border-radius: 12px;
        overflow: hidden;
    }

    .hp-carousel--media-image {
        border-radius: 12px;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .hp-carousel-card {
        max-width: 100%;
        width: 100%;
        margin-left: 0 !important;
    }

    .hp-carousel--media-image {
        height: 400px;
        width: 100%;
        margin-left: 0;
        padding: 1rem;
    }

    .hp-carousel--media-icon img {
        width: 60px;
        height: 60px;
    }

    .hp-carousel--header a {
        font-size: 1.2rem;
    }

    .hp-slider-custom-nav .icon-nav-item {
        width: 100px;
        margin: 0 0.5rem;
    }

    .icon-nav-item img {
        width: 50px;
        height: 50px;
    }

    .icon-nav-item span {
        font-size: 0.85rem;
    }

    /* Remove clip-paths at mobile size for better responsiveness */
    .image-mask--cellnama,
    .image-mask--cellnama-right {
        clip-path: none !important;
        -webkit-clip-path: none !important;
        border-radius: 12px;
        overflow: hidden;
    }

    .hp-carousel--media-image {
        border-radius: 12px;
        overflow: hidden;
    }

    .why-cellnama-image {
        border-radius: 12px;
        overflow: hidden;
    }
}

@media (max-width: 576px) {
    .hp-carousel-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
        margin-left: 0 !important;
    }

    .hp-carousel--media-image {
        height: 300px;
        width: 100%;
        margin-left: 0;
        padding: 0.5rem;
    }

    /* Remove clip-paths at smallest screens for better responsiveness */
    .image-mask--cellnama,
    .image-mask--cellnama-right {
        clip-path: none !important;
        -webkit-clip-path: none !important;
        border-radius: 12px;
        overflow: hidden;
    }

    .hp-carousel--media-image {
        border-radius: 12px;
        overflow: hidden;
    }

    .why-cellnama-image {
        border-radius: 12px;
        overflow: hidden;
    }

    .why-cellnama-image img {
        border-radius: 12px;
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 80px 0;
    background: transparent;
}

.testimonials-carousel-wrapper {
    margin-top: 3rem;
    max-width: 100%;
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-testimonials {
    flex: 1;
    overflow: hidden;
}

/* Custom Arrow Buttons for Testimonials */
.testimonials-arrow {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1171ec 0%, #0d5bbd 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(17, 113, 236, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonials-arrow:hover {
    background: linear-gradient(135deg, #ed0874 0%, #c4065d 100%);
    box-shadow: 0 6px 20px rgba(237, 8, 116, 0.4);
    transform: scale(1.1);
}

.testimonials-arrow:active {
    transform: scale(0.95);
}

.testimonials-arrow i {
    font-size: 18px;
}

.carousel-testimonials .carousel-cell {
    width: 400px;
    margin: 0 15px;
}

/* Responsive testimonials carousel */
@media (max-width: 992px) {
    .carousel-testimonials .carousel-cell {
        width: 100%;
        margin: 0;
    }

    .testimonials-carousel-wrapper {
        gap: 10px;
    }

    .testimonials-arrow {
        width: 42px;
        height: 42px;
    }

    .testimonials-arrow i {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .carousel-testimonials .carousel-cell {
        width: 100%;
        margin: 0;
    }

    .testimonials-carousel-wrapper {
        gap: 8px;
    }

    .testimonials-arrow {
        width: 38px;
        height: 38px;
    }

    .testimonials-arrow i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .carousel-testimonials .carousel-cell {
        width: 100%;
        margin: 0;
    }

    .testimonials-carousel-wrapper {
        gap: 6px;
    }

    .testimonials-arrow {
        width: 32px;
        height: 32px;
    }

    .testimonials-arrow i {
        font-size: 12px;
    }
}

.testimonial-item {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-link {
    display: block;
    margin-bottom: 1rem;
    text-decoration: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.testimonial-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
    transition: transform var(--transition-base);
}

.testimonial-link:hover .testimonial-img {
    transform: scale(1.05);
}

.testimonial-info {
    text-align: right;
    direction: rtl;
    flex-grow: 1;
}

.testimonial-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cellnama-blue);
    margin-bottom: 0.5rem;
}

.testimonial-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.author-company {
    font-size: 0.875rem;
    color: var(--cellnama-blue);
    font-weight: 600;
}

/* ===================================
   VALUE PROPOSITION SECTION
   =================================== */
.value-proposition-section {
    padding: 80px 0;
    background: transparent;
}

.value-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-slow);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.05), transparent);
    transition: left var(--transition-slow);
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: var(--color-white);
}

.value-card-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cellnama-blue), var(--cellnama-light-blue));
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 1.5rem;
}

.value-card-icon {
    font-size: 3.5rem;
    color: var(--cellnama-red);
    margin-bottom: 1.5rem;
}

.value-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.value-card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.value-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cellnama-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.value-card-link:hover {
    gap: 1rem;
    color: var(--cellnama-red);
}

/* Why CELLNAMA Carousel Styles */
.why-cellnama-carousel-wrapper {
    position: relative;
    margin: 3rem 0 0 0;
    max-width: none;
    padding: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.carousel-why-cellnama {
    direction: rtl;
    margin-bottom: 2rem;
}

.carousel-why-cellnama .carousel-cell {
    width: 100%;
    margin: 0;
}


/* Custom Flickity Navigation Buttons - Triangle Shape with SVG */
.flickity-button-custom {
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
    outline: none !important;
}

.flickity-button-custom svg {
    width: 20px;
    height: 30px;
    color: var(--cellnama-blue);
    transition: all 0.3s ease;
}

.flickity-button-custom:hover svg {
    color: var(--cellnama-red);
}

.flickity-button-custom--prev {
    margin-left: 1rem;
}

.flickity-button-custom--next {
    margin-right: 1rem;
}


/* Container for navigation (buttons + dots) */
.why-cellnama-nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 10px;
}

/* Hide default Flickity dots position */
.carousel-why-cellnama>.flickity-page-dots {
    display: none !important;
}

/* Style Flickity dots to match buttons when moved to container */
.why-cellnama-dots-wrapper .flickity-page-dots {
    position: static !important;
    bottom: auto !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.why-cellnama-dots-wrapper .flickity-page-dots .dot {
    width: 14px;
    height: 14px;
    background: white;
    border: 2px solid var(--cellnama-blue);
    opacity: 1;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-top: .5rem;
    transition: all 0.3s ease;
}

.why-cellnama-dots-wrapper .flickity-page-dots .dot:hover {
    background: rgba(0, 102, 204, 0.3);
    border-color: var(--cellnama-blue);
    transform: scale(1.2);
}

.why-cellnama-dots-wrapper .flickity-page-dots .dot.is-selected {
    background: var(--cellnama-blue);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--cellnama-blue);
    width: 16px;
    height: 16px;
}

/* Card Styles */
.why-cellnama-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: transparent;
    overflow: hidden;
    height: 100%;
    transition: all var(--transition-slow);
}

.why-cellnama-image {
    flex: 0 0 60%;
    max-width: 60%;
    position: relative;
    overflow: hidden;
    margin-left: -1%;
}

.why-cellnama-image img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    min-height: 450px;
    object-fit: cover;
    display: block;
}

.why-cellnama-content {
    flex: 1;
    text-align: right;
    direction: rtl;
    padding: 3rem 3rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

/* Card Header */
.why-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.why-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cellnama-blue), var(--cellnama-light-blue));
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.why-card-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cellnama-red), #ff1493);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}

.why-card-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

/* Card Title */
.why-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Card Divider */
.why-card-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--cellnama-blue), var(--cellnama-red));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

/* Card Description */
.why-card-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Card Features List */
.why-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.why-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-right: 0.5rem;
}

.why-card-features li i {
    color: var(--cellnama-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Card Link */
.why-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cellnama-blue);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all var(--transition-base);
    padding: 0.75rem 1.5rem;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 8px;
    width: fit-content;
}

.why-card-link:hover {
    gap: 1rem;
    background: var(--cellnama-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Responsive adjustments for why carousel */
@media (max-width: 1200px) {
    .why-cellnama-content {
        padding: 2.5rem 2rem;
    }

    .why-card-title {
        font-size: 1.75rem;
    }

    /* Remove clip-path at smaller desktop/large tablet */
    .image-mask--cellnama-right {
        clip-path: none !important;
        -webkit-clip-path: none !important;
        border-radius: 12px;
        overflow: hidden;
    }

    .why-cellnama-image {
        border-radius: 12px;
        overflow: hidden;
    }
}

@media (max-width: 992px) {

    /* Why CELLNAMA - center slider with text */
    .carousel-why-cellnama .carousel-cell {
        width: 100%;
        margin: 0;
    }

    .hp-carousel--overlay-title {
        left: 0 !important;
    }

    .why-cellnama-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .why-cellnama-image {
        flex: 0 0 100%;
        max-width: 80%;
        margin: 0 auto 2rem auto;
        order: 1;
    }

    .why-cellnama-image img {
        min-height: 300px;
        height: 300px;
        width: 100%;
    }

    .why-cellnama-content {
        padding: 2rem;
        order: 2;
        text-align: center;
    }

    .why-card-title {
        font-size: 1.5rem;
    }

    .why-card-features {
        text-align: right;
        display: inline-block;
    }

    /* Remove clip-path at tablet size */
    .image-mask--cellnama-right {
        clip-path: none !important;
        -webkit-clip-path: none !important;
        border-radius: 12px;
        overflow: hidden;
    }

    .why-cellnama-image {
        border-radius: 12px;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .flickity-button-custom {
        width: 40px;
        height: 40px;
    }

    .flickity-button-custom svg {
        width: 16px;
        height: 24px;
    }

    .why-card-badge,
    .why-card-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .why-card-badge {
        font-size: 1.25rem;
    }

    .why-card-icon-wrapper i {
        font-size: 1.5rem;
    }

    .why-cellnama-dots-wrapper .flickity-page-dots .dot {
        width: 12px;
        height: 12px;
    }

    /* Remove clip-path on mobile */
    .image-mask--cellnama-right {
        clip-path: none !important;
        -webkit-clip-path: none !important;
        border-radius: 12px;
        overflow: hidden;
    }

    .why-cellnama-image {
        border-radius: 12px;
        overflow: hidden;
    }
}

@media (max-width: 576px) {
    .why-cellnama-image img {
        min-height: 250px;
        height: 250px;
    }

    .why-cellnama-content {
        padding: 1.5rem;
    }

    .why-card-title {
        font-size: 1.25rem;
    }

    .why-card-description {
        font-size: 1rem;
    }

    .why-card-features li {
        font-size: 0.9rem;
    }

    .hp-carousel--overlay-title {
        font-size: 1rem;
    }

    .flickity-button-custom {
        width: 36px;
        height: 36px;
    }

    .flickity-button-custom svg {
        width: 14px;
        height: 22px;
    }

    .flickity-button-custom--prev {
        margin-left: 0.5rem;
    }

    .flickity-button-custom--next {
        margin-right: 0.5rem;
    }

    .why-cellnama-dots-wrapper .flickity-page-dots {
        gap: 0.5rem;
    }

    .why-cellnama-dots-wrapper .flickity-page-dots .dot {
        width: 10px;
        height: 10px;
    }

    /* Remove clip-path at smallest screens */
    .image-mask--cellnama-right {
        clip-path: none !important;
        -webkit-clip-path: none !important;
        border-radius: 12px;
        overflow: hidden;
    }

    .why-cellnama-image {
        border-radius: 12px;
        overflow: hidden;
    }

    .why-cellnama-image img {
        border-radius: 12px;
    }
}


/* ===================================
   APPLICATIONS SECTION (CELLNAMA Style)
   =================================== */
.applications-cellnama-section {
    padding: 80px 0;
    background: transparent;
}

.application-cellnama-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
}

.application-cellnama-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.application-cellnama-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.application-cellnama-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
    display: block;
}

.application-cellnama-card:hover .application-cellnama-image img {
    transform: scale(1.1);
}

.application-cellnama-content {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.application-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--cellnama-red);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.application-cellnama-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.application-cellnama-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===================================
   AI PRODUCTS SECTION (CELLNAMA Style)
   =================================== */
.ai-products-cellnama-section {
    padding: 80px 0;
    background: transparent;
}

.ai-product-cellnama-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    height: 100%;
}

.ai-product-cellnama-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.ai-product-cellnama-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.ai-product-cellnama-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.ai-product-cellnama-card:hover .ai-product-cellnama-image img {
    transform: scale(1.05);
}

.ai-product-cellnama-body {
    padding: 2.5rem;
    text-align: right;
    direction: rtl;
}

.ai-badge-cellnama {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.ai-product-cellnama-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.ai-product-cellnama-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.ai-product-cellnama-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ai-features-cellnama-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-features-cellnama-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.ai-features-cellnama-list li i {
    color: var(--cellnama-blue);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===================================
   ARTICLES SECTION (CELLNAMA Style)
   =================================== */
.articles-cellnama-section {
    padding: 80px 0;
    background: transparent;
}

.article-cellnama-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-cellnama-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.article-cellnama-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.article-cellnama-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
    display: block;
}

.article-cellnama-card:hover .article-cellnama-image img {
    transform: scale(1.1);
}

.article-cellnama-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 60, 125, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.article-cellnama-card:hover .article-cellnama-overlay {
    opacity: 1;
}

.overlay-btn {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cellnama-blue);
    font-size: 1.5rem;
    transition: all var(--transition-base);
}

.overlay-btn:hover {
    transform: scale(1.1);
    background: var(--cellnama-red);
    color: var(--color-white);
}

.article-cellnama-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: right;
    direction: rtl;
}

.article-cellnama-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-cellnama-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.article-cellnama-date i {
    color: var(--cellnama-red);
}

.article-cellnama-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--cellnama-red), #ff1493);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    margin-right: auto;
}

.article-cellnama-badge i {
    font-size: 0.85rem;
}

.article-cellnama-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-cellnama-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.article-cellnama-title a:hover {
    color: var(--cellnama-blue);
}

.article-cellnama-excerpt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-cellnama-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cellnama-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    margin-top: auto;
}

.article-cellnama-link:hover {
    gap: 1rem;
    color: var(--cellnama-red);
}

/* Articles Carousel Styles */
.articles-carousel-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.carousel-articles {
    direction: rtl;
}

.carousel-articles .flickity-viewport {
    height: 600px !important;
}

.article-carousel-cell {
    width: 90%;
    max-width: 400px;
    margin: 0 15px;
}

@media (max-width: 768px) {
    .article-carousel-cell {
        width: 85%;
    }
}

/* Flickity RTL fixes for articles */
.carousel-articles.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px;
}

.carousel-articles.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px;
}

.carousel-articles .flickity-prev-next-button {
    width: 50px;
    height: 50px;
    background: rgba(17, 113, 236, 0.9);
    border-radius: 50%;
}

.carousel-articles .flickity-prev-next-button:hover {
    background: rgba(237, 8, 116, 0.9);
}

.carousel-articles .flickity-prev-next-button .flickity-button-icon {
    fill: white;
}

.carousel-articles .flickity-page-dots {
    bottom: -50px;
}

.carousel-articles .flickity-page-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(17, 113, 236, 0.3);
    border: 2px solid rgba(17, 113, 236, 0.5);
}

.carousel-articles .flickity-page-dots .dot.is-selected {
    background: rgba(17, 113, 236, 1);
    border-color: rgba(17, 113, 236, 1);
}

/* ===================================
   CTA SECTION (CELLNAMA Style)
   =================================== */
.cta-cellnama-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cellnama-blue) 0%, var(--cellnama-dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-cellnama-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%), linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.5;
}

.cta-cellnama-section .container {
    position: relative;
    z-index: 1;
}

.cta-cellnama-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.cta-cellnama-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-cellnama-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
}

.cta-feature-item i {
    font-size: 1.5rem;
    color: var(--cellnama-red);
}

.cta-phone-number {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    direction: ltr;
    text-align: right;
}

.cta-phone-number i {
    margin-left: 0.5rem;
    color: var(--cellnama-red);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .hero-video-title {
        font-size: 3.5rem;
    }

    .featured-new-product-title {
        font-size: 3rem;
    }

    .section-title-cellnama {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-video-title {
        font-size: 3rem;
    }

    .hero-video-subtitle {
        font-size: 1.5rem;
    }

    .featured-new-product-title {
        font-size: 2.5rem;
    }

    .product-model {
        font-size: 2.25rem;
    }

    .section-title-cellnama {
        font-size: 2.25rem;
    }

    .ai-product-cellnama-card .row {
        flex-direction: column-reverse;
    }

    /* AI Products - Smaller image and text */
    .ai-product-cellnama-image {
        min-height: 250px;
        padding: 1.5rem;
    }

    .ai-product-cellnama-image img {
        max-width: 70%;
        max-height: 70%;
    }

    .ai-product-cellnama-body {
        padding: 2rem 1.5rem;
    }

    .ai-product-cellnama-title {
        font-size: 1.4rem;
    }

    .ai-product-cellnama-subtitle {
        font-size: 0.875rem;
    }

    .ai-product-cellnama-description {
        font-size: 0.95rem;
    }

    /* Hide sticky navbar below desktop */
    .section-nav-sticky {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-video-section {
        min-height: 500px;
        height: auto;
    }

    .hero-video-title {
        font-size: 2.5rem;
    }

    .hero-video-subtitle {
        font-size: 1.25rem;
    }

    .hero-video-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        z-index: 100;
        position: relative;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        min-width: auto;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .featured-new-product-section,
    .three-pillar-section,
    .testimonials-section,
    .value-proposition-section,
    .applications-cellnama-section,
    .ai-products-cellnama-section,
    .articles-cellnama-section,
    .cta-cellnama-section {
        padding: 60px 0;
    }

    .featured-new-product-title {
        font-size: 2rem;
    }

    .product-model {
        font-size: 1.75rem;
    }

    .section-title-cellnama {
        font-size: 2rem;
    }

    .section-description-cellnama {
        font-size: 1.125rem;
    }

    .pillar-card-body,
    .testimonial-card,
    .ai-product-cellnama-body {
        padding: 2rem;
    }

    .cta-cellnama-title {
        font-size: 2rem;
    }

    .cta-cellnama-description {
        font-size: 1.125rem;
    }

    .cta-cellnama-features {
        flex-direction: column;
        gap: 1rem;
    }

    /* Fix container padding on tablets */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Ensure carousel stays within bounds */
    .product-image-carousel .carousel-cell {
        height: 300px;
        padding: 1.5rem;
    }

    /* Fix image container heights for tablets */
    .pillar-card-image {
        height: 240px !important;
    }

    .pillar-card-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .application-cellnama-image {
        height: 200px !important;
    }

    .application-cellnama-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .article-cellnama-image {
        height: 220px !important;
    }

    .article-cellnama-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .ai-product-cellnama-image {
        min-height: 300px !important;
        max-height: 300px !important;
        padding: 1.5rem;
    }

    .ai-product-cellnama-image img {
        max-width: 100% !important;
        max-height: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }

    /* Ensure AI product cards stack properly */
    .ai-product-cellnama-card .row {
        flex-direction: column;
    }

    .ai-product-cellnama-card .col-md-5,
    .ai-product-cellnama-card .col-md-7 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {

    /* Typography */
    .hero-video-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-video-subtitle {
        font-size: 1rem;
    }

    .hero-video-description {
        font-size: 0.95rem;
    }

    .featured-new-product-title {
        font-size: 1.5rem;
    }

    .product-model {
        font-size: 1.25rem;
    }

    .section-title-cellnama {
        font-size: 1.5rem;
    }

    .section-description-cellnama {
        font-size: 1rem;
    }

    .pillar-card-title {
        font-size: 1.25rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .cta-cellnama-title {
        font-size: 1.5rem;
    }

    /* Mobile specific fixes */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Hero section mobile */
    .hero-video-section {
        min-height: 400px;
    }

    .hero-video-content .row {
        min-height: 400px !important;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-width: auto;
    }

    .hero-cta-buttons {
        gap: 0.75rem;
        z-index: 100;
        position: relative;
        margin-bottom: 100px;
    }

    /* Reduce carousel height on mobile */
    .product-image-carousel .carousel-cell {
        height: 200px;
        padding: 0.75rem;
    }

    /* Fix button sizes */
    .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }

    .btn-lg {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }

    /* Adjust card padding */
    .pillar-card-body,
    .testimonial-card,
    .ai-product-cellnama-body,
    .article-cellnama-body {
        padding: 1.25rem;
    }

    /* Fix section padding */
    .featured-new-product-section,
    .three-pillar-section,
    .testimonials-section,
    .value-proposition-section,
    .applications-cellnama-section,
    .ai-products-cellnama-section,
    .articles-cellnama-section,
    .cta-cellnama-section {
        padding: 30px 0;
    }

    /* Fix image container heights for mobile */
    .pillar-card-image {
        height: 200px !important;
    }

    .pillar-card-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .application-cellnama-image {
        height: 160px !important;
    }

    .application-cellnama-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .article-cellnama-image {
        height: 200px !important;
    }

    .article-cellnama-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .ai-product-cellnama-image {
        min-height: 220px !important;
        max-height: 220px !important;
        padding: 1rem;
    }

    .ai-product-cellnama-image img {
        max-width: 100% !important;
        max-height: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }

    /* Featured product features list */
    .featured-new-product-features li {
        padding: 1rem 0;
    }

    .featured-new-product-features li i {
        font-size: 1.5rem;
    }

    /* Ensure proper stacking on mobile */
    .featured-new-product-section .row,
    .three-pillar-section .row,
    .ai-product-cellnama-card .row {
        flex-direction: column;
    }

    .ai-product-cellnama-card .col-md-5,
    .ai-product-cellnama-card .col-md-7 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }


    /* Application number badge */
    .application-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -20px;
    }

    /* CTA features */
    .cta-feature-item {
        font-size: 0.9rem;
    }

    .cta-feature-item i {
        font-size: 1.25rem;
    }

    /* Testimonial cards */
    .testimonial-quote-icon {
        font-size: 2.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    /* Value cards */
    .value-card-icon {
        font-size: 2.5rem;
    }

    .value-card-title {
        font-size: 1.25rem;
    }

    /* Fix sticky navigation overflow on mobile */
    .section-nav-sticky {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .section-nav-container {
        padding: 8px 10px;
        width: 100%;
        max-width: 100%;
    }

    .section-nav-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding: 0 5px;
    }

    .section-nav-item {
        flex: 0 0 auto;
        min-width: 120px;
    }

    .section-nav-link {
        padding: 10px 16px;
        font-size: 12px;
        white-space: nowrap;
        min-height: 44px;
    }
}

/* Additional fix for very small screens */
@media (max-width: 480px) {
    .section-nav-container {
        padding: 8px 5px;
    }

    .section-nav-list {
        gap: 6px;
    }

    .section-nav-item {
        min-width: 100px;
    }

    .section-nav-link {
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.scroll-to {
    scroll-behavior: smooth;
}

/* ===================================
   RTL Support
   =================================== */
[dir="rtl"] .hero-video-buttons,
[dir="rtl"] .cta-cellnama-features {
    flex-direction: row-reverse;
}

[dir="rtl"] .pillar-features-list li,
[dir="rtl"] .ai-features-cellnama-list li {
    flex-direction: row-reverse;
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {

    .hero-video-section,
    .cta-cellnama-section {
        background: white;
        color: black;
    }

    .btn {
        border: 2px solid black;
    }
}