:root {
            --primary: #bad1e3;
            --accent: #feee7d;
            --accent-light: #fef99b;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #feee7d 0%, #fef99b 100%);
            --gradient-secondary: linear-gradient(135deg, #dbe9f6 0%, #bad1e3 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background: var(--white);
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        /* Top Bar with Actions */
        .top-bar-actions {
            padding: 8px 5%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            overflow: hidden;
            max-height: 60px;
        }

        header.scrolled .top-bar-actions {
            max-height: 0;
            padding: 0 5%;
            opacity: 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5% 1rem;
            margin: 0 auto;
            background: white;
            transition: padding 0.3s ease;
        }

        header.scrolled nav {
            padding: 0.6rem 5%;
        }
  
        /* Top Bar Actions - Smaller Size */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 6px;
            position: relative;
        }

        /* Header Social Icons - Smaller */
        .header-social {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .header-social-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: white;
            border: 1.5px solid rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c3e50;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .header-social-icon svg {
            width: 14px;
            height: 14px;
        }

        .header-social-icon:hover {
            transform: translateY(-4px) scale(1.1);
            box-shadow: 0 6px 16px rgba(0,0,0,0.2);
        }

        /* Facebook */
        .header-social-icon.facebook:hover {
            background: #1877F2;
            border-color: #1877F2;
            color: white;
            animation: pulse 0.6s ease;
        }

        /* Instagram */
        .header-social-icon.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            border-color: #bc1888;
            color: white;
            animation: pulse 0.6s ease;
        }

        /* Twitter */
        .header-social-icon.twitter:hover {
            background: #1DA1F2;
            border-color: #1DA1F2;
            color: white;
            animation: pulse 0.6s ease;
        }

        /* WhatsApp */
        .header-social-icon.whatsapp:hover {
            background: #25D366;
            border-color: #25D366;
            color: white;
            animation: pulse 0.6s ease;
        }

        @keyframes pulse {
            0%, 100% {
                transform: translateY(-4px) scale(1.1);
            }
            50% {
                transform: translateY(-4px) scale(1.15);
            }
        }

        /* Search Container - Smaller */
        .search-container-header {
            display: flex;
            align-items: center;
            position: relative;
            height: 32px;
        }

        .search-btn {
            width: 32px;
            height: 32px;
            min-width: 32px;
            border-radius: 50%;
            border: 1.5px solid rgba(0,0,0,0.1);
            background: white;
            color: #2c3e50;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            right: 0;
            z-index: 2;
        }

        .search-btn:hover {
            background: linear-gradient(135deg, #feee7d 0%, #fef99b 100%);
            border-color: #feee7d;
            transform: rotate(15deg) scale(1.1);
            box-shadow: 0 4px 12px rgba(254, 238, 125, 0.4);
        }

        .search-btn svg {
            width: 14px;
            height: 14px;
            transition: transform 0.3s ease;
        }

        .search-btn:hover svg {
            transform: scale(1.2);
        }

        .search-input-inline {
            width: 0;
            opacity: 0;
            height: 32px;
            padding: 0;
            padding-right: 40px;
            border: 1.5px solid rgba(0,0,0,0.1);
            border-radius: 20px;
            background: white;
            font-family: 'Cairo', sans-serif;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            pointer-events: none;
            box-sizing: border-box;
        }

        .search-container-header:hover .search-input-inline {
            width: 180px;
            opacity: 1;
            padding-right: 40px;
            padding-left: 15px;
            pointer-events: auto;
        }

        .search-input-inline:focus {
            outline: none;
            border-color: #2c3e50;
        }

        /* Login & Donate Buttons - Smaller */
        .login-btn,
        .donate-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 6px 12px;
            border-radius: 20px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1.5px solid rgba(0,0,0,0.1);
            font-size: 0.75rem;
            background: white;
            position: relative;
            overflow: hidden;
        }

        /* Login Button Hover Effect */
        .login-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, #feee7d 0%, #fef99b 100%);
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
            z-index: -1;
        }

        .login-btn:hover::before {
            width: 200%;
            height: 200%;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            border-color: #feee7d;
            box-shadow: 0 4px 12px rgba(254, 238, 125, 0.4);
            color: #2c3e50;
        }

        .login-btn:hover svg {
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }

        /* Donate Button */
        .donate-btn {
            background: linear-gradient(135deg, #bad1e3 0%, #dbe9f6 100%);
            border-color: transparent;
        }

        .donate-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, #feee7d 0%, #fef99b 100%);
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
            z-index: -1;
        }

        .donate-btn:hover::before {
            width: 200%;
            height: 200%;
        }

        .donate-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 4px 15px rgba(186, 209, 227, 0.5);
            border-color: #feee7d;
        }

        .donate-btn:hover svg {
            transform: scale(1.2) rotate(5deg);
            transition: transform 0.3s ease;
        }

        .login-btn svg,
        .donate-btn svg {
            width: 14px;
            height: 14px;
            transition: transform 0.3s ease;
        }

        .login-text,
        .donate-text {
            font-size: 0.75rem;
            position: relative;
            z-index: 1;
        }

        /* User Menu - Smaller */
        .user-menu {
            position: relative;
        }

        .user-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 6px 12px;
            border-radius: 20px;
            background: white;
            border: 1.5px solid rgba(0,0,0,0.1);
            color: #2c3e50;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Cairo', sans-serif;
            font-size: 0.75rem;
            position: relative;
            overflow: hidden;
        }

        .user-btn svg {
            width: 14px;
            height: 14px;
        }

        .user-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, #feee7d 0%, #fef99b 100%);
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
            z-index: -1;
        }

        .user-btn:hover::before {
            width: 200%;
            height: 200%;
        }

        .user-btn:hover {
            border-color: #feee7d;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(254, 238, 125, 0.4);
        }

        .user-btn:hover svg {
            transform: scale(1.1);
        }

        .user-dropdown {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: white;
            min-width: 200px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            overflow: hidden;
        }

        .user-menu:hover .user-dropdown,
        .user-btn:focus + .user-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .user-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            color: #2c3e50;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
            font-weight: 600;
        }

        .user-dropdown a:last-child {
            border-bottom: none;
        }

        .user-dropdown a:hover {
            background: #f8f9fa;
            color: #feee7d;
            transform: translateX(-5px);
        }

        /* Search Overlay */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 9999;
            display: none;
            align-items: flex-start;
            justify-content: center;
            padding-top: 100px;
        }

        .search-overlay.active {
            display: flex;
        }

        .search-container {
            width: 90%;
            max-width: 700px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 20px 60px 20px 30px;
            font-size: 1.5rem;
            border: 3px solid #feee7d;
            border-radius: 50px;
            background: white;
            color: #2c3e50;
            font-family: 'Cairo', sans-serif;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            box-shadow: 0 0 30px rgba(254, 238, 125, 0.6);
            transform: scale(1.02);
        }

        .search-close {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border: none;
            background: #feee7d;
            color: #2c3e50;
            font-size: 2rem;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 700;
        }

        .search-close:hover {
            background: #2c3e50;
            color: #feee7d;
            transform: translateY(-50%) rotate(90deg);
        }

        .search-results {
            margin-top: 30px;
            color: white;
            font-size: 1.1rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .top-bar-actions {
                padding: 6px 3%;
                gap: 4px;
            }

            nav {
                padding: 1rem 3%;
            }

            .logo {
                width: 60px;
                height: 60px;
            }

            .site-title {
                font-size: 1.3rem;
            }

            .nav-links {
                display: none;
            }

            .header-actions {
                gap: 4px;
            }

            .header-social {
                gap: 3px;
            }

            .header-social-icon {
                width: 28px;
                height: 28px;
            }

            .header-social-icon svg {
                width: 12px;
                height: 12px;
            }

            .search-container-header {
                height: 28px;
            }

            .search-btn {
                width: 28px;
                height: 28px;
                min-width: 28px;
            }

            .search-btn svg {
                width: 12px;
                height: 12px;
            }

            .search-input-inline {
                height: 28px;
                padding-right: 35px;
                font-size: 0.75rem;
            }

            .search-container-header:hover .search-input-inline {
                width: 140px;
                padding-right: 35px;
                padding-left: 12px;
            }

            .login-text,
            .donate-text {
                display: none;
            }

            .login-btn,
            .donate-btn {
                width: 28px;
                height: 28px;
                padding: 0;
                justify-content: center;
                border-radius: 50%;
            }

            .user-btn span {
                display: none;
            }

            .user-btn {
                width: 28px;
                height: 28px;
                padding: 0;
                justify-content: center;
                border-radius: 50%;
            }
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            border: 4px solid #feee7d;
            padding: 3px;
            background: white;
            box-shadow: 0 4px 15px rgba(254, 238, 125, 0.4);
            transition: all 0.3s ease;
        }

        header.scrolled .logo {
            width: 65px;
            height: 65px;
        }

        .logo:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 25px rgba(254, 238, 125, 0.6);
        }

        .site-title {
            color: #2c3e50;
            font-size: 2rem;
            font-weight: 900;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
        }

        .site-subtitle {
            color: #5a6c7d;
            font-size: 0.9rem;
            font-weight: 400;
            margin-top: 2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
        }

        .nav-links a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 12px 16px;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            font-weight: 700;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(254, 238, 125, 0.2) 0%, rgba(254, 249, 155, 0.2) 100%);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
            z-index: -1;
        }

        .nav-links a:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #feee7d 0%, #fef99b 100%);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-links a:hover::after {
            width: 60%;
        }

        .nav-links a:hover {
            color: #2c3e50;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(254, 238, 125, 0.3);
        }

        /* Dropdown Menu */
        .nav-links li {
            position: relative;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            min-width: 220px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-15px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            border: 2px solid transparent;
            overflow: hidden;
        }

        .nav-links li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            border-color: rgba(254, 238, 125, 0.3);
        }

        .dropdown::before {
            content: '';
            position: absolute;
            top: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #feee7d, #fef99b);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-links li:hover .dropdown::before {
            opacity: 1;
        }

        .dropdown li {
            list-style: none;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .dropdown li:last-child {
            border-bottom: none;
        }

        .dropdown li::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #feee7d, #fef99b);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .dropdown li:hover::before {
            transform: scaleY(1);
        }

        .dropdown a {
            display: flex;
            align-items: center;
            padding: 14px 20px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            position: relative;
        }

        .dropdown a::before {
            content: '◀';
            position: absolute;
            right: -20px;
            opacity: 0;
            color: #feee7d;
            transition: all 0.3s ease;
            font-size: 0.8rem;
        }

        .dropdown a:hover {
            background: linear-gradient(90deg, rgba(254, 238, 125, 0.1) 0%, transparent 100%);
            color: #2c3e50;
            padding-right: 30px;
            font-weight: 600;
        }

        .dropdown a:hover::before {
            right: 10px;
            opacity: 1;
        }

        .dropdown li:hover {
            background: rgba(254, 238, 125, 0.05);
        }

        .search-btn {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
        }

        .search-btn:hover {
            background: #e9ecef;
            border-color: #dee2e6;
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        .search-icon {
            font-size: 1.2rem;
        }

        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);     
            backdrop-filter: blur(5px);
            display: none;
            z-index: 2000;
            animation: fadeIn 0.3s ease;
        }

        .search-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-container {
            background: white;
            border-radius: 25px;
            padding: 20px;
            width: 90%;
            max-width: 500px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }

        .search-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1.1rem;
            padding: 10px;
            font-family: 'Cairo', sans-serif;
            background: transparent;
        }

        .search-input::placeholder {
            color: #7f8c8d;
        }

        .search-close {
            background: none;
            border: none;
            font-size: 2rem;
            color: #7f8c8d;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
        }

        .search-close:hover {
            color: #2c3e50;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 700px;
            overflow: hidden;
        }

        /* Hero Slider as Full Background */
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slider-track {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide {
            width: 25%;
            height: 100%;
            opacity: 0;
            position: relative;
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide.active img {
            transform: scale(1.05);
        }

        .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 40px 20px;
            animation: fadeInUp 1s ease-out;
        }

        .slide-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                180deg, 
                rgba(44, 62, 80, 0.4) 0%, 
                rgba(186, 209, 227, 0.5) 30%,
                rgba(219, 233, 246, 0.6) 60%,
                rgba(44, 62, 80, 0.5) 100%
            );
            z-index: -1;
        }

        .slide-content::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(
                circle at center,
                transparent 0%,
                rgba(0, 0, 0, 0.15) 100%
            );
            z-index: -1;
        }

        .slide-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: white;
            font-weight: 900;
            line-height: 1.2;
            text-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.4),
                0 2px 10px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(186, 209, 227, 0.3);
            letter-spacing: -0.5px;
            animation: slideInDown 0.8s ease-out 0.2s both;
        }

        .slide-content p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 400;
            line-height: 1.8;
            text-shadow: 
                0 2px 15px rgba(0, 0, 0, 0.3),
                0 1px 5px rgba(0, 0, 0, 0.2);
            max-width: 800px;
            animation: slideInUp 0.8s ease-out 0.4s both;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-content .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 24px;
            color: #2c3e50;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 4;
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.15),
                0 4px 10px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .slider-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(254, 238, 125, 0.4), rgba(254, 249, 155, 0.4));
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .slider-btn:hover {
            background: linear-gradient(135deg, #feee7d 0%, #fef99b 100%);
            transform: translateY(-50%) scale(1.15);
            box-shadow: 
                0 12px 35px rgba(254, 238, 125, 0.5),
                0 6px 15px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
            border-color: rgba(254, 238, 125, 0.6);
        }

        .slider-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .slider-btn:active {
            transform: translateY(-50%) scale(1.05);
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        .slider-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 4;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .slider-dots .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 2px solid transparent;
        }

        .slider-dots .dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(254, 238, 125, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
        }

        .slider-dots .dot:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: scale(1.2);
        }

        .slider-dots .dot:hover::before {
            width: 30px;
            height: 30px;
        }

        .slider-dots .dot.active {
            background: linear-gradient(135deg, #feee7d 0%, #fef99b 100%);
            transform: scale(1.4);
            width: 32px;
            border-radius: 16px;
            box-shadow: 
                0 4px 15px rgba(254, 238, 125, 0.5),
                0 2px 8px rgba(254, 238, 125, 0.3);
        }

        /* Hero Content Overlay */
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 900px;
            width: 90%;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 20px;
            z-index: -1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #c1d2e2;
            font-weight: 900;
            line-height: 1.2;
        }

        .hero-highlight {
            color: #e67e22;
            position: relative;
            display: inline-block;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            color: #ffffff;
            font-weight: 400;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 18px 45px;
            border: none;
            border-radius: 50px;
            font-size: 1.15rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .btn-primary {
            background: linear-gradient(135deg, #feee7d 0%, #fef99b 100%);
            color: #2c3e50;
            position: relative;
            overflow: hidden;
            animation: slideInUp 0.8s ease-out 0.6s both;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 
                0 12px 35px rgba(254, 238, 125, 0.5),
                0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-primary:hover::before {
            width: 400px;
            height: 400px;
        }

        .btn-primary:active {
            transform: translateY(-3px) scale(1.02);
        }

        .more{
            padding: 10px 8px;
            font-size: 0.8rem;
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: #2c3e50;
            border: 2px solid rgba(186, 209, 227, 0.5);
            position: relative;
            overflow: hidden;
            animation: slideInUp 0.8s ease-out 0.7s both;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(186, 209, 227, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-secondary:hover {
            background: linear-gradient(135deg, rgba(186, 209, 227, 0.95) 0%, rgba(219, 233, 246, 0.95) 100%);
            border-color: rgba(186, 209, 227, 0.8);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 
                0 12px 35px rgba(186, 209, 227, 0.5),
                0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary:hover::before {
            width: 400px;
            height: 400px;
        }

        .btn-secondary:active {
            transform: translateY(-3px) scale(1.02);
        }

        /* Hero Slider Responsive Styles */
        @media (max-width: 1024px) {
            .slide-content h1 {
                font-size: 2.8rem;
            }
            
            .slide-content p {
                font-size: 1.2rem;
            }
            
            .slider-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                height: 500px;
            }
            
            .slide-content {
                padding: 30px 15px;
            }
            
            .slide-content h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .slide-content p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .slider-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .prev-btn {
                left: 10px;
            }
            
            .next-btn {
                right: 10px;
            }
            
            .slider-dots {
                bottom: 20px;
                padding: 8px 15px;
                gap: 8px;
            }
            
            .slider-dots .dot {
                width: 10px;
                height: 10px;
            }
            
            .slider-dots .dot.active {
                width: 24px;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
                padding: 16px 35px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                height: 450px;
            }
            
            .slide-content h1 {
                font-size: 1.6rem;
            }
            
            .slide-content p {
                font-size: 0.9rem;
            }
        }

        /* Wave Separator */
        .wave {
            position: relative;
            width: 100%;
            height: 80px;
            margin-top: -1px;
            overflow: hidden;
            line-height: 0;
        }

        .wave svg {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
        }

        /* Responsive Wave Height */
        @media (max-width: 768px) {
            .wave {
                height: 50px;
            }
        }


        
/* Announcements Section - Modern & Engaging */
        .announcements {
            padding: 50px 5%;
         /*   background: 
            radial-gradient(circle at 20% 80%, rgba(254, 238, 125, 0.02) 0%, #00000000 50%), radial-gradient(circle at 80% 20%, rgb(186 209 227 / 43%) 0%, #00000000 50%), repeating-linear-gradient(156deg, transparent, transparent 50px, rgb(186 209 227 / 30%) 50px, rgba(186, 209, 227, 0.015) 51px), linear-gradient(135deg, rgb(254 238 125 / 43%) 0%, rgb(186 209 227 / 38%) 50%, rgb(255 255 255 / 53%) 100%), linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
                linear-gradient(135deg, rgba(254, 238, 125, 0.02) 0%, rgba(186, 209, 227, 0.03) 50%, rgba(255, 255, 255, 0.04) 100%),
                linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);*/
            background: linear-gradient(135deg, #dbe9f6 0%, #bad1e3 100%);
            position: relative;
            overflow: hidden;
        }

        .announcements-container {
            margin: 0 auto;
            position: relative;
            z-index: 1;
            max-width: 1400px;
        }

        .announcements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        /* Show All Button */
        .announcements-show-all {
            text-align: center;
            margin-top: 50px;
        }

        .btn-show-all {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #feee7d 0%, #fef99b 100%);
            color: #2c3e50;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(254, 238, 125, 0.4);
            font-family: 'Cairo', sans-serif;
        }

        .btn-show-all:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(254, 238, 125, 0.5);
            background: linear-gradient(135deg, #fef99b 0%, #feee7d 100%);
        }

        .btn-show-all svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .btn-show-all:hover svg {
            transform: translateX(5px);
        }

        .announcement-card {
            background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
            border-radius: 16px;
            padding: 35px;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.08),
                0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(186, 209, 227, 0.15);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .announcement-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #feee7d 0%, #fef99b 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .announcement-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 20px 50px rgba(254, 238, 125, 0.2),
                0 8px 20px rgba(0, 0, 0, 0.15);
            border-color: rgba(254, 238, 125, 0.5);
            background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
        }

        .announcement-card:hover::before {
            opacity: 1;
        }

        .announcement-date-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #feee7d 0%, #fef99b 100%);
            color: #2c3e50;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(254, 238, 125, 0.3);
        }

        .announcement-icon {
            font-size: 1.2rem;
        }

        .announcement-title {
            font-size: 1rem;
            font-weight: 800;
            color: #2c3e50;
            line-height: 1.4;
            margin-bottom: 15px;
            text-align: right;
        }

        .announcement-description {
            color: #5a6c7d;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 25px;
            text-align: right;
            display: none;
        }

        .announcement-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #2c3e50;
            border: 2px solid #feee7d;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            pointer-events: none;
            transition: all 0.3s ease;
            text-decoration: none;
            font-family: 'Cairo', sans-serif;
        }

        .announcement-card:hover .announcement-read-more {
            background: linear-gradient(135deg, #feee7d 0%, #fef99b 100%);
            box-shadow: 0 4px 15px rgba(254, 238, 125, 0.4);
            transform: translateX(-3px);
        }

        .announcement-read-more svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .announcement-card:hover .announcement-read-more svg {
            transform: translateX(-4px);
        }

        .announcement-footer {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        /* Announcement Type Variations */
        .announcement-card.type-medical {
            border-top: 3px solid #bad1e3;
        }

        .announcement-card.type-registration {
            border-top: 3px solid #feee7d;
        }

        .announcement-card.type-general {
            border-top: 3px solid #dbe9f6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .announcements {
                padding: 50px 5%;
            }

            .announcements::before {
                width: 250px;
                height: 250px;
                top: -50px;
                right: -50px;
            }

            .announcements::after {
                width: 300px;
                height: 300px;
                bottom: -100px;
                left: -100px;
            }

            .announcements-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-top: 30px;
            }

            .announcement-card {
                padding: 28px;
            }

            .announcement-title {
                font-size: 1.3rem;
            }

            .announcement-description {
                font-size: 0.95rem;
            }

            .announcement-read-more {
                width: 100%;
                justify-content: center;
            }

            .announcements-show-all {
                margin-top: 35px;
            }

            .btn-show-all {
                padding: 14px 35px;
                font-size: 1rem;
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

                /* About Section */
        .about {
            padding: 50px 5%;
            background: white;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 30px;
            color: #2c3e50;
            font-weight: 900;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, #feee7d, #fef99b);
            border-radius: 3px;
        }

        .section-subtitle {
            color: #7f8c8d;
            font-size: 1.1rem;
            margin-top: 20px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 40px;
        }

        .about-content p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            color: #5a6c7d;
            line-height: 2;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .feature-box {
            background: linear-gradient(135deg, #ffffdb 0%, #fef99b 100%);
            padding: 25px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .feature-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(254, 238, 125, 0.3);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .feature-text {
            font-weight: 700;
            color: #2c3e50;
            font-size: 1rem;
        }

        .about-image {
            position: relative;
            text-align: center;
        }

        .about-image-wrapper {
            position: relative;
            display: inline-block;
        }

        .about-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 30px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
        }

        .image-decoration {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #feee7d, #fef99b);
            opacity: 0.5;
            z-index: -1;
        }

        .decoration-1 {
            top: -20px;
            right: -20px;
        }

        .decoration-2 {
            bottom: -20px;
            left: -20px;
        }

        /* Services Section */
        .services {
            background: #f8f9fa;
            padding: 50px 5%;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        /* Horizontal Slider Container */
        .services-slider-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .services-slider {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
            padding: 10px 0 30px 0;
            cursor: grab;
            will-change: scroll-position;
            transform: translateZ(0); /* Force hardware acceleration */
            -webkit-transform: translateZ(0);
        }

        .services-slider::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        .services-slider.dragging {
            cursor: grabbing;
            scroll-behavior: auto;
            user-select: none;
            -webkit-user-select: none;
        }

        .service-card {
            background: white;
            padding: 30px 25px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid rgba(254, 238, 125, 0.1);
            position: relative;
            overflow: hidden;
            flex: 0 0 auto;
            scroll-snap-align: start;
            width: calc((100% - 60px) / 3);
            min-width: 320px;
            max-width: 400px;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(254, 238, 125, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-color: rgba(254, 238, 125, 0.3);
        }

        .service-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            display: inline-block;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card h3 {
            color: #2c3e50;
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: #7f8c8d;
            line-height: 1.7;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        /* Navigation Arrows */
        .services-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: 2px solid rgba(254, 238, 125, 0.3);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #2c3e50;
            z-index: 10;
            opacity: 0.9;
        }

        .services-nav-btn:hover {
            background: #feee7d;
            border-color: #feee7d;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            opacity: 1;
        }

        .services-nav-btn:active {
            transform: translateY(-50%) scale(0.95);
        }

        .services-prev-btn {
            right: 15px;
        }

        .services-next-btn {
            left: 7px;
        }

        .services-nav-btn.hidden {
            opacity: 1;
            pointer-events: all;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .service-card {
                width: calc((100% - 30px) / 2);
                min-width: 300px;
            }
        }

        @media (max-width: 768px) {
            .services-container {
                padding: 20px 0;
            }

            .service-card {
                width: calc(100% - 40px);
                min-width: calc(100% - 40px);
                padding: 25px 20px;
            }

            .services-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .services-prev-btn {
                right: 15px;
            }

            .services-next-btn {
                left: -15px;
            }

            .service-icon {
                font-size: 3.5rem;
            }

            .service-card h3 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .service-card {
                width: calc(100% - 20px);
                min-width: calc(100% - 20px);
            }
        }

        /* Stats Section */
        .stats {
            padding: 50px 5%;
            background: linear-gradient(135deg, #ffffdb 0%, #fef99b 100%);
            position: relative;
            overflow: hidden;
        }

        .stats-video-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 0;
            pointer-events: none;
        }

        .stats-video-bg video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            object-fit: cover;
            pointer-events: none;
        }

        .stats-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 219, 0.75);
            z-index: 1;
        }

        .stats .section-header,
        .stats .stats-grid {
            position: relative;
            z-index: 2;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.25);
            padding: 40px;
            border-radius: 25px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(135deg, #bad1e3 0%, #dbe9f6 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .stat-item:hover::before {
            opacity: 0.7;
        }

        .stat-item:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .stat-item > * {
            position: relative;
            z-index: 1;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #5a6c7d;
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Projects Section */
        .projects {
            padding:50px 5%;
            background: linear-gradient(135deg, #dbe9f6 0%, #bad1e3 100%);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .projects-grid a {
            display: flex;
            text-decoration: none;
            color: inherit;
            height: 100%;
        }

        .show-all-container {
            text-align: center;
            margin-top: 40px;
        }

        /* Partners Section - Smooth Infinite Loop */
        .partners {
            padding: 50px 5%;
            background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
        }

        .partners-slider {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
        }

        .partners-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 30px 0;
        }

        .partners-track {
            display: flex;
            gap: 40px;
            width: max-content;
            animation: smoothScroll 100s linear infinite;
            animation-iteration-count: infinite;
            will-change: transform;
            transform:translateX(0);
            animation-name:scrolling;
            
        }
        @keyframes scrolling{
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(100%);
                }
         }

        .partners-track:hover {
            animation-play-state: paused;
        }

        @keyframes smoothScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-33.333% - 13.333px));
            }
        }

        .partner-slide {
            flex-shrink: 0;
            width: 180px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 16px;

            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                        box-shadow 0.3s ease,
                        border-color 0.3s ease;
        }
 
        .partner-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: grayscale(20%);
        }

        .partner-slide:hover img {
            filter: grayscale(0%) brightness(1.05);
        }

        @media (max-width: 1024px) {
            .partner-slide {
                width: 150px;
                height: 100px;
                padding: 15px;
            }
            .partners-track {
                gap: 30px;
            }
        }

        @media (max-width: 1024px) {
            @keyframes smoothScroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-33.333% - 10px));
                }
            }
        }

        @media (max-width: 768px) {
            .partner-slide {
                width: 120px;
                height: 80px;
                padding: 12px;
            }
            .partners-track {
                gap: 20px;
                animation: smoothScrollMobile 30s linear infinite;
            }
            
            @keyframes smoothScrollMobile {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-33.333% - 6.666px));
                }
            }
        }

        /*-----------------------------------------------------------------------------------*/
        /* MAIN NEWS
        /*-----------------------------------------------------------------------------------*/
        .item {
            box-sizing: border-box;
            display: block;
            height: 100%;
            transition: all 0.5s ease;
            position: relative;
            text-decoration: none !important;
        }

        .item-image {
            background-position: center;
            background-size: cover;
            display: block;
            position: relative;
            border-radius: 15px;
            height: 100%;
            background-color: #f0f4f7;
        }

        .item-date {
            color: #2c3e50;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            border-radius: 5px;
            background: var(--accent);
            padding: 3px 5px;
            height: 30px;
            line-height: 25px;
            min-width: 64px;
            box-sizing: border-box;
            width: fit-content;
            margin-bottom: 15px;
            transition: opacity 0.3s ease, background-color 0.3s ease;
        }

        .item-date:empty {
            display: none !important;
        }

        .item:hover .item-date {
            background-color: var(--accent);

        }

        .item-title {
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            line-clamp: 4;
            -webkit-box-orient: vertical;
            text-decoration: none;
        }

        .accordion {
            padding: 50px 5%;
        }

        .container {
            position: relative;            max-width: 1400px;
            box-sizing: border-box;
            margin: 0 auto;
        }

        .accordion .container {
            display: flex;
            gap: 15px;
        }

        .accordion .item {
            width: 15.5%;
            height: 420px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px 20px 30px 20px;
            color: var(--text-dark);
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.5s ease;
            flex-shrink: 0;
            opacity: 0;
            transform: translateX(20px);
            text-decoration: none;
        }

        :dir(ltr) .accordion .item {
            transform: translateX(-20px);
        }

        .accordion .item:last-child {
            margin-right: auto;
        }

        :dir(ltr) .accordion .item:last-child {
            margin-right: unset;
            margin-left: auto;
        }

        .accordion .item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .accordion .item-title {
            opacity: 0;
            font-size: 30px;
            line-height: normal;
            transform: translateY(50px);
            -webkit-line-clamp: 3;
            line-clamp: 3;
            min-height: 80px;
        }

        .accordion .item.active .item-title {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.3s 0.3s ease;
        }

        .accordion .item-subtitle {
            font-size: 14px;
            color: var(--text-light);
            position: absolute;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            line-clamp: 4;
            -webkit-box-orient: vertical;
        }

        .accordion .item.active .item-subtitle {
            display: none;
        }

        .accordion .item.active {
            width: 50%;
        }

        .accordion .item.active .item-date {
            margin-right: 0;
        }

        .accordion .item-date {
        background: var(--accent);
        }

        .accordion .item-image::before {
            content: "";
            position: absolute;
            display: block;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            /* background: linear-gradient(0deg,#bad1e3 0%,  #dbe9f6  98.21%); */
            background: linear-gradient(0deg, var(--primary) 0%, rgba(196, 196, 196, 0.00) 98.21%);
            border-radius: inherit;
        }

        .accordion .item-image {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            border-radius: inherit;
            background-position: left center;
            transition: all 0.5s ease;
        }

        .accordion .item.active .item-image {
            background-position: center;
        }

        /* Accordion Responsive Styles */
        @media (max-width: 1024px) {
            .accordion .container {
                gap: 10px;
            }

            .accordion .item {
                width: 18%;
                height: 380px;
                padding: 15px 15px 25px 15px;
            }

            .accordion .item.active {
                width: 46%;
            }

            .accordion .item-title {
                font-size: 24px;
            }

            .accordion .item-subtitle {
                font-size: 12px;
            }
        }

        @media (max-width: 768px) {
            .accordion {
                padding: 30px 3%;
            }

            .accordion .container {
                display: flex;
                flex-direction: column;
                gap: 15px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                padding-bottom: 10px;
            }

            .accordion .container::-webkit-scrollbar {
                height: 6px;
            }

            .accordion .container::-webkit-scrollbar-track {
                background: rgba(0, 0, 0, 0.1);
                border-radius: 10px;
            }

            .accordion .container::-webkit-scrollbar-thumb {
                background: rgba(186, 209, 227, 0.5);
                border-radius: 10px;
            }

            .accordion .container::-webkit-scrollbar-thumb:hover {
                background: rgba(186, 209, 227, 0.7);
            }

            .accordion .item {
                width: 100%;
                min-width: 100%;
                height: 350px;
                padding: 20px;
                flex-shrink: 0;
                scroll-snap-align: start;
                transform: translateX(0);
            }

            .accordion .item:last-child {
                margin-right: 0;
            }

            :dir(ltr) .accordion .item:last-child {
                margin-left: 0;
            }

            .accordion .item.active {
                width: 100%;
            }

            .accordion .item-title {
                font-size: 22px;
                min-height: 66px;
            }

            .accordion .item-subtitle {
                font-size: 13px;
                position: relative;
                margin-bottom: 10px;
            }

            .accordion .item.active .item-subtitle {
                display: block;
                opacity: 0.8;
            }

            .accordion .item-date {
                font-size: 12px;
                padding: 5px 10px;
            }
        }

        @media (max-width: 480px) {
            .accordion {
                padding: 25px 2%;
            }

            .accordion .item {
                height: 300px;
                padding: 15px;
            }

            .accordion .item-title {
                font-size: 18px;
                min-height: 54px;
                line-height: 1.3;
                font-weight: 600;
            }

            .accordion .item-subtitle {
                font-size: 12px;
            }

            .accordion .item-date {
                font-size: 11px;
                padding: 4px 8px;
            }
        }

        /* Calendar Events Section */
        .calendar-events {
            padding: 50px 5%;
            background: linear-gradient(135deg, #ffffdb 0%, #feee7d 100%);
        }

        .calendar-events-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: stretch;
        }

        .events-section {
            background: white;
            border-radius: 25px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .events-list {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .event-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .event-item:hover {
            transform: translateX(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .event-marker {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .event-details h4 {
            color: #2c3e50;
            margin-bottom: 5px;
            font-size: 1rem;
            font-weight: 600;
        }

        .event-details p {
            color: #7f8c8d;
            font-size: 0.85rem;
            line-height: 1.4;
            margin-bottom: 5px;
        }

        .event-time {
            color: #feee7d;
            font-weight: 600;
            font-size: 0.8rem;
        }

        .event-card-horizontal {
            background: white;
            border-radius: 20px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            min-width: 300px;
            flex-shrink: 0;
        }

        .event-card-horizontal:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .event-date {
            width: 70px;
            height: 70px;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            flex-shrink: 0;
        }

        .event-date .day {
            font-size: 1.6rem;
            line-height: 1;
        }

        .event-date .month {
            font-size: 0.7rem;
            margin-top: 2px;
        }

        .event-content h3 {
            color: #2c3e50;
            margin-bottom: 6px;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .event-content p {
            color: #7f8c8d;
            line-height: 1.5;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .event-time {
            color: #feee7d;
            font-weight: 600;
            font-size: 0.8rem;
        }

        .calendar-section {
            background: white;
            border-radius: 25px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .calendar {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .calendar {
            max-width: 350px;
        }

        .calendar-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .calendar-header h3 {
            color: #2c3e50;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
            margin-bottom: 10px;
        }

        .calendar-weekdays div {
            text-align: center;
            font-weight: 600;
            color: #7f8c8d;
            font-size: 0.8rem;
            padding: 8px 0;
        }

        .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #2c3e50;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 8px;
            position: relative;
        }

        .calendar-day:hover {
            background: #feee7d;
            color: #2c3e50;
        }

        .calendar-day.special {
            background: linear-gradient(135deg, #feee7d, #fef99b);
            color: #2c3e50;
            font-weight: 700;
            border: 2px solid #e67e22;
            box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.3);
        }

        .calendar-day.special::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border: 2px solid #e67e22;
            border-radius: 8px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
            100% {
                opacity: 1;
            }
        }

        .calendar-day.empty {
            background: transparent;
            cursor: default;
        }

        .project-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 450px;
        }

        .project-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .project-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #dbe9f6 0%, #bad1e3 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 150%;
            object-fit: contain;
            display: block;
        }

        .project-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .project-card:hover .project-image::before {
            left: 100%;
        }

        .project-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .project-content h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .project-content p {
            color: #7f8c8d;
            line-height: 1.8;
            flex: 1;
        }

        /* Contact Section */
        .contact {
            padding: 50px 5%;
            background: linear-gradient(135deg, #bad1e3 0%, #dbe9f6 100%);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(-10px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .contact-icon {
            font-size: 2.5rem;
            color: #2c3e50;
            background: linear-gradient(135deg, #fef99b 0%, #feee7d 100%);
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .contact-item h4 {
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 1.2rem;
        }

        .contact-item p {
            color: #7f8c8d;
            line-height: 1.6;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid #dbe9f6;
            border-radius: 15px;
            font-size: 1rem;
            font-family: 'Cairo', inherit;
            transition: all 0.3s ease;
            margin-bottom: 20px;
            background: #f8f9fa;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #feee7d;
            background: white;
            box-shadow: 0 0 0 4px rgba(254, 238, 125, 0.1);
        }

        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 60px 5% 30px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 3.2fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about h3 {
            color: #feee7d;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .footer-about p {
            line-height: 1.8;
            color: #bdc3c7;
            margin-bottom: 20px;
        }

        .footer-content-left {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .footer-map-grid {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .footer-map-grid h3 {
            color: #feee7d;
            margin-bottom: 15px;
            font-size: 1.3rem;
            text-align: center;
        }

        .footer-map-container {
            flex: 1;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            margin-bottom: 15px;
        }

        .footer-map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            min-height: 200px;
        }

        .footer-map-actions {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .footer-map-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: linear-gradient(135deg, #feee7d 0%, #fef99b 100%);
            color: #2c3e50;
            text-decoration: none;
            border-radius: 20px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(254, 238, 125, 0.3);
            font-size: 0.85rem;
        }

        .footer-map-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(254, 238, 125, 0.5);
        }

        .footer-section h4 {
            color: #feee7d;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #feee7d;
            transform: translateX(-5px);
        }


        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
        }

        .social-icon:hover {
            background: #feee7d;
            color: #2c3e50;
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bdc3c7;
        }

        .footer-bottom p {
            margin-bottom: 10px;
        }


        /* Newsletter Form */
        .newsletter-form {
            display: flex;
            gap: 8px;
            flex-direction: column;
        }

        .newsletter-form input[type="email"] {
            padding: 12px 15px;
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-family: 'Cairo', sans-serif;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .newsletter-form input[type="email"]::placeholder {
            color: #bdc3c7;
        }

        .newsletter-form input[type="email"]:focus {
            outline: none;
            border-color: #feee7d;
            background: rgba(255,255,255,0.15);
        }

        .newsletter-btn {
            padding: 12px 20px;
            background: linear-gradient(135deg, #feee7d 0%, #fef99b 100%);
            color: #2c3e50;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-family: 'Cairo', sans-serif;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(254, 238, 125, 0.4);
        }

        .newsletter-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .about-grid,
            .contact-container,
            .calendar-events-container {
                grid-template-columns: 1fr;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .footer-map-container {
                min-height: 180px;
            }

            .footer-map-grid h3 {
                font-size: 1.1rem;
            }

            .footer-map-actions {
                gap: 8px;
            }

            .footer-map-btn {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
        }

            .events-horizontal {
                flex-direction: row;
                overflow-x: auto;
                gap: 15px;
                padding: 10px 0;

                scrollbar-width: thin;
            }

            .events-horizontal::-webkit-scrollbar {
                height: 6px;
            }

            .events-horizontal::-webkit-scrollbar-track {
                background: transparent;
            }

            .events-horizontal::-webkit-scrollbar-thumb {
                background: #feee7d;
                border-radius: 3px;
            }

            .event-card-horizontal {
                min-width: 280px;
                flex-shrink: 0;
            }

            .calendar {
                max-width: 100%;
            }

        /* Social Media Sidebar - Hidden (now in header) */
        .social-sidebar {
            display: none;
        }

        .social-icon-sidebar {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #2c3e50;
            text-decoration: none;
            transition: all 0.6s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border: 1px solid rgba(0,0,0,0.1);
        }

        .social-icon-sidebar:hover {
            transform: translateX(5px) scale(1.05);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

        /* Facebook hover */
        .social-sidebar a:nth-child(1):hover {
            background: #1877F2;
            color: white;
        }

        /* Instagram hover */
        .social-sidebar a:nth-child(2):hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
        }

        /* Twitter hover */
        .social-sidebar a:nth-child(3):hover {
            background: #1DA1F2;
            color: white;
        }

        /* WhatsApp hover */
        .social-sidebar a:nth-child(4):hover {
            background: #25D366;
            color: white;
        }

        /* Scroll to Top Button */
        .scroll-to-top-btn {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: white;
            border: 3px solid #7f8c8d;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            display: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            font-size: 1.5rem;
            color: #2c3e50;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scroll-to-top-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

        .scroll-to-top-btn.active {
            border-color: #feee7d;
            background: #feee7d;
        }

        .arrow-up {
            font-size: 1.2rem;
            font-weight: bold;
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }
/* LTR Overrides */
html[dir='ltr'] { direction: ltr; text-align: left; }
html[dir='ltr'] .nav-links { margin-right: auto; margin-left: 0; }
html[dir='ltr'] .logo-section { margin-left: 0; margin-right: auto; }

