
        /* Global Styles */
        :root {
            --orange: #FF7F00; /* Adjusted orange to match Ethiopian flag */
            --blue: #0784FF; /* Adjusted blue to match Ethiopian flag */
            --dark-blue: #0066CC;
            --light-bg: #f8f9fa;
            --dark-text: #333;
            --light-text: #fff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark-text);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background: var(--blue);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        
        .btn-blue {
            background: var(--blue);
        }
        
        .btn-blue:hover {
            background: var(--dark-blue);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-text);
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--orange);
        }
        
        /* Header & Navigation */
        header {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: white;
            box-shadow: var(--shadow);
            padding: 15px 0;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            width: 60px;
            height: 60px;
            background: var(--orange);
            border-radius: 50%;
            margin-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--blue);
        }
        
        .logo-text span {
            color: var(--orange);


}
        
        .nav-links {
            display: none;
            list-style: none;
        }

        .menu-toggle {
            background: transparent;
            border: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--dark-text);
            display: none;
        }

        /* Mobile nav dropdown */
        .nav-links.open {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            right: 0;
            left: 0;
            background: #fff;
            padding: 10px 15px;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        
        .nav-links li {
            margin: 0 15px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--orange);
        }
        
        .cta-btn {
            background: var(--blue);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: bold;
            animation: blink 2s infinite;
        }
        @media (min-width:768px){
            .nav-links{display: flex!important}
            .menu-toggle{display: none}
        }
        
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        
        /* NEW HERO SECTION  */
        .hero {
            padding: 100px 0 100px;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://th.bing.com/th/id/R.631dfdb6bd638b25d40793998166773b?rik=IvkyAvliQr0Gbw&pid=ImgRaw&r=0');
            background-size: cover;
            color: white;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.0rem;
            margin-bottom: 30px;
            color: white;
            letter-spacing: 2px;
        }
        
        .hero-tagline {
            font-size: 3.5rem;
            margin-bottom: 40px;
            color: var(--orange);
            font-weight: bold;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
        }
        
        .hero-btn {
            padding: 15px 30px;
            border-radius: 30px;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .hero-btn.primary {
            background: var(--orange);
            color: white;
        }
        
        .hero-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .hero-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .hero-services {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }
        
        .hero-service {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            width: 180px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .hero-service:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
        }
        
        .hero-service i {
            font-size: 2.5rem;
            color: var(--orange);
            margin-bottom: 15px;
        }
        
        .hero-service h3 {
            color: white;
            font-size: 1.1rem;
        }
        
        /* About Section */
        .about {
            background: var(--light-bg);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;


}
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            color: var(--blue);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        .about-image {
            flex: 1;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        /* Services Section */
        .services {
            background: white;
           padding-top: 10px;
           padding-bottom: 10px;
        }
        
        .services-intro {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .services-intro h2 {
            font-size: 2.2rem;
        }
        
        .services-intro h2 span.blue {
            color: var(--blue);
        }
        
        .services-intro h2 span.red {
            color: #ff4d4d;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: #0066CC;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--orange);
            margin-bottom: 20px;
            
        }
        
        .service-card h3 {
             color: white;
            margin-bottom: 15px;
            
        }
       .service-card p {
            color: white;
        }
        
        /* Process Section */
        .process {
            background: var(--light-bg);
            padding-bottom: 10px;
        }
        
         .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .process-card {
            background: var(--dark-blue);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            min-height: 370px;
            height: auto;
            
        }
        
        .process-steps {
            display:flex;
            justify-content: space-between;
            margin-top: 50px;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            width: 80%;
            height: 5px;
            background: var(--orange);
            z-index: 1;
        }
        
        .step {
            text-align: justify;
            position: relative;
            z-index: 2;
            flex: 1;
            padding: 0 20px;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: var(--orange);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .step h3 {
            color: white;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .step p {
            color: white;
        }
        
        .step-amharic {
            font-style: italic;
            margin-top: 10px;
            color: var(--orange);
            font-weight: 500;
        }
        
        /* Pricing Section */
        .pricing {
            background: white;
        }
        
        .pricing-plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .plan {
            background: linear-gradient(145deg, #f0f0f0, #e6e6e6);
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .plan:hover {
            transform: scale(1.03);
        }


.plan.popular {
            background: linear-gradient(145deg, lightskyblue, var(--dark-blue));
            color: white;
            transform: scale(1.05);
        }
        
        .plan.popular .btn {
            background: var(--orange);
        }
        
        .plan-header h3 {
            color: var(--blue);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .plan.popular .plan-header h3 {
            color: white;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 10px;
        }
        
        .plan.popular .price {
            color: white;
        }
        
        .plan-features {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }
        
        .plan-features li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .plan-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--orange);
            font-weight: bold;
        }
        
       
        /* Blog Section */
        .blog {
            background: white;
        }
        
        .blog-posts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .blog-post {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .blog-image {
            height: 200px;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue);
            font-size: 3rem;
        }
        
        .blog-content {
            padding: 20px;
        }
        
        .blog-content h3 {
            color: var(--blue);
            margin-bottom: 10px;


}
        
        .blog-content p {
            color: #555;
            margin-bottom: 15px;
        }
        
        .read-more {
            color: var(--orange);
            text-decoration: none;
            font-weight: 600;
        }
        /* Clients Section*/
                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
      
        .client-container {
            max-width: none;
            width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            text-align: center;
            height: 400px;
             grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
        
       .client-container h1 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 2.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        
        .subtitle {
            color: #7f8c8d;
            margin-bottom: 40px;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .marquee-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 30px 0;
            margin: 30px 0;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            height: 300px;
             grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
        
        .marquee {
            display: flex;
            width: 200%;
            align-items: center;
            gap: 20px;
            animation: marquee 30s linear infinite;
            
        }
        
        .marquee:hover {
            animation-play-state: paused;
        }
        
       
        .client-member, .clent-member{
            padding: 10px;
            min-width: 260px;
        }
        .client:hover {
            transform: scale(1.05);
        }
        
        .logo-symbol {
            background: white;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            color: #34495e;
            transition: all 0.3s ease;
        }
        .logo-symbol img{
            width: 140px;
            height: 140px;
            object-fit: contain;
        }
        .logo:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }
        
        .logo-symbol {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .controls {
            margin-top: 20px;
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
      
       
        .client-container h3 {
            color: var(--blue);
            margin-bottom: 10px;
        }
        
        .client-container p {
            color: #7f8c8d;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .menu-toggle{display: inline-block}
            .marquee { animation-duration: 20s; }
            .client-container h1 { font-size: 2rem; }
            .logo img { width: 50px; height: 50px; }
            .logo-text { font-size: 1.2rem; }
        }
        
        @media (max-width: 480px) {
            .marquee { animation-duration: 15s; }
            .client-container h1 { font-size: 1.8rem; }
            .controls { flex-direction: column; align-items: center; }
            .logo img { width: 42px; height: 42px; }
            .logo-text { font-size: 1rem; }
        }
        /* Team Section */
        .team {
            background: var(--light-bg);
        }
        
        .team-members {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .team-member {
            text-align: center;
            width: 200px;
        }
        
        .member-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            background: var(--blue);
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        .round-image{
            width: 100%;
            height: auto;
        }
        
        .member-name {
            color: var(--blue);
            margin-bottom: 5px;
        }
        
        .member-role {
            color: var(--orange);
            font-style: italic;
        }
        
        /* Contact Section */
        .contact {
            background: white;
        }
        
        .contact-content {
            display: flex;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h2 {
            color: var(--blue);
            margin-bottom: 20px;
        }
        
        .contact-info p {
            margin-bottom: 30px;
        }
        
        .contact-form {
            flex: 1;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background:var(--dark-blue);
            color: white;
            padding: 20px 0 10px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--orange);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .footer-column p {
            margin-bottom: 20px;
            color:white;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--orange);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background:var(--orange);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--orange);


transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: var(--orange);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--orange);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: var(--shadow);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 99;
        }
        
        .back-to-top.visible {
            opacity: 1;
        }
        
        .back-to-top:hover {
            background: var(--blue);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content,
            .about-content,
            .contact-content {
                flex-direction: column;
            }
            
            .hero-text,
            .hero-image,
            .about-text,
            .about-image,
            .contact-info,
            .contact-form {
                padding: 0;
                margin-bottom: 30px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .plan.popular {
                transform: scale(1);
            }
            
            .hero-services {
                gap: 15px;
            }
            
            .hero-service {
                width: 150px;
                padding: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .navbar { flex-direction: row; justify-content: space-between; }
            .logo { margin-bottom: 0; }
            .nav-links { flex-wrap: nowrap; justify-content: flex-start; }
            .nav-links li { margin: 10px 0; }
            .hero { padding: 180px 0 80px; }
            .section-title h2 { font-size: 2rem; }
            .hero h1 { font-size: 2rem; }
            .hero-tagline { font-size: 1.2rem; }
            .hero-buttons { flex-direction: column; align-items: center; }
            .hero-services { flex-direction: column; align-items: center; }
            .hero-service { width: 100%; max-width: 300px; }
        }