/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1rem 0;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar .nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #ffa500;
}

.navbar .btn-primary {
  background-color: #ffa500;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.navbar .btn-primary:hover {
  background-color: #e59400;
}

/* Mobile Menu Button */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #333;
  padding: 1rem;
  border-radius: 5px;
  margin-top: 1rem;
}

.mobile-nav-link {
  color: white;
  text-decoration: none;
  padding: 0.75rem 1rem;
  transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: #444;
}

.mobile-nav .btn-primary {
  margin-top: 1rem;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .mobile-nav.active {
    display: flex;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.slide-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-primary,
.btn-outline {
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary {
  background: #ffa500;
  color: white;
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #333;
}

.slider-navigation {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
}

.slider-dot.active {
  background: white;
}

/* About Section */
.about {
  padding: 4rem 0;
}

.about-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.divider {
  width: 50px;
  height: 3px;
  background: #ffa500;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: #666;
}

.link {
  color: #ffa500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: #ffa500;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.badge span {
  display: block;
  font-size: 0.875rem;
}

/* Services Section */
.services {
  padding: 4rem 0;
  background: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.service-card i {
  font-size: 2rem;
  color: #ffa500;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  margin-bottom: 1rem;
}

/* Stats Section */
.stats {
  padding: 4rem 0;
  background: #333;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat .value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffa500;
}

.stat .label {
  font-size: 1rem;
  color: #ccc;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 4rem 0;
}

.why-choose-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.why-choose-content .image {
  flex: 1;
}

.why-choose-content .image img {
  width: 100%;
  border-radius: 10px;
}

.reasons {
  flex: 1;
}

.reason {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reason i {
  font-size: 1.5rem;
  color: #ffa500;
  margin-top: 0.5rem;
}

.reason h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.reason p {
  color: #666;
}

/* CTA Section */
.cta {
  padding: 4rem 0;
  background: #ffa500;
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 2rem;
}

.cta .btn-primary {
  background: white;
  color: #ffa500;
}
/* Footer */
.footer {
  background: #111;
  color: white;
  padding: 4rem 0;
}

.footer .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-text {
  color: #aaa;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: white;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ffa500;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffa500;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-icon {
  color: #ffa500;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #aaa;
}
