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

/* Body styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
}

h1{
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-top: 20px;
}

.container {
  width: 90%;
  margin: 0 auto;
}

/* Header styles */
header {
  background-color: #333;
  padding: 0;
  position: relative;
}

.logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translate(-50%);
  z-index: 999; /* Ensure it appears on top of other elements */
}

.logo img {
  width: 200px;
}

nav {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 999; /* Ensure it appears on top of other elements */
}

.navigation ul {
  list-style-type: none;
}

.navigation ul li {
  display: inline-block;
  margin-left: 20px;
}

.navigation ul li a {
  color: #fff;
  text-decoration: none;
  font-size:1.5rem;
}

.navigation ul li a:hover {
  color: #333;
}

/* CSS for the video */
#video-container {
  position: relative;
  width: 100%;
}

#video {
  width: 100%;
  height: 100vh;
  object-fit: cover; /* Cover the entire container while maintaining aspect ratio */
}

/* Button container styles */
#button-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  text-align: center;
}

#button-container h1 {
  margin-bottom: 30px;
  color: #fff;
}

/* Call button styles */
.call-button {
  background-color: #0000006e;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.call-button:hover {
  background-color: #000;
}

/* Service section styles */
.services {
  padding: 50px 20%;
  text-align: center;
}

.service {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.service img {
  max-width: 50%;
  border-radius: 10px;
}

.service-text {
  max-width: 80%;
  margin: 20px;
}

/* Contact section styles */
.contact {
  background-color: #fff;
  padding: 50px 0;
  text-align: center;
}

.contact h2 {
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #555;
}

.contact p a {
  color: #006adc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact p a:hover {
  color: #003c7c;
}

.contact p i {
  margin-right: 10px;
  color: #000;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
  .logo img {
    width: 120px;
  }

  .services {
    padding: 50px 10%;
  }

  .service{
    flex-direction: column;
  }

  .service img {
    max-width: 100%;
  }
}
