:root {
  --primary-color: #4CAF50;
  --secondary-color: #FF9800;
  --dark-color: #2E3B2F;
  --light-bg: #f9fdf9;
}

body {
  font-family: 'Cairo', sans-serif;
  background-color: var(--light-bg);
}


.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-brand {
  font-weight: 700;
  color: var(--primary-color) !important;
  font-size: 1.5rem;
}
.nav-link {
  font-weight: 600;
  color: var(--dark-color);
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
}


.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero.png');
  background-size: cover;
  background-position: center;
  height: 85vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.btn-custom {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  transition: transform 0.2s, background-color 0.3s;
}
.btn-custom:hover {
  background-color: #3d8b40;
  transform: translateY(-3px);
  color: white;
}


.section-padding {
  padding: 80px 0;
}
.section-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 5px;
}


.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  height: 100%;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-10px);
}
.feature-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}


.country-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.country-header {
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}
.list-group-item {
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
}
.list-group-item i {
  color: var(--secondary-color);
  margin-left: 10px;
}


.service-box {
  background: white;
  border-radius: 10px;
  padding: 30px;
  border-right: 5px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}


footer {
  background-color: var(--dark-color);
  color: white;
  padding: 50px 0 20px;
}
.footer-link {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.footer-link:hover {
  color: var(--secondary-color);
}
.contact-info i {
  width: 25px;
  color: var(--secondary-color);
}