﻿/* Strategy Component */

        .st-section { padding: 60px 0; }
        .st-head    { margin-bottom: 48px; }

        .st-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--secondary-color); color: #fff;
            padding: 6px 22px; border-radius: 50px;
            font-size: 0.8rem; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.4px;
        }
        .st-badge i { font-size: 0.78rem; opacity: 0.85; }

        .st-main-title { font-size: 2.1rem; font-weight: 800; line-height: 1.3; margin: 0; }

        /* Swiper */
        .st-swiper { overflow: hidden; padding-bottom: 8px !important; }

        /* ط§ظ„ط¨ط·ط§ظ‚ط© ط§ظ„ظ…ط³طھط·ظٹظ„ط© */
        .st-card {
            background: #fff;
            border-radius: 16px;
            padding: 32px 28px;
            position: relative;
            height: 100%;
            border: 1.5px solid rgba(0,0,0,0.06);
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
            box-shadow: 0 2px 16px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        /* ط´ط±ظٹط· ط¬ط§ظ†ط¨ظٹ ظ…ظ„ظˆظ‘ظ† */
        .st-card::before {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            right: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .swiper-slide-active .st-card,
        .swiper-slide-next .st-card {
            box-shadow: 0 12px 40px rgba(0,0,0,0.09);
            border-color: var(--primary-color);
        }
        .swiper-slide-active .st-card::before,
        .swiper-slide-next .st-card::before { opacity: 1; }

        /* ط±ظ‚ظ… ط²ط®ط±ظپظٹ */
        .st-num {
            position: absolute; top: 14px; left: 20px;
            font-size: 4rem; font-weight: 900;
            color: var(--primary-color); opacity: 0.05;
            line-height: 1; user-select: none;
            transition: opacity 0.3s;
            font-family: sans-serif;
        }
        .swiper-slide-active .st-card .st-num,
        .swiper-slide-next .st-card .st-num { opacity: 0.1; }

        /* ط®ط· ظپط§طµظ„ */
        .st-line {
            width: 32px; height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px; margin-bottom: 16px; opacity: 0.25;
            transition: width 0.35s ease, opacity 0.35s ease;
        }
        .swiper-slide-active .st-card .st-line,
        .swiper-slide-next .st-card .st-line { width: 52px; opacity: 0.85; }

        /* ط§ظ„ط¹ظ†ظˆط§ظ† */
        .st-card-title {
            font-size: 1.2rem; font-weight: 700;
            color: var(--secondary-color); margin-bottom: 12px;
            transition: color 0.3s ease;
        }
        .swiper-slide-active .st-card .st-card-title,
        .swiper-slide-next .st-card .st-card-title { color: var(--primary-color); }

        /* ط§ظ„ظˆطµظپ */
        .st-card-desc {
            font-size: 0.9rem; color: #64748b; line-height: 1.8; margin: 0;
        }

        /* ط£ط²ط±ط§ط± ط§ظ„طھظ†ظ‚ظ„ */
        .st-nav { display: flex; align-items: center; gap: 10px; margin-top: 28px; justify-content: center; }

        .st-nav-btn {
            width: 44px; height: 44px; border-radius: 50%;
            border: 2px solid var(--primary-color); background: transparent;
            color: var(--primary-color);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.3s ease; font-size: 0.85rem;
        }
        .st-nav-btn:hover { background: var(--primary-color); color: #fff; }

        /* Pagination */
        .st-pg { text-align: center; margin-top: 18px; }
        .st-pg.swiper-pagination-horizontal { position: relative; bottom: auto; }
        .st-pg .swiper-pagination-bullet {
            width: 8px; height: 8px;
            background: var(--primary-color); opacity: 0.2; transition: all 0.3s; margin: 0 4px;
        }
        .st-pg .swiper-pagination-bullet-active { opacity: 1; width: 24px; border-radius: 4px; }
