﻿:root {
    --c-primary: #28a745;
    --c-primary-light: #20c997;
    --c-gradient-primary: linear-gradient( 135deg, var(--c-primary) 0%, var(--c-primary-light) 100% );
    --c-gradient-secondary: linear-gradient( 45deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100% );
    --c-dark: #1a1a1a;
    --c-light: #f8f9fa;
    --c-white: #ffffff;
    --c-shadow: 0 8px 25px rgba(40, 167, 69, 0.1);
    --c-shadow-hover: 0 15px 45px rgba(40, 167, 69, 0.2);
}



[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* Header Styles */
.c-header {
    background: var(--c-gradient-primary);
    color: var(--c-white);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: var(--c-shadow);
}

.c-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.c-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.c-logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--c-white);
    text-decoration: none;
    line-height: 1.2;
}

.c-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.c-nav-link {
    color: var(--c-white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .c-nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-1px);
    }

.c-lang-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--c-white);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    font-size: 0.9rem;
}

    .c-lang-toggle:hover {
        background: rgba(255, 255, 255, 0.3);
    }

/* Page Header */
.c-page-header {
    background: linear-gradient(rgba(40, 167, 69, 0.8), rgba(32, 201, 151, 0.8)), url("https://cdn.builder.io/o/assets%2F72bca718268247be9b8f5ec44e899551%2F06e6c6a6cd7b4254984136308c4f3d86?alt=media&token=4ad761f8-aeb2-4dc8-9130-0d60d113b6d7&apiKey=72bca718268247be9b8f5ec44e899551");
    background-size: cover;
    background-position: center;
    padding: 80px 0 60px;
    color: var(--c-white);
    text-align: center;
    position: relative;
}

    .c-page-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--c-gradient-primary);
        opacity: 0.9;
    }

.c-page-header-content {
    position: relative;
    z-index: 2;
}

.c-breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

    .c-breadcrumb a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .c-breadcrumb a:hover {
            color: var(--c-white);
        }

    .c-breadcrumb span {
        color: var(--c-white);
        font-weight: 600;
    }

.c-page-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.c-page-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem;
    line-height: 1.4;
}

/* Classifications Grid */
.c-classifications {
    padding: 60px 0;
    background: var(--c-light);
    position: relative;
}

    .c-classifications::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to bottom, var(--c-white), transparent);
    }

.c-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.c-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 1rem;
    background: var(--c-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.c-section-description {
    font-size: 1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem;
    line-height: 1.5;
}

.c-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.c-card {
    background: var(--c-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--c-shadow);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(40, 167, 69, 0.1);
    margin: 0 0.5rem;
}

    .c-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--c-shadow-hover);
    }

.c-card-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

    .c-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.c-card:hover .c-card-image img {
    transform: scale(1.05);
}

.c-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #49a76073;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-card:hover .c-card-overlay {
    opacity: 0.8;
}

.c-card-overlay-content {
    text-align: center;
    color: var(--c-white);
    transform: translateY(15px);
    transition: transform 0.3s ease;
}

.c-card:hover .c-card-overlay-content {
    transform: translateY(0);
}

.c-card-icon {
    position: absolute;
    top: 280px;
    right: 15px;
    background: var(--c-gradient-primary);
    color: var(--c-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    z-index: 3;
}

.c-card-content {
    padding: 1.5rem;
    text-align: center;
}

.c-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.c-card:hover .c-card-title {
    color: var(--c-primary);
}

.c-card-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.c-card-button {
    background: var(--c-gradient-primary);
    color: var(--c-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-height: 44px;
    font-size: 0.9rem;
}

    .c-card-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(40, 167, 69, 0.3);
        color: var(--c-white);
    }

/* CTA Section */
.c-cta {
    background: var(--c-gradient-primary);
    color: var(--c-white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .c-cta::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient( circle, rgba(255, 255, 255, 0.1) 0%, transparent 70% );
        animation: c-float 6s ease-in-out infinite;
    }

.c-cta-content {
    position: relative;
    z-index: 2;
}

.c-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.c-cta-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    line-height: 1.5;
}

.c-cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.c-btn {
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
    min-height: 44px;
    font-size: 0.9rem;
}

.c-btn-white {
    background: var(--c-white);
    color: var(--c-primary);
}

    .c-btn-white:hover {
        background: var(--c-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

.c-btn-outline {
    background: transparent;
    color: var(--c-white);
    border-color: var(--c-white);
}

    .c-btn-outline:hover {
        background: var(--c-white);
        color: var(--c-primary);
        transform: translateY(-2px);
    }

/* Footer */
.c-footer {
    background: var(--c-dark);
    color: var(--c-white);
    padding: 2rem 0;
    text-align: center;
}

.c-footer-text {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Animations */
@keyframes c-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes c-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.c-animate {
    animation: c-fadeInUp 0.6s ease forwards;
}

/* Enhanced Hover Effects */
.c-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70% );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.c-card:hover::after {
    transform: translateX(100%);
}


@media (max-width: 992px) {
    .c-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Mobile Specific Optimizations */
@media (max-width: 768px) {
    .c-header-content {
        flex-direction: column;
        text-align: center;
    }

    .c-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .c-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .c-card {
        margin: 0;
    }

    .c-card-image {
        height: 290px;
    }

    .c-card-content {
        padding: 1.25rem;
    }

    .c-section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .c-container {
        padding: 0 10px;
    }

    .c-page-title {
        font-size: 1.8rem;
    }

    .c-section-title {
        font-size: 1.75rem;
    }

    .c-cta-title {
        font-size: 1.5rem;
    }

    .c-card-image {
        height: 388px;
    }

    .c-card-content {
        padding: 1rem;
    }

    .c-card-title {
        font-size: 1.1rem;
    }

    .c-card-description {
        font-size: 0.85rem;
    }

    .c-card-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Language Toggle */
.c-lang-active {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* Loading Animation */
.c-loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.c-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* iOS Safari specific fixes */
.c-card-button,
.c-btn,
.c-nav-link,
.c-lang-toggle {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

/* Improve scroll performance */
.c-card,
.c-card-image img {
    will-change: transform;
}

























