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

body {
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header Styles */
.header {
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  padding: 150px 20px;
  text-align: center;
  color: white;
}

.logo-img {
  width: 150px; /* Adjust the width of the logo */
  height: auto; /* Maintain aspect ratio */
  display: block;
}
.header h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.btn-primary {
  font-size: 1.5rem;
  padding: 15px 30px;
  background: royalblue;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: navy;
}

/* Navbar Styles */
.navbar {
  background: royalblue;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.nav-btn {
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-btn:hover {
  background-color: white;
  color: royalblue;
}

/* Parallax Section */
.parallax {
  background: url('../images/parallax-bg.jpg') no-repeat fixed center;
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Services Section */
.services-section {
  padding: 50px 20px;
  background: #f4f4f4;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-item {
  padding: 20px;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

/* Split Section */
.split-section {
  display: flex;
  height: 400px;
}
.slider {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.slider-container {
  width: 100%;
  height: 100%;
}
.slider-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-item.active {
  opacity: 1;
}
.about-section {
  flex: 1;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .nav-btn {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
  .split-section {
    flex-direction: column;
    height: auto;
  }
  .slider {
    height: 300px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
