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

/* Body styles */
body {
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  overflow: hidden;
}

/* Hero section */
.hero {
  background: url('images/Landing-Page-Desktop.jpg')
    no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

/* Overlay for better text visibility */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Content styling */
.content {
  z-index: 2;
  max-width: 600px;
  padding: 20px;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Button styling */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  color: #fff;
  background-color: #ff5e57;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e14b4b;
}
.logo{width:350px; margin-left: auto !important; margin-right: auto !important; display: block;}


/* 🌐 Mobile-specific background image */
@media (max-width: 768px) {
  .hero {
    background: url('images/Landing-Page-Mobile.png')
      no-repeat center center/cover;
  }

  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }
  .logo{width:300px; margin-left: auto !important; margin-right: auto !important; display: block;}
}
