/* General Styles */
body {
  font-family: 'Abel', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  margin: 0;
  font-weight: bold;
}

p {
  margin: 10px 0;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #0056b3;
}

/* Header with Logo and Social Media */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 10;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 7vw; /* 10% of the viewport width */
  height: auto; /* Maintain aspect ratio */
}

.svg {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  fill: black;
}

.social-media img {
  height: 24px;
  margin-left: 15px;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('../images/hero-bg.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align content to the left */
  text-align: left; /* Align text to the left */
  color: #fff;
  position: relative;
}

/* Dark Gradient on the Left Side */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%; /* Adjust the width of the gradient */
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* Ensure content is above the gradient */
  padding-left: 5%; /* Add padding to move content away from the edge */
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.cta-buttons .btn {
  margin: 0 10px 0 0; /* Adjust button spacing */
}

/* Search Bar */
.search-bar {
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.8);
}

.search-bar input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Introduction Section */
.introduction {
  padding: 60px 0;
  text-align: center;
}

.introduction h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.introduction p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.highlights {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.highlight-item {
  width: 30%;
  text-align: center;
}

.highlight-item img {
  width: 50px;
  height: 50px;
  margin: 0 10px;
}

.highlight-item h3 {
  font-size: 1.5rem;
  margin: 10px 0;
}

/* Key Features Section */
.key-features {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.key-features h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.features-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.feature-item {
  width: 30%;
  text-align: center;
}

.feature-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin: 10px 0;
}

/* Footer */
footer {
  padding: 40px 0;
  background-color: #333;
  color: #fff;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
}

.social-media img {
  width: 24px;
  height: 24px;
  margin: 0 10px;
}