 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700;800&display=swap');
        
        html {
            scroll-behavior: smooth;
			font-size: 16px;
		}
        @media (max-width: 1024px) {
            html { font-size: 15px; }
        }

        @media (max-width: 768px) {
            html { font-size: 14px; }
        }

        @media (max-width: 480px) {
            html { font-size: 13px; }
        }
        /* Scroll offset for fixed header */
        section[id] {
            scroll-margin-top: 60px;
        }
		body{
			  overflow-x: hidden;
		}
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(to right, #E4AE03, #F59E0B);
            width: 0%;
            z-index: 100;
            transition: width 0.3s ease;
        }
        
        .hero-pattern {
            background-color: #f9fafb;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%235d5cde' fill-opacity='0.1'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .dark .hero-pattern {
            background-color: #1f2937;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%238281e9' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .ethiopia-flag-colors {
            background: linear-gradient(to bottom, #078930 33%, #FCDD09 33%, #FCDD09 66%, #DA121A 66%);
        }
        
        .count-up-animation .number {
            display: inline-block;
        }
        
        .dark body {
            background-color: #111827;
            color: #F9FAFB;
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #E4AE03;
            transition: width 0.3s ease;
        }
        
        .dark .nav-link::after {
            background-color: #8281E9;
        }
        
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        
        .nav-link.active {
            color: #5D5CDE;
        }
        
        .dark .nav-link.active {
            color: #8281E9;
        }
        
        /* Dropdown Menu Styles */
        .dropdown {
    position: relative;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
            z-index: 50;
            overflow: hidden;
        }
        
        .dark .dropdown-menu {
            background-color: #1f2937;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            display: block;
            padding: 0.5rem 1rem;
            color: #4b5563;
            transition: background-color 0.2s ease, color 0.2s ease;
            font-size: 0.875rem;
        }
        
        .dark .dropdown-item {
            color: #e5e7eb;
        }
        
        .dropdown-item:hover {
            background-color: #f3f4f6;
            color: #5D5CDE;
        }
        
        .dark .dropdown-item:hover {
            background-color: #374151;
            color: #8281E9;
        }
        
        .dropdown-toggle {
            display: flex;
            align-items: center;
        }
        
        .dropdown-toggle i {
            margin-left: 0.25rem;
            font-size: 0.75rem;
            transition: transform 0.2s ease;
        }
        
        .dropdown:hover .dropdown-toggle i {
            transform: rotate(180deg);
        }
        
        /* Mobile Submenu Styles */
        .mobile-submenu {
            margin-left: 1rem;
            padding-left: 1rem;
            border-left: 1px solid #e5e7eb;
            margin-top: 0.5rem;
            display: none;

        }
        
        .dark .mobile-submenu {
            border-left: 1px solid #374151;
        }
        
        .mobile-submenu.active {
            display: block;
        }
        
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        
        .team-card:hover .team-overlay {
            opacity: 1;
        }
        
        .area-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .area-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .dark .area-card:hover {
            box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1), 0 10px 10px -5px rgba(255, 255, 255, 0.04);
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .float-animation {
            animation: float 5s ease-in-out infinite;
        }

        /* Mobile active link styles */
        .mobile-active-link {
            color: #5D5CDE;
            background-color: rgba(93, 92, 222, 0.1);
        }
        
        .dark .mobile-active-link {
            color: #8281E9;
            background-color: rgba(130, 129, 233, 0.1);
        }

        /* Custom moving animation for icons */
        .icon-pulse {
            animation: pulseGentle 3s ease-in-out infinite;
        }
        
        .icon-wiggle {
            animation: wiggle 6s ease-in-out infinite;
        }
        
        .icon-bounce {
            animation: bounce-mini 2s ease-in-out infinite;
        }
        
        .icon-spin {
            animation: spin 12s linear infinite;
        }
        
        .icon-float {
            animation: float 4s ease-in-out infinite;
        }
        
        /* Animation delays for visual variety */
        .delay-100 {
            animation-delay: 0.1s;
        }
        
        .delay-200 {
            animation-delay: 0.2s;
        }
        
        .delay-300 {
            animation-delay: 0.3s;
        }
        
        .delay-400 {
            animation-delay: 0.4s;
        }




/* Go to Top Button Styles */
#go-to-top {
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;

}

#go-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#go-to-top:hover {
  transform: translateY(-3px) scale(1.05);
}
