:root {
  --primary: #2ecc71;
  --secondary: #3498db;
  --accent: #e74c3c;
  --dark: #1a1a2e;
  --darker: #16213e;
  --light: #f1f1f1;
  --ethio-green: #078C3F;
  --ethio-yellow: #FCDD09;
  --ethio-red: #DA121A;
  --ethio-black: #474242;
  --card-shadow: rgba(0,0,0,0.15);
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f9fafb;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--dark);
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  border-radius: 4px;
}

.nav-links a:hover {
  background: var(--primary);
  color: #fff;
}

/* Dropdowns */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  min-width: 200px;
  padding: 0.25rem 0;
  z-index: 100;
}

.dropdown-content a {
  padding: 0.6rem 1rem;
  color: var(--dark);
}

.dropdown-content a:hover {
  background: #f1f5f9;
}

.dropdown:hover > .dropdown-content {
  display: flex;
}

/* Hero Section */
.main-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  gap: 2rem;
  flex-wrap: wrap;
  background: skyblue;
}

.main-hero .left {
  flex: 1;
  min-width: 250px;
}

.main-hero .left-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.main-hero .bounce-word {
  display: inline-block;
  color: var(--primary);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-8px); }
}

.main-hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #555;
}

.main-hero .right img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
}

.main-hero .right img:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Cards / Mission & Vision */
.mission-vision {
  background: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.mission-vision .container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.mission-vision .card {
  flex: 1;
  min-width: 250px;
  background: var(--light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.mission-vision i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* About Section */
.about-me {
  padding: 4rem 2rem;
  background: var(--light);
  text-align: center;
}

.about-me h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-me p {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.about-me img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 15px var(--card-shadow);
  transition: transform 0.3s ease;
}

.about-me img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--darker);
  color: #fff;
  padding: 3rem 5%;
  flex-wrap: wrap;
  gap: 2rem;
  border-radius: 10px 10px 0 0;
}

.footer-left h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-left p {
  max-width: 400px;
  line-height: 1.6;
  color: #d1d5db;
}

.footer-right .social-links {
  display: flex;
  gap: 1rem;
}

.footer-right .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #1e293b;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.footer-right .social-links a:hover {
  background: var(--primary);
  color: #111;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  background-color: var(--dark);
  color: #d1d5db;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  border: 2px solid var(--primary);
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--primary);
}

.btn i {
  margin-right: 0.5rem;
}
/* --- Original CSS --- */
/* Keep all the previous code as-is */

/* ======================== */
/* MOBILE RESPONSIVE STYLES */
/* ======================== */

@media screen and (max-width: 1024px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .main-hero {
    flex-direction: column;
    padding: 2rem 1rem;
    text-align: center;
  }
  .main-hero .right {
    margin-top: 1.5rem;
  }
  .mission-vision .container {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .main-hero .left-title {
    font-size: 2rem;
  }
  .main-hero p {
    font-size: 1rem;
  }
  .about-me img {
    width: 150px;
    height: 150px;
  }
  .mission-vision .card {
    padding: 1.5rem;
  }
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-right .social-links {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .main-hero .left-title {
    font-size: 1.6rem;
  }
  .main-hero p {
    font-size: 0.95rem;
  }
  .about-me p {
    font-size: 0.9rem;
  }
  .about-me img {
    width: 120px;
    height: 120px;
  }
  .mission-vision .card {
    min-width: 200px;
    padding: 1rem;
  }
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
