/* Global Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #111;
  color: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* Header */
header {
  background: #000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  float: left;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

nav ul {
  list-style: none;
  float: right;
  margin: 0;
  padding: 0;
}

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

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Hero Video Section */
.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
}

.hero-overlay h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-overlay p {
  font-size: 20px;
  margin-bottom: 25px;
}

/* Button */
.btn {
  background: #fff;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background: #f1f1f1;
  color: #111;
}

/* Sections */
.about, .services, .swiper-section, .contact {
  padding: 60px 0;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #fff;
}

/* Services */
.services .service-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.service {
  flex: 1 1 calc(33.33% - 20px);
  background: #222;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.05);
  transition: 0.3s;
}

.service:hover {
  background: #333;
}

/* Swiper */
.swiper {
  width: 100%;
  height: 400px;
  margin-top: 30px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
}

/* Contact */
.contact p {
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  border-top: 1px solid #222;
}
.logo-fixed {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 999;
}

.logo-fixed img {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}





/* Responsive */
@media (max-width: 768px) {
  .services .service-list {
    flex-direction: column;
  }

  .logo, nav ul {
    float: none;
    text-align: center;
  }

  nav ul li {
    display: block;
    margin: 10px 0;
  }

  .hero-overlay h1 {
    font-size: 32px;
  }

  .hero-overlay p {
    font-size: 16px;
  }
  


}
