/* home.css - Home Page Section Specific Styles */

#home-page .hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#home-page .hero-slider .slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.8s ease-in-out;
}

#home-page .hero-slider .slide.active {
  opacity: 1;
  position: relative;
}

#home-page .hero-slider .overlay {
  background: rgba(0,0,0,0.5);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#home-page .hero-slider .hero-content h1 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 20px;
}

#home-page .hero-slider .hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 30px;
}

#home-page .hero-slider .btn {
  background: #ff9800;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

#home-page .hero-slider .btn:hover {
  background: #ff6a00;
}

/* About Section */
#home-page .about-section h2 {
  color: #060912;
  font-size: 36px;
  margin-bottom: 20px;
}

#home-page .about-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* Services Section */
#home-page .services-section .card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
}

#home-page .services-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Stats Section */
#home-page .stats-home .stat {
  text-align: center;
  margin-bottom: 20px;
}

#home-page .stats-home .stat h3 {
  font-size: 32px;
  color: #ff9800;
}

#home-page .stats-home .stat p {
  font-size: 14px;
  color: #333;
}

/* CTA Section */
#home-page .cta-section {
  text-align: center;
  background: #060912;
  color: #fff;
  padding: 60px 20px;
}

#home-page .cta-section .btn {
  background: #ff9800;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
}
/* Home Page Parallax Backgrounds */
#home-page .parallax-bg {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: #fff;
}

#home-page .parallax-bg .overlay {
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#home-page .parallax-bg h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

#home-page .parallax-bg p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
}
