    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;
    }

    body {
      background-color: #f9f9f9;
      color: #1a2a24;
      line-height: 1.6;
    }

    .top-header {
      background-color: #1a2a24;
      color: #d6cebf;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 2rem;
      font-size: 0.9rem;
    }

    .top-left {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .top-left i {
      margin-right: 0.5rem;
    }

    .top-right {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .top-right .dropdown {
      position: relative;
    }

    .top-right .dropdown:hover .dropdown-menu {
      display: block;
    }

    .dropdown-toggle {
      cursor: pointer;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      right: 0;
      top: 100%;
      background-color: #4b6143;
      border: 1px solid #e4bb4a;
      padding: 0.5rem 1rem;
      z-index: 999;
    }

    .dropdown-menu a {
      color: #fff;
      text-decoration: none;
      display: block;
      padding: 0.25rem 0;
    }

    .dropdown-menu a:hover {
      color: #e4bb4a;
    }

    .social-icons a {
      color: #fff;
      margin-left: 0.5rem;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #e4bb4a;
    }

    .main-header {
      background-color: #fff;
      color: #4b6143;
      padding: 1rem 2rem;
      animation: fadeDown 1s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      flex: 1;
    }

    .brand h1 {
      font-size: 1.8rem;
      margin: 0;
    }

    .brand p {
      font-size: 1rem;
      font-weight: 400;
      color: #ccc;
      margin: 0;
    }

    .center-nav {
      display: flex;
      justify-content: center;
      flex: 2;
    }

    nav {
      background: none;
      padding: 0;
    }

    nav a {
      color: #4b6143;
      text-decoration: none;
      margin: 0 1rem;
      font-weight: 600;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #e4bb4a;
    }

    .right-icons {
      display: flex;
      gap: 1rem;
      justify-content: flex-end;
      align-items: center;
      flex: 1;
    }

    .right-icons i {
      font-size: 1.2rem;
      color: #4b6143;
      cursor: pointer;
    }

.hero {
  background: url('bg.png') center/cover no-repeat;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 0 1rem;
}

.hero-slide {
  position: absolute;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 1.5s ease;
  transform: translateY(30px);
  color: #fff;
  text-align: left;
  max-width: 600px;
  margin-left:-180px;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.hero-slide h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.subheading {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ddd;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #e4bb4a;
  color: #4b6143;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #1a2a24;
  color:#d6c6a5;
}

.info-boxes-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background:#4b6143;
  padding: 3rem 2rem;
  margin-top: 0px;
  position: relative;
  z-index: 5;
}

.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.info-boxes .box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-boxes .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  background-color:#fff;
  color:#000;
}

.info-boxes .box h4 {
  color: #4b6143;
  margin-bottom: 1rem;
}

.info-boxes .box h4:hover {
  color: #ebbd05;
  margin-bottom: 1rem;
}

.about-section {
  display: flex;
  min-height: 100vh;
  align-items: stretch;
  background: #fff;
  margin-top: 0px;
}

.about-image {
  flex: 1;
  background: url('Pasted image.png') center/cover no-repeat;
}

.about-content {
  flex: 1;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f8f9fa;
}

.about-content h2 {
  color: #4b6143;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

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

.about-content .cta-button {
  align-self: flex-start;
  padding: 0.8rem 1.5rem;
  background-color: #e4bb4a;
  color: #4b6143;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.about-content .cta-button:hover {
  background-color: #1a2a24;
  color:#d6c6a5;
}


    .section {
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: auto;
    }

    .section h2 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .section-title {
  font-size: 2.5rem;
  color: #4b6143;
  margin-bottom: 2rem;
}

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

.projects-section {
  background: #f1f5f9;
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-img {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.project-body {
  padding: 1.5rem;
  text-align: left;
}

.project-body h3 {
  font-size: 1.3rem;
  color: #4b6143;
  margin-bottom: 0.5rem;
}

.project-body p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.skills-facilities-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
  align-items: flex-start;
}

.skills, .facilities {
  flex: 1;
  min-width: 300px;
}

.skills h2, .facilities h2 {
  color: #4b6143;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.skill p {
  margin: 0;
  font-weight: bold;
  color: #333;
}

.progress {
  background: #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-bar {
  background: #e4bb4a;
  color: #fff;
  padding: 0.4rem 1rem;
  font-weight: bold;
  border-radius: 20px 0 0 20px;
  transition: width 1s ease-in-out;
}

.contact-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  color: #1a2a24;
}
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.contact-info {
  flex: 1 1 300px;
}
.contact-info h2 {
  margin-bottom: 1rem;
  color: #e4bb4a;
}
.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}
.contact-info i {
  color: #e4bb4a;
  margin-right: 0.5rem;
}
.contact-form {
  flex: 1 1 500px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-row input {
  flex: 1 1 48%;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}
.contact-form button {
  background-color: #1a2a24;
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form button:hover {
  background-color: #e4bb4a;
  color: #1a2a24;
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .form-row {
    flex-direction: column;
  }
  .form-row input {
    flex: 1 1 100%;
  }
}

.testimonial-banner {
  background: linear-gradient(#1a2a24bd, #1a2a24bd), url('conf.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}
.testimonial-content h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #e4bb4a;
}
.testimonial-slider {
  max-width: 800px;
  margin: auto;
  position: relative;
}
.testimonial-slide {
  display: none;
  font-size: 1.1rem;
  line-height: 1.6;
}
.testimonial-slide.active {
  display: block;
  animation: fadeIn 1s ease-in-out;
}
.testimonial-slide h4 {
  margin-top: 1rem;
  color: #e4bb4a;
  font-weight: normal;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stats-banner {
  background: linear-gradient(#1a2a24bd, #1a2a24bd), url('stats-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}
.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}
.stat-box {
  flex: 1 1 200px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.stat-box:hover {
  transform: translateY(-10px);
}
.stat-box i {
  font-size: 2rem;
  color: #e4bb4a;
  margin-bottom: 0.5rem;
}
.stat-box h3 {
  font-size: 2rem;
  margin: 0.5rem 0;
  color: #fff;
}
.stat-box p {
  font-size: 1rem;
  color: #ccc;
}

.facilities ul {
  list-style: none;
  padding: 0;
}

.facilities li {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #555;
}

.facilities i {
  color: #e4bb4a;
  margin-right: 0.5rem;
}

.card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

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

.card i {
  font-size: 2rem;
  color: #e4bb4a;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #4b6143;
}

.card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

 .footer {
  background-color: #1a2a24;
  color: #fff;
  padding: 3rem 1rem;
  font-size: 0.95rem;
  border-top: 5px solid #e4bb4a;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}
.footer-left h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #e4bb4a;
}
.footer-links h4, .footer-contact h4, .footer-quote h4 {
  color: #e4bb4a;
  margin-bottom: 1rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 0.5rem;
}
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links ul li a:hover {
  color: #e4bb4a;
}
.footer-contact p {
  margin: 0.3rem 0;
}
.footer-contact i {
  margin-right: 0.5rem;
  color: #e4bb4a;
}
.footer-socials a {
  margin-right: 0.5rem;
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.footer-socials a:hover {
  color: #e4bb4a;
}
.footer-quote {
  flex: 1 1 250px;
}
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.quote-form input,
.quote-form textarea {
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
}
.quote-form button {
  background-color: #e4bb4a;
  color: #1a2a24;
  border: none;
  padding: 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.quote-form button:hover {
  background-color: #e38b00;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-socials {
    margin-top: 1rem;
  }
  .footer-quote {
    margin-top: 2rem;
  }
}