body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background-color: #f4f4f4;
}

/* Top Info Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*background-color: #4caf93;*/
  color: #fff;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.top-bar .info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar .info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar .info span i {
  background-color: #fff;
  color: #4caf93;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

.top-bar .social-icons {
  display: flex;
  gap: 10px;
}

.top-bar .social-icons a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.top-bar .social-icons a:hover {
  color: #ffd700;
  transform: scale(1.2);
}

/* Main Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 2px 5px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .logo img {
  width: 50px;
}

.navbar nav {
  display: flex;
  gap: 20px;
}

.navbar nav a {
  text-decoration: none;
  color: #000c08;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.navbar nav a:hover {
  background-color: #2196f3;
  color: #fff;
  transform: scale(1.1);
}

.navbar nav .active {
  background-color: #6a1b9a;
  color: #fff;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #4caf93;
  transition: transform 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 70px;
  right: 20px;
  z-index: 1000;
  border-radius: 10px;
}

.mobile-menu a {
  text-decoration: none;
  color: #4caf93;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu a:hover {
  background-color: #4caf93;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Hero Section */
.hero {
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  object-fit: cover;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.content {
  padding: 16px;
  margin-top: 80px;
}


.hero button {
  background-color: #041F60FF;
  color: #FEFEFEFF;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.hero button:hover {
  transform: scale(1.1);
}

/* Services Section */
.services {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff;
}

.services h2 {
  font-size: 2rem;
  color: #000c08;
  margin-bottom: 30px;
}

.services .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.services .card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.services .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.services .card h3 {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #333;
}

.services .card p {
  padding: 0 15px 20px;
  color: #666;
}

.services .card:hover {
  transform: translateY(-10px);
}