
@font-face {
  font-family: 'Cairo';
  src: url('fonts/Cairo-Regular.ttf') format('tff'),
       url('fonts/Cairo-Regular.ttf') format('ttf'),
       url('fonts/Cairo-Regular.ttf') format('tff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Cairo';
  src: url('fonts/Cairo-Bold.tff') format('tff'),
       url('fonts/Cairo-Bold.tff') format('tff'),
       url('fonts/Cairo-Bold.ttf') format('tff');
  font-weight: bold;
  font-style: normal;
}        
        * {
            font-family: 'Cairo', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f0fdf4 0%, #f3f4f6 100%);
        }

        .section-container {
            position: relative;
            overflow: hidden;
        }

        .section-container::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .section-container::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .content-wrapper {
            position: relative;
            z-index: 10;
        }

        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .section-title h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            background: linear-gradient(135deg, #96bf3d 0%, #226e0d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 2;
        }

        .title-accent {
            position: absolute;
            bottom: -8px;
            right: 0;
            display: flex;
            gap: 3px;
        }

        .accent-dot {
            width: 8px;
            height: 8px;
            background: #226e0d;
            border-radius: 50%;
            animation: bounce 2s infinite;
        }

        .accent-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .accent-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

      

        .chairman-card {
            position: relative;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .chairman-wrapper {
            position: relative;
            width: 100%;
            max-width: 320px;
            margin: 0 auto;
        }

        .chairman-image-container {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }

        .chairman-image-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1));
            z-index: 2;
            mix-blend-mode: overlay;
        }

        .chairman-image-container img {
            width: 100%;
            height: 100%;
            object-fit:cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .chairman-card:hover .chairman-image-container img {
            transform: scale(1.08);
        }

        .chairman-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #96bf3d, #226e0d);
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 3;
            animation: slideIn 0.6s ease-out 0.3s both;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .chairman-info {
            text-align: center;
        }

        .chairman-info h3 {
            font-size: 1.875rem;
            font-weight: 800;
            color: #96bf3d;
            margin-bottom: 1rem;
        }

        .chairman-info .divider {
            width: 40px;
            height: 4px;
            background: linear-gradient(90deg, #96bf3d, #226e0d);
            margin: 0 auto 1rem;
            border-radius: 2px;
        }

        .chairman-info p {
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .team-card {
            position: relative;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
        }

        .team-card:nth-child(1) { animation-delay: 0.1s; }
        .team-card:nth-child(2) { animation-delay: 0.2s; }
        .team-card:nth-child(3) { animation-delay: 0.3s; }
        .team-card:nth-child(4) { animation-delay: 0.4s; }

        .team-card:hover {
            transform: translateY(-16px);
            box-shadow: 0 20px 50px rgba(22, 163, 74, 0.044);
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #96bf3d, #226e0d, #10b981);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            z-index: 10;
        }

        .team-card:hover::before {
            transform: translateX(0);
        }

        .team-card-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
        }

        .team-card-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.05));
            z-index: 2;
        }

        .team-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .team-card:hover .team-card-image img {
            transform: scale(1.1) rotate(2deg);
        }

        .overlay-info {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(22, 163, 74, 0.156), rgba(16, 185, 129, 0.189));
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 3;
        }

        .team-card:hover .overlay-info {
            opacity: 1;
        }

        .overlay-info p {
            color: white;
            font-size: 0.95rem;
            line-height: 1.7;
            font-weight: 500;
        }

        .team-card-content {
            padding: 1.5rem;
        }

        .team-card-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #96bf3d;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .team-card-content .subtitle-en {
            color: #10b981;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .team-card-content .role {
            color: #888;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .social-icons {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
            justify-content: flex-end;
            opacity: 0;
            transition: opacity 0.3s ease 0.2s;
        }

        .team-card:hover .social-icons {
            opacity: 1;
        }

        /* .social-icons a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #f0fdf4;
            color: #16a34a;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 0.75rem;
        }

        .social-icons a:hover {
            background: #16a34a;
            color: white;
            transform: scale(1.1);
        }

        .stats-banner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 5rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(22, 163, 74, 0.1);
        }

        .stat {
            text-align: center;
        } */

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #96bf3d, #10b981);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #666;
            font-size: 0.9rem;
            margin-top: 0.5rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1rem;
            }
        }

        .pulse-icon {
            display: inline-block;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }
  

   .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .card-hover {
            transition: all 0.4s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
        }
        .gradient-text {
            background: linear-gradient(135deg, #96bf3d 0%, #16a34a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .icon-circle {
            width: 80px;
            height: 80px;
             background: linear-gradient(135deg, #96bf3d 0%, #16a34a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            animation: pulse-shadow 2s infinite;
        }
        @keyframes pulse-shadow {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
            }
            50% {
                box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
            }
        }
        .timeline-dot {
            width: 12px;
            height: 12px;
            background: #22c55e;
            border-radius: 50%;
            position: absolute;
            right: -6px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.8;
            }
        }
        .highlight-box {
            position: relative;
            padding: 0.25rem 0.75rem;
            display: inline-block;
        }
        .highlight-box::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 40%;
            background: rgba(34, 197, 94, 0.2);
            z-index: -1;
            border-radius: 4px;
        }
        .section-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #22c55e, #16a34a);
            margin: 2rem auto;
            border-radius: 2px;
        }