
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #252628;
}

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

.navbar {
  background-color: #f4f4f4;
  color: #252628;
  padding: 20px 0;
  position: relative;
  z-index: 999;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.site-logo {
  height: 40px;
  margin-right: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #252628;
  font-weight: 500;
}

.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
}

.swiper {
  height: 100%;
}

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

.slider-text {
  position: absolute;
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #252628;
  z-index: 10;
}

.slider-text h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.slider-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 12px 24px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  transition: 0.3s;
}

.primary {
  background: #252628;
  color: #c72127;
}

.outline {
  border: 2px solid #252628;
  background: transparent;
  color: #252628;
}

.primary:hover {
  background: #f2f2f2;
}

.outline:hover {
  background: #252628;
  color: #c72127;
}
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #252628;
}

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

.navbar {
  background-color: #f4f4f4;
  color: #252628;
  padding: 20px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #252628;
  font-weight: 500;
}

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

@media (min-width: 768px) {
  .sm {
    display: none
  }
}

.hero {
  background: #c72127;
  color: #252628;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 12px 24px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  transition: 0.3s;
}

.primary {
  background: #252628;
  color: #c72127;
}

.outline {
  border: 2px solid #252628;
  background: transparent;
  color: #252628;
}

.primary:hover {
  background: #f2f2f2;
}

.outline:hover {
  background: #252628;
  color: #c72127;
}

.section-heading {
  text-align: center;
  margin: 60px 0 30px;
  font-size: 2rem;
  font-weight: 600;
}

.services {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.section-heading {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #c72127;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 330px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.about {
  background: #f9f9f9;
  padding: 80px 20px;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #252628;
}

.about-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-text ul {
  padding-left: 20px;
}

.about-text li {
  margin-bottom: 10px;
}

.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.counters {
  background: #252628fff;
  padding: 60px 20px;
  text-align: center;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.counter-box h3 {
  font-size: 2.5rem;
  color: #c72127;
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 1rem;
  color: #252628;
}

.job-search {
  background-color: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

.job-search h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #252628;
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.search-form input {
  padding: 12px;
  flex: 1 1 250px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.search-form button {
  background: #c72127;
  color: #252628;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-form button:hover {
  background: #a3191e;
}

.testimonials {
  background: #252628fff;
  padding: 80px 20px;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #f7f7f7;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 1rem;
  color: #c72127;
  margin: 0;
}

.footer {
  background-color: #252628;
  color: #252628;
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #c72127;
  margin-bottom: 15px;
}

.footer-col p, .footer-col a {
  font-size: 0.95rem;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
}

.footer-col a:hover {
  color: #252628;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #aaa;
}

.site-logo {
  height: 40px;
  
}

.logo {
  font-family: 'Oswald', sans-serif;
}

.footer-col > ul {
  padding: 0;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #f4f4f4;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .navbar .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: #252628;
  }

  .slider-text {
    left: 50%;
    width: 90%;
    font-size: 1rem;
  }

  .slider-text h1 {
    font-size: 1.5rem;
  }

  .slider-text p {
    font-size: 1rem;
  }

  .lg {
    display: none !important;
  }

  .container {
    padding: 0 10px;
  }

  .section, .service-card {
    padding: 20px 10px;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}

/* Default hide hamburger */
.menu-toggle {
  display: none;
}


.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}
