    @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap');
        
        :root {
            --primary-blue: #32A2EF; 
            --secondary-blue: #32A2EF;
            --accent-blue: #60A5FA;
            --light-blue: #D7EFFF;
            --dark-navy: #1E293B;
            --darker-navy: #0F172A;
            --text-white: #ffffff;
            --text-light: #CBD5E1;
            --text-muted: #94A3B8;
            --success-green: #10B981;
            --orange-accent: #F59E0B;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            overflow-x: hidden;
            background: white;
        }

        a{
            text-decoration: none;
        }

        /* Main Navigation */
        .main-nav {
            background: var(--dark-navy);
            padding: 8px 0;
            border-top:8px solid var(--secondary-blue);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            position: relative;
            z-index: 1000;
        }

        .nav-brand img {
            height: 75px;
            width: auto;
        }

        .nav-menu {
            
            list-style: none;
            display: flex;
            gap: 0;
            align-items: center;
            margin: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--text-white);
            text-decoration: none;
            padding: 8px 8px;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 0 2px;
        }

        .nav-link:hover {
            background: var(--primary-blue);
            color: white !important;
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: var(--secondary-blue);
        }

        .hero-pages{
            background: linear-gradient(135deg, var(--dark-navy) 0%, var(--darker-navy) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-pages::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
            background-size: 800px 800px, 600px 600px, 400px 400px;
            animation: backgroundMove 20s ease-in-out infinite;
            z-index: 1;
        }

        /* Hero Section */
        .hero-section {
            background-image: url(../images/pattern.jpg);
            background-size: contain;
            background-position: center;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Background Pattern */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #323960f7;
            /* background-image: 
                radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(245, 158, 11, 0.05) 0%, transparent 50%); */
            /* background-size: 800px 800px, 600px 600px, 400px 400px; */
            /* animation: backgroundMove 20s ease-in-out infinite; */
            z-index: 1;
        }

        @keyframes backgroundMove {
            0%, 100% { 
                background-position: 0% 0%, 100% 100%, 50% 50%; 
            }
            33% { 
                background-position: 30% 20%, 70% 80%, 80% 30%; 
            }
            66% { 
                background-position: 70% 80%, 30% 20%, 20% 70%; 
            }
        }

        /* Decorative Elements */
        .hero-decoration {
            position: absolute;
            z-index: 2;
        }

        .deco-circle-1 {
            width: 200px;
            height: 200px;
            border: 2px solid rgba(59, 130, 246, 0.2);
            border-radius: 50%;
            top: 10%;
            left: 5%;
            animation: float 6s ease-in-out infinite;
        }

        .deco-circle-2 {
            width: 150px;
            height: 150px;
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 50%;
            bottom: 15%;
            right: 8%;
            animation: float 8s ease-in-out infinite reverse;
        }

        .deco-dots {
            width: 100px;
            height: 100px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><circle cx="2" cy="2" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="10" cy="2" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="18" cy="2" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="2" cy="10" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="18" cy="10" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="2" cy="18" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="10" cy="18" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="18" cy="18" r="1" fill="rgba(59,130,246,0.3)"/></svg>') repeat;
            top: 11%;
            right: 6%;
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Content Container */
        .hero-content {
            position: relative;
            z-index: 10;
            width: 100%;
        }

        /* Text Content */
        .hero-text {
            padding-right: 2rem;
        }

        .hero-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.8;
            margin-bottom: 2rem;
            text-shadow: 0 4px 8px rgba(0,0,0,0.3);
            animation: slideInFromRight 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 2.5rem;
            font-weight: 400;
            animation: slideInFromRight 1s ease-out 0.2s both;
        }

        .hero-stats-text {
            /* backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            animation: slideInFromRight 1s ease-out 0.4s both; */
        }

        .hero-stats-text h6 {
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .hero-stats-text p {
            color: white;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* CTA Button */
        .cta-button {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: white;
            padding: 14px 30px;
            border-radius: 10px;
            margin-bottom:2rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
            transition: all 0.3s ease;
            animation: slideInFromRight 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
            color: white;
        }

        /* Profile Section */
        .hero-profile {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        /* Profile Image Container */
        .profile-container {
            position: relative;
            width: 400px;
            height: 400px;
            margin-bottom: 2rem;
            animation: slideInFromLeft 1s ease-out;
        }

        .profile-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--accent-blue) 100%);
            padding: 8px;
            position: relative;
            box-shadow: 0 10px 50px rgba(59, 130, 246, 0.3);
            animation: profileFloat 6s ease-in-out infinite;
        }

        @keyframes profileFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(2deg); }
        }

        .profile-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Profile Decorations */
        .profile-decoration {
            position: absolute;
            z-index: 5;
        }

        .profile-deco-1 {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--orange-accent) 0%, #F97316 100%);
            border-radius: 16px;
            top: -10px;
            right: -10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
            animation: bounce 2s ease-in-out infinite;
        }

        .profile-deco-2 {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
            border-radius: 50%;
            bottom: 20px;
            left: -20px;
            animation: bounce 2s ease-in-out infinite 0.5s;
        }

        .profile-deco-3 {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            border-radius: 8px;
            top: 50px;
            left: -15px;
            animation: bounce 2s ease-in-out infinite 1s;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Stats Container */
        .stats-container {
            display: flex;
            gap: 2rem;
            justify-content: center;
            animation: slideInFromBottom 1s ease-out 0.8s both;
        }

        .stat-item {
            text-align: center;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 1rem;
            min-width: 120px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }

        .stat-item:hover::before {
            left: 100%;
        }

        .stat-item:hover {
            transform: translateY(-8px);
            background: rgba(255,255,255,0.08);
            box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 600;
        }

        /* Feature Cards at Bottom */
        .feature-cards {
            display: flex;
            gap: 1.5rem;
            animation: slideInFromBottom 1s ease-out 1s both;
        }

        .feature-card {
            flex: 1;
            background: rgba(255,255,255,0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--success-green), var(--orange-accent));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            /* transform: scaleX(1); */
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.06);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            text-align: center;
            background:var(--light-blue);
            border-radius: 16px;
            display: inline-block;
            transition: all 0.3s ease;
            line-height: 55px;
            padding-top:8px;
        }

        .feature-icon img{
            height:30px;
        }

        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
        }

        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, var(--orange-accent) 0%, #F97316 100%);
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(180deg) scale(1.1);
        }

        .feature-icon i {
            color: white;
            font-size: 1.5rem;
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
                display: inline-block;
    margin-right: 10px;
        }

        .feature-description {
            font-size: 1rem;
            color: #6D707C;
            line-height: 1.6;
            text-align: justify;
        }

        /* Social Links */
        .social-links {
            position: fixed;
            left: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: var(--secondary-blue);
            backdrop-filter: blur(10px);
            border: 1px solid var(--secondary-blue);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateX(10px);
        }

        /* Wave Separator */
        .wave-separator {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }

        .wave-separator svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
        }

        .wave-separator .shape-fill {
            fill: #f8fafc;
        }

        /* Animations */
        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromBottom {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .profile-container {
                width: 250px;
                height: 250px;
            }
            
            .stats-container {
                gap: 1rem;
            }
            
            .stat-item {
                padding: 1.5rem 1rem;
                min-width: 100px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .feature-cards {
                flex-direction: column;
                gap: 1rem;
            }
            
            .social-links {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
                text-align: center;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                text-align: center;
            }
            
            .hero-text {
                padding-right: 0;
                text-align: center;
                margin-bottom: 3rem;
            }
            
            .profile-container {
                width: 200px;
                height: 200px;
            }
            
            .stats-container {
                flex-wrap: wrap;
                gap: 0.8rem;
            }
            
            .stat-item {
                flex: 1;
                min-width: 80px;
                padding: 1rem 0.8rem;
            }
            
            .nav-menu {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--darker-navy);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(59, 130, 246, 0.3);
            border-top: 3px solid var(--primary-blue);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .title h3{
            position: relative;
            font-size: 1.3rem;
            font-weight: bold;
            color:var(--primary-blue);
        }

        .title h3::before{
            position: absolute;
            bottom: -9px;
            right: 0;
            height:3px;
            width:30px;
            content: '';
            background: #ECA30C;
        }
        .aboutus .description{
            color:#6D707C;
            text-align: justify;
            line-height: 2;
        }

         .about-images {
      position: relative;
    }
    .about-images img {
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .about-images .top-img {
      width: 300px;
    height: 300px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15%;
    z-index: 2;
    }
    .about-images .bottom-img {
        width: 300px;
        height: 300px;
        object-fit: cover;
      position: absolute;
        bottom: -70px;
    left: 35px;
      border: 4px solid white;
      z-index: 1;
    }
    .play-button {
     position: absolute;
    bottom: 10px;
    left: 38%;
    width: 60px;
    height: 60px;
    background-color: #2f92ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transform: translateX(-38%);
    box-shadow: 2px 6px 12px 2px rgba(59, 130, 246, 0.3);
    z-index:3;
    }
    .projects {
        margin-bottom:80px;
    }
   .projects  .swiper {
      padding-bottom: 60px;
    }
    .projects .swiper-slide {
      width: 280px;
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .projects .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .projects .swiper-slide-active {
      /* transform: scale(1.05); */
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }
   
    .projects .swiper-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 15px;
      padding: 0 20px;
    }
    .projects .slider-title {
      font-size: 1.1rem;
      font-weight: bold;
      color: #444;
      text-align: center;
      flex: 1;
    }
    .projects .swiper-button-prev,
    .projects .swiper-button-next {
      position: static !important;
      color: #2196f3;
      background-color: #fff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      flex-shrink: 0;
    }
    .projects .swiper-button-prev::after{
        transform: rotate(180deg);
    }
    .projects .swiper-button-next::after{
        transform: rotate(-180deg);
    }
    .projects .swiper-button-prev::after,
    .projects .swiper-button-next::after {
      font-size: 18px;
    }
    .view-more{
        font-size: 14px;
    }
        .our-new .news-item a{
            text-decoration: none;
        }
        .our-new .news-item {
            margin-bottom: 30px;
            padding: 20px;
            background: #fafbfc;
            border-radius: 10px;
            border-right: 4px solid #60A5FA;
            transition: all 0.3s ease;
        }
        
        .our-new .news-item:hover {
            background: #f1f8ff;
            transform: translateX(-5px);
            box-shadow: 0 5px 20px rgba(93, 173, 226, 0.1);
        }
        
        .our-new .news-tag {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 6px 16px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 12px;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
        }
        
        .our-new .news-date {
            color: #7f8c8d;
            font-size: 13px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        
        .our-new .news-text {
            color: #2c3e50;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.7;
            margin: 0;
        }
        
    
        .our-new .featured-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        
        .our-new .featured-image:hover {
            transform: scale(1.02);
        }
        
        .our-new .featured-title {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        
        .our-new .featured-description {
            color: #5a6c7d;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            font-weight: 400;
        }
        
        
        @media (max-width: 576px) {
            .our-new .featured-image {
                /* height: 250px; */
            }
        }

    
        .blog-section .blog-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .blog-section .blog-item {
            background: #fafbfc;
            border-radius: 12px;
            padding: 20px;
            border-right: 4px solid #32A2EF;
            transition: all 0.3s ease;
            display: flex;
            gap: 15px;
            align-items: center;
        }
        .blog-section .featured-title{
            color:var(--primary-blue);
            font-size: 1.2rem;
            font-weight: bold;
        }
        .blog-section .blog-item:hover {
            background: #f1f8ff;
            transform: translateX(-5px);
            box-shadow: 0 5px 20px rgba(82, 196, 240, 0.1);
        }
        
        .blog-section .blog-item-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
        
       .blog-section  .blog-item-content {
            flex: 1;
        }
        
        .blog-section .blog-item-date {
            color: #7f8c8d;
            font-size: 12px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .blog-section .blog-item-title {
            color: #2c3e50;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.5;
            margin: 0;
        }
        
        .blog-section .featured-article {
            position: relative;
        }
        
        .blog-section .featured-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            margin-bottom: 10px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .blog-section .featured-date {
            color: #7f8c8d;
            font-size: 13px;
            margin-bottom: 10px;
            display: block;
            text-align: left;
            gap: 8px;
        }
  
     .blog-section  .featured-excerpt {
            color: #5a6c7d;
            font-size: 14px;
            line-height: 1.7;
            text-align: justify;
        }
        
        @media (max-width: 992px) {
           .blog-section  .blog-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
         .blog-section    .featured-article {
                order: -1;
            }
   
        }
        
        @media (max-width: 768px) {
            
           .blog-section  .blog-title {
                font-size: 24px;
            }
    
            
           .blog-section  .blog-item {
                flex-direction: column;
                text-align: center;
            }
            
            .blog-section .blog-item-image {
                width: 100%;
                height: 120px;
            }
        }
        
        .partner-logo {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border: 2px solid #f8f9fa;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 120px;
            width: 100%;
        }
        
        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(82, 196, 240, 0.2);
            border-color: #60A5FA;
        }
        
        .partner-logo img {
            max-width: 100%;
            max-height: 80px;
            object-fit: contain;
        }

        .description-activit,.details-activites *{
            color:#6D707C;
            font-size: 15px !important;
        }

        .activities-section{
            background-color: #F4F5F8;
        }

    .event-card {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
    }
    .event-card img {
      width: 850px;
      height: 500px;
      object-fit: cover;
      border-radius: 15px;
    }
    .event-info {
     text-align: right;
      position: absolute;
      top:50%;
      transform: translateY(-50%);
      right: 40px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      padding: 25px 25px;
      max-width: 500px;
    }
    .event-info h5 {
      font-weight: bold;
      font-size: 20px;
      color:var(--primary-blue);
      margin-bottom: 15px;
    }
    .event-info p {
      color: #666;
      line-height: 25px;
      font-size: 14px;
       margin-bottom: 15px;
      text-align: justify;
    }
    .custom-controls {
      text-align: center;
      position: absolute;
        bottom: 7%;
        right: 10%;
    }
    .custom-controls button {
      color:var(--primary-blue);
      background: transparent;
      border: none;
      margin: 0 5px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .custom-controls button span i::before{
      color:var(--primary-blue);
    }
    .custom-controls button span {
      background: unset;
        font-size: 30px;

    }
     .joinus-section {
            background: #00306E;
            color: white;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .joinus-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%),
                radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 20%, transparent 50%);
        }
        
        /* الأشكال الهندسية */
        .geometric-decorations {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
        }
        
        .geo-shape {
            position: absolute;
            opacity: 0.3;
        }
        
        .triangle-1 {
            top: 15%;
            right: 8%;
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-bottom: 25px solid rgba(255,255,255,0.4);
            transform: rotate(20deg);
        }
        
        .plus-1 {
            top: 25%;
            left: 10%;
            font-size: 24px;
            color: rgba(255,255,255,0.4);
            font-weight: 300;
        }
        
        .square-1 {
            bottom: 30%;
            right: 15%;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255,255,255,0.4);
            transform: rotate(45deg);
        }
        
        .circle-1 {
            bottom: 40%;
            left: 20%;
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.4);
            border-radius: 50%;
        }
        
        .triangle-2 {
            bottom: 20%;
            right: 25%;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 15px solid rgba(255,255,255,0.3);
        }
        
        .chart-icon {
            bottom: 15%;
            right: 5%;
            font-size: 20px;
            color: rgba(255,255,255,0.3);
        }
        
        .register-button {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.87rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
            position: relative;
            z-index: 10;
        }
        
        .register-button:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }
        
        .joinus-content {
            position: relative;
            z-index: 5;
            text-align: center;
        }
        .joinus-content *{
            text-align: center;
        }
        .joinus-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 25px 0 15px;
            line-height: 1.4;
        }
        
        .joinus-subtitle {
            font-size: 1rem;
            font-weight: 500;
            opacity: 0.95;
            text-align: center;
            line-height: 2;
        }
        
        /* القسم الأبيض الرئيسي */
        .main-footer {
            background: white;
            padding: 60px 0 40px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 50px;
            align-items: start;
        }
        
        /* قسم بيانات التواصل */
        .contact-section {
            text-align: right;
        }
        
        .section-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #00002D;
            margin-bottom: 25px;
            text-align: right;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            color: #6D707C;
            font-size: 0.95rem;
        }
        
        .contact-icon {
            color: #3b82f6;
            font-size: 1rem;
            width: 20px;
            text-align: center;
        }
        
        .address-block {
            text-align: right;
            color: #6D707C;
            font-size: 0.9rem;
            line-height: 1.7;
            margin-top: 20px;
        }
        
        /* قسم الروابط الوسطى */
        .links-section {
            text-align: center;
        }
        
        .dimension-badge {
            background: var(--primary-blue);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 25px;
        }
        
        .links-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .links-list li {
            margin-bottom: 15px;
            text-align: right;
        }
        
        .links-list a {
            color: #6b7280;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 400;
            transition: color 0.3s ease;
        }
        
        .links-list a:hover {
            color: #3b82f6;
        }
        
        .logo-section {
            text-align: center;
        }
        
        .logo-circle {
            width: 120px;
            height: 120px;
            position: relative;
        }
     
        .organization-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #00002D;
            margin-bottom: 10px;
            line-height: 1.4;
            max-width: 280px;
            text-align: right;
        }
        
        .organization-subtitle {
            font-size: 0.95rem;
            color: #6b7280;
            margin-bottom: 30px;
        }
        
        .social-media {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            background:var(--primary-blue);
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        /* .social-icon.facebook { background: #1877f2; }
        .social-icon.twitter { background: #000000; }
        .social-icon.linkedin { background: #0077b5; }
        .social-icon.instagram { 
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
        }
        .social-icon.youtube { background: #ff0000; }
         */

        .bottom-footer {
            background: #FFF;
        }

        .bottom-footer .container{
            border-top: 1px solid #B9CBE1;
            padding: 8px 0;
        }
        
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .copyright-text {
            color: #00306E;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .design-credit {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #00306E;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .designer-name {
            color: #00306E;
            font-weight: bold;
        }
        
        .heart-icon {
            color: #ef4444;
            font-size: 0.8rem;
        }
        
        /* استجابة للشاشات المختلفة */
        @media (max-width: 1024px) {
            .footer-grid {
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .contact-section {
                text-align: center;
            }
            
            .contact-item {
                justify-content: center;
            }
            
            .hero-title {
                font-size: 1.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .register-button {
                padding: 12px 25px;
                font-size: 0.95rem;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .social-media {
                gap: 12px;
            }
            
            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .joinus-section {
                padding: 40px 0;
            }
            
            .main-footer {
                padding: 40px 0 30px;
            }
            
            .logo-circle {
                width: 100px;
                height: 100px;
            }
            
            .logo-circle::before {
                width: 70px;
                height: 70px;
            }
            
            .logo-circle::after {
                width: 50px;
                height: 50px;
            }
            
            .logo-symbol {
                font-size: 1.6rem;
            }
        }

        .breadcrumb-item{
            font-weight: bold;
        }
    .active.breadcrumb-item{
        color:var(--secondary-blue);
    }
    
    .aboutus-page .container{
        padding: 30px;
        background: #F4F4F6;
        border-radius: 10px;
    }

    .aboutus-page .about-images .bottom-img{
            bottom: -110px;

    }
        .project-content {
            position: relative;
            z-index: 2;
        }
        
        .project-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin-bottom: 0;
        }
        
        .news-card {
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: none;
            overflow: hidden;
            margin-bottom: 5px;
        }
        
        .news-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .news-card .card-body {
            padding: 4px 20px;
            background: #f4f4f6;
        }
        .news-card .card-body p{
            line-height: 25px;
        }
        .news-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            padding: 20px 20px;
            background: #f4f4f6;
            transition: background 0.3s ease;
        }
        
        .news-header:hover {
            background: linear-gradient(135deg, #e9ecef, #dee2e6);
        }
        
        .collapse-icon {
            transition: transform 0.3s ease;
            color: #6c757d;
            font-size: 1.1rem;
        }
        
        .collapse-icon.rotated {
            transform: rotate(180deg);
        }
        
        .project-details {
            transition: all 0.3s ease;
        }

        .project-details *,.description *{
            font-family: 'Cairo' !important;
        }
        
        .news-title {
            font-weight: bold;
            font-size: 1rem;
            color: #252839;
            margin-bottom: 10px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        
        .news-title:hover {
            color: var(--primary-blue);
            cursor: pointer;
        }
        
        .news-excerpt {
            font-size: 0.9rem;
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #95a5a6;
        }
        
        .news-icon {
            width: 20px;
            height: 20px;
            background: var(--primary-blue);
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-left: 8px;
        }
        
        .news-icon i {
            color: white;
            font-size: 0.7rem;
        }
        
        
        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        @media (max-width: 768px) {
            .project-title {
                font-size: 1.8rem;
            }
            
            .news-title {
                font-size: 1rem;
            }
        }
        
        .fade-in {
            animation: fadeIn 0.6s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .footer-page{
            border-top: 1px solid #dedede;
            padding:30px 0 10px;
        }

        .cotent-page{
            color:#6D707C;
        }
       

        .content-page .form-control::placeholder{
            color:#C1C1C1;
        }
          .form-container {
            /* box-shadow: 0 10px 40px rgba(0,0,0,0.05); */
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            display: block;
            font-size: 15px;
        }
        .form-select option{
              color:#C1C1C1;
        }
        .form-control, .form-select {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #F4F5F8;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.1);
            outline: none;
        }
        
        .form-control::placeholder {
            color: #95a5a6;
            font-size: 14px;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .btn-primary {
            background: var(--primary-blue);
            border: none;
            border-radius: 10px;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
            background: var(--primary-blue);
        }
        
        .btn-outline-secondary {
            border: 2px solid #6c757d;
            border-radius: 10px;
            padding: 12px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
        }
        
        .wave-decoration {
            position: absolute;
            top: -2px;
            left: 0;
            width: 100%;
            height: 50px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffffff"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"></path></svg>') no-repeat;
            background-size: cover;
        }
        
        @media (max-width: 768px) {
            .content-wrapper {
                padding: 60px 15px 40px;
            }
            
            .form-container {
                padding: 25px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .info-block {
                padding: 20px;
            }
        }
        
        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }

         .image-container {
            position: relative;
            background: #504A5E4D;
            border-radius: 10px;
            height: 400px;
            margin-bottom: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .background-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
            background-repeat: no-repeat;
        }
        
        .content-overlay {
            position: absolute;
            bottom: 10px;
            left: 10px;
            right: 10px;
            background: #9f9f9fd4;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        
        .notification-header {
            padding:15px;
            position: relative;
            display: flex;
            justify-content: space-between;
        }
        .notification-date i{
            color:#ff7b25
        }
        .notification-date {
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 12px;
        }
        
        .notification-title {
            font-size: 0.95rem;
            font-weight: 500;
            color: white;
            margin: 0;
            line-height: 1.4;
        }
        
        .notification-footer {
            padding: 15px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }
        
        .notification-footer h4{
            font-size: 1.1rem;
            font-weight: bold;
            color:#fff;
        }
        .footer-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.4;
            flex: 1;
        }
        
        .view-details-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        
        .view-details-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateX(-2px);
        }
        
        .arrow-icon {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }
        
        .view-details-btn:hover .arrow-icon {
            transform: translateX(-3px);
        }
        
        .image-container.no-date .notification-date {
            display: none;
        }
        
        .image-container.no-date .notification-header {
            padding-top: 20px;
        }
        
        @media (max-width: 768px) {
            .image-container {
                height: 350px;
                margin-bottom: 20px;
            }
            
            .content-overlay {
                bottom: 15px;
                left: 15px;
                right: 15px;
            }
            
            .notification-header {
                padding: 15px;
            }
            
            .notification-footer {
                padding: 12px 20px;
                flex-direction: column;
                gap: 10px;
                align-items: stretch;
            }
            
            .view-details-btn {
                justify-content: center;
            }
            
            .page-title {
                font-size: 1.3rem;
                text-align: center;
            }
            
            .footer-text {
                font-size: 0.85rem;
            }
        }
        
        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }


        .map-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            padding: 20px;
            margin: 40px auto 0px;
            position: relative;
            z-index: 10;
            max-width: 1200px;
        }
        
        #map {
            height: 600px;
            border-radius: 15px;
            overflow: hidden;
        }
        
        .legend {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 15px;
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            border-radius: 25px;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            font-weight: 500;
        }
        
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        #locationModal .modal-header .btn-close {
            color: var(--primary-blue);
            margin-left:0;
        }
        #locationModal .modal-footer button{
            font-size:14px;
        }
        #locationModal .modal-footer{
            border-top:1px solid #f8f8f8 !important;
        }
        #locationModal .modal-header {
            border-bottom:1px solid #f8f8f8 !important;
            background: #fff;
            color: var(--primary-blue);
            border: none;
        }
        
        #locationModal .modal-body {
            padding: 20px;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 20px;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            content: "«";
            margin: 0 5px;
        }
        
        .leaflet-popup-content-wrapper {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .custom-popup {
            font-family: 'Cairo';
            text-align: center;
            padding: 10px;
        }

        .custom-popup p{
            font-family: 'Cairo';
        }

        .custom-popup h6 {
            font-family: 'Cairo';
            color: #2c3e50;
            font-weight: bold;
            margin-bottom: 8px;
        }
        
        .custom-popup .btn {
            font-size: 12px;
            padding: 4px 12px;
        }
        
        .location-info {
            background: rgba(52, 152, 219, 0.1);
            border-right: 4px solid #3498db;
            padding: 15px;
            border-radius: 5px;
        }
        
        @media (max-width: 768px) {
            .map-container {
                margin: 20px 15px 0px;
                padding: 15px;
            }
            
            #map {
                height: 400px;
            }
            
            .legend {
                flex-direction: column;
                align-items: center;
            }
        }

        .filter-btn{
            font-size: 14px;
            padding: 10px 20px;
        }



   .team-card {
        background: #ffffff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        margin-bottom: 40px;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .team-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #32A2EF 0%, #60A5FA 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .team-card:hover::before {
        transform: scaleX(1);
    }

    .team-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 60px rgba(50, 162, 239, 0.25);
    }

    .team-image {
        position: relative;
        overflow: hidden;
        height: 350px;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    }

    .team-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(to top, #1E293B 0%, transparent 100%);
        pointer-events: none;
    }

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        filter: grayscale(20%);
    }

    .team-card:hover .team-image img {
        transform: scale(1.15);
        filter: grayscale(0%);
    }

    .team-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        color: #32A2EF;
        box-shadow: 0 4px 15px rgba(50, 162, 239, 0.2);
        z-index: 10;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .team-badge i {
        font-size: 0.75rem;
    }

    .team-content {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .team-name {
        font-size: 1.2rem;
        font-weight: 800;
        color: #1E293B;
        margin-bottom: 12px;
        transition: all 0.3s ease;
        line-height: 1.3;
    }

    .team-card:hover .team-name {
        color: #32A2EF;
    }

    .team-position {
        color: #64748B;
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.6;
        padding-bottom: 20px;
        border-bottom: 2px solid #f1f5f9;
    }

    .team-position i {
        font-size: 1rem;
        color: #32A2EF;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .team-description {
        color: #475569;
        font-size: 1rem;
        line-height: 1.9;
        flex: 1;
        text-align: justify;
        margin-bottom: 25px;
    }

    .team-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 20px;
        border-top: 2px solid #f1f5f9;
    }

    .team-stats {
        display: flex;
        gap: 20px;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
    }

    .stat-label {
        font-size: 0.75rem;
        color: #94a3b8;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .stat-value {
        font-size: 1.1rem;
        font-weight: 800;
        color: #32A2EF;
        margin-top: 2px;
    }

    /* Decorative Elements */
    .team-decoration {
        position: absolute;
        pointer-events: none;
    }

    .deco-circle {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 2px dashed rgba(50, 162, 239, 0.2);
        position: absolute;
        animation: rotate 20s linear infinite;
    }

    .deco-circle-1 {
        top: 10%;
        right: 5%;
    }

    .deco-circle-2 {
        bottom: 15%;
        left: 8%;
        width: 80px;
        height: 80px;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* No Data State */
    .no-data-container {
        text-align: center;
        padding: 100px 20px;
    }

    .no-data-icon {
        font-size: 5rem;
        color: #cbd5e1;
        margin-bottom: 30px;
    }

    .no-data-text {
        font-size: 1.5rem;
        color: #64748b;
        font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 992px) {
      
        .team-image {
            height: 320px;
        }

        .team-content {
            padding: 30px 25px;
        }

        .team-name {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .team-section {
            padding: 60px 0;
        }

        .team-image {
            height: 280px;
        }

        .team-content {
            padding: 25px 20px;
        }

        .team-name {
            font-size: 1.3rem;
        }

        .team-position {
            font-size: 0.95rem;
        }

        .team-description {
            font-size: 0.95rem;
        }

        .team-badge {
            top: 15px;
            right: 15px;
            padding: 6px 15px;
            font-size: 0.8rem;
        }
    }

    /* Animation */
    .fade-in-up {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Pagination Styling */
    .pagination {
        gap: 8px;
    }

    .page-link {
        border: 2px solid #e2e8f0;
        color: #64748b;
        font-weight: 600;
        border-radius: 10px !important;
        padding: 10px 18px;
        transition: all 0.3s ease;
    }

    .page-link:hover {
        background: #32A2EF;
        color: white;
        border-color: #32A2EF;
        transform: translateY(-2px);
    }

    .page-item.active .page-link {
        background: #32A2EF;
        border-color: #32A2EF;
        box-shadow: 0 4px 15px rgba(50, 162, 239, 0.3);
    }