/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Base Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
}

.hero-content h1 {
  font-size: 3rem;
}

.hero-content button {
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  background: #f90;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero-content button:hover {
  background: #e68000;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* Contact info section */
.contact-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Style for each phone number link */
.phone-link {
  display: flex;
  align-items: center;
  margin-left: 20px;
  text-decoration: none;
  color: #ecf007;
  font-size: 16px;
  text-decoration: none;
}

.phone-link i {
  margin-right: 5px; /* Space between icon and text */
}

/* Hover effect for phone links */
.phone-link:hover {
  color: #fff;
}

.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}


.slider-img{
  height: 300px;
}