/* General styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Main";
  src: url(assets/fonts/BDLifelessGrotesk-Regular.otf) format("opentype");
}
@font-face {
  font-family: "MainLight";
  src: url(assets/fonts/BDLifelessGrotesk-Light.otf) format("opentype");
}
@font-face {
  font-family: "Secondary";
  src: url(assets/fonts/Intrigora-Medium.otf) format("opentype");
}
@font-face {
  font-family: "Extra";
  src: url(assets/fonts/Neue\ Kaine\ Variable.ttf) format("truetype");
}

body {
  font-family: "Extra";
  background-color: #f5f3ee;
}

/* Navbar */
.navbar {
  font-family: "Extra";
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo img {
  height: 50px;
}

/* Desktop Navigation */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #333;
  width: 30px;
  height: 3px;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-container {
    display: none; /* Hide all nav links initially */
    flex-direction: column;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-container.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .logo {
    margin: 1rem 0;
  }
}

/* General Fade-In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation for Section Load */
.section-animate {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

/* Scroll-In Animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation when visible */
.section-visible {
  animation: slideUp 1s ease-out forwards;
}

/* About Us Main Section */
.about-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 3rem;
  opacity: 0; /* Initially hidden */
  transform: translateY(50px); /* Start from below */
}

.about-image {
  flex: 1;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 2;
  text-align: left;
}

.about-content h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-content .btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.about-content .btn:hover {
  background: #0056b3;
}

/* Our Mission & Why Choose Us */
.mission-section,
.why-choose-us,
.our-process {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: #ffffff;
  text-align: center;
  opacity: 0; /* Initially hidden */
  transform: translateY(50px); /* Start from below */
}

.mission-section h2,
.why-choose-us h2,
.our-process h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.mission-section p,
.why-choose-us p,
.our-process p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* Why Choose Us - Features */
.features-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.feature {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
}

.feature h3 {
  font-size: 1.5rem;
  color: #007bff;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 1rem;
  color: #555;
}

/* Our Process - Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
}

.process-step h3 {
  font-size: 1.5rem;
  color: #007bff;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 1rem;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .about-content .btn {
    display: block;
    width: max-content;
    margin: 0 auto;
  }

  .features-container,
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
}
