/* --------------------------------------------------
   CLEAN NAVBAR — WORKS PERFECTLY DESKTOP + MOBILE
-------------------------------------------------- */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  background: #f9f9f9;
  color: #333;
}
.logoss {
    height: 170px;
    width: auto;
}
.nav-navbar {
  width: 100%;
  background: #65c368;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.nav-container {
  top: 0;
  left: 0;
  max-width: 1200px;
  margin: auto;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

/* LOGO */
.logo img {
  width: 160px;
  margin-left: 0px;
}

/* Desktop Menu */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 28px;
}

.nav-menu li a {
  color: #111;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: .3s ease;
  margin-right: 20px;
}

.nav-menu li a:hover {
  color: #3f53c1;
}

/* DROPDOWN DESKTOP */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 42px;
  left: 0;
  width: 220px;
  background: #fff;
  padding: 10px 0;
  border-radius: 6px;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: .3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #222;
  font-size: 15px;
}

.dropdown-menu li a:hover {
  background: #f7c04a;
  color: #fff;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* HAMBURGER */
.hamburger {
  font-size: 30px;
  display: none;
  color: #111;
  cursor: pointer;
}

/* HAMBURGER ANIMATION */
.hamburger {
  width: 27px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #111;
  border-radius: 3px;
  transition: 0.4s ease;
}

/* Transform to X */
.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}


/* --------------------------------------------------
      MOBILE RESPONSIVE STYLING
-------------------------------------------------- */
@media (max-width: 768px) {
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;   /* <-- this is why the height is always full screen */
  width: 260px;
  background: #ecf775;
  flex-direction: column;
  padding-top: 100px;
  gap: 25px;
  box-shadow: -3px 0 10px rgba(0,0,0,0.15);
  transition: .4s ease;
  overflow-y: auto;
}


  .nav-menu.active {
    top: 0;
  }

  .hamburger {
    display: flex;
  }

  /* Disable hover dropdown */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  /* Mobile dropdown click-to-open */
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: #fbfbf8;
    border-radius: 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    transform: translateY(0);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    display: block;
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .nav-menu.active {
    right: 0;      /* ← SHOW MENU */
  }
}

/* ── ACTIVE NAV LINK ── */
.nav-menu li a.active {
    color: #f7f461;
    font-weight: 800;
}

.nav-menu li a.active::after {
    content: '';
    display: block;
    height: 2px;
    background: #4caf50;
    margin-top: 4px;
}


.dropdown {
    position: relative;
}

.dropdown-arrow {
    display: none;
}

@media (max-width: 768px) {
    .dropdown {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-toggle {
        flex: 1;
    }

    .dropdown-arrow {
        display: inline-flex;
        padding: 10px 15px;
        cursor: pointer;
    }

    .dropdown-menu {
        width: 100%;
    }
}

@media (max-width: 768px) {
  .nav-menu li a.active {
    color: #4caf50;
    font-weight: 800;
}
}






/* ===== Hero Slider Styling ===== */
.hero-slider {
  position: relative;
  height: 97vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-content {
  text-align: left;
  max-width: 650px;
  margin-left: -550px;
  margin-top: 40px;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 74px;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: #fdfcfcef;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #9e9c9cef;
}

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

.btn {
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.btn-primary {
  background: #f7e337;
  color: #141313;
  border-radius: 2px;
}

.btn-secondary {
  background: #4caf50;
  border: 2px solid #fff;
  color: rgb(18, 17, 17);
  border-radius: 2px;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
  transform: translateY(-50%);
}

.slider-controls span {
  font-size: 2.5rem;
  cursor: pointer;
  user-select: none;
  color: white;
}


/* Overlay on each slide */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.674) 0%,
    rgba(0, 0, 0, 0.701) 40%,
    rgba(0, 0, 0, 0.053) 100%
  );
  z-index: 1;
}

/* Ensure hero content sits above overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

/* ── VIDEO SLIDE ── */
.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 768px) {

  .hero-slider {
    height: 90vh;
  }

  .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 0 22px;
    margin: 0;
    max-width: 100%;
  }

  /* 🔥 Bigger, more powerful headline */
  .hero-content h1 {
    font-size: 2.9rem;
    line-height: 62px;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
  }

  /* 🔥 Buttons SAME LINE on mobile */
  .hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .btn {
    flex: 1;
    max-width: 160px;
    font-size: 0.95rem;
    padding: 12px 10px;
    text-align: center;
  }

  /* Better overlay readability */
  .overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.621) 0%,
      rgba(0, 0, 0, 0.456) 60%,
      rgba(0, 0, 0, 0.314) 100%
    );
  }
}



/* ── SLIDE EYEBROW ── */
.slide-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f7e337;
    margin-bottom: 1rem;
}

/* ── SIDE INDICATORS ── */
.slide-indicators {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 10;
    letter-spacing: 5px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.indicator-line {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    transition: background 0.3s ease, width 0.3s ease;
}

.indicator-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.indicator.active .indicator-line {
    background: #4caf50;
    width: 36px;
}

.indicator.active .indicator-num {
    color: #fff;
}

/* ── SIDE INDICATORS RESPONSIVE ── */
@media (max-width: 768px) {
    .slide-indicators {
        left: 20px;
        gap: 18px;
    }

    .indicator-line {
        width: 18px;
    }

    .indicator.active .indicator-line {
        width: 28px;
    }
}



.number-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.number-nav button {
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.number-nav button:hover,
.number-nav button.active {
  background-color: #fff;
  font-weight: bold;
  transform: scale(1.1);
}

/* Font Awesome for icons */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");

.services {
  padding: 70px 0;
  background: rgb(250, 247, 247);
  text-align: center;
}

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

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
}

.subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

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

.service-card {
  padding: 25px;
  border-radius: 8px;
  color: white;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  z-index: 2;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  z-index: 2;
  max-width: 90%;
}

.view-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #4caf50; /* Brand color - change as needed */
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  z-index: 2;
}

.view-more-btn:hover {
  background: #3e8e41; /* Darker shade on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.services-header {
  padding: 80px 0 40px;
  background: #fff;
}

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

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

.section-title {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.title-decorator {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #4caf50;
  margin: 0 25px;
  position: relative;
  top: -3px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.service-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.build-prompt {
  background-color: #4caf50;
  padding: 15px 10px;
  margin-top: 30px;
}

.build-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.build-prompt h2 {
  font-size: 35px;
  font-weight: 600;
  color: #222;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.build-btn {
  padding: 12px 26px;
  background-color: #f7e337;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  margin-right: 200px;
}

.build-btn:hover {
  background-color: #e0a100;
}

/* Why Choose Us Section */
.why-choose-us {
  width: 100%;
  margin: 0;
  padding: 0;
}

.why-container {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}

.why-image {
  flex: 1;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-content {
  flex: 1;
  background: #000; /* Black background */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px; /* Inner spacing only */
}

.why-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.why-content h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, yellow, #4caf50);
  margin-top: 5px;
}

.why-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Thin line */
}

.why-list li:last-child {
  border-bottom: none; /* Remove line after last item */
}

.why-list li span {
  color: #4caf50;
  font-size: 1.2rem;
  margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
  }
  .why-content {
    padding: 30px;
  }
}



.featured-projects {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.section-titles {
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
}

.project-card {
  position: relative;
  overflow: hidden;
  height: 320px;
  width: 290px;
  margin-left: -22px;
  gap: 20px;
  display: flex;
}

.project-card.tall {
  height: 400px;
  margin-left: -40px;
  width: 300px;
}

.project-card img {
  width: 400px;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card:hover .overlay {
  opacity: 1;
}

.view-btn {
  background: #4caf50;
  color: #111;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s ease;
  margin-bottom: -150px;
}

.view-btn:hover {
  background: #111;
  color: #fff;
}

/* ── FEATURED PROJECTS HEADER ── */
.featured-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    text-align: left;
}

.featured-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}



.title-underline {
    width: 60px;
    height: 4px;
    background: #4caf50;
    border-radius: 2px;
    margin-top: -30px;
}

.view-all-btn {
    background: #4caf50;
    color: #fff;
    padding: 12px 28px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.view-all-btn:hover {
    background: #111;
    color: #fff;
}

@media (max-width: 768px) {
    .featured-projects {
        padding: 30px 0;
    }

    .container {
        padding: 0 10px;
    }

    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 20px;
    }

    .view-all-btn {
        align-self: flex-start;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card,
    .project-card.tall {
        width: 100%;
        height: 280px;
        margin-left: 0;
        border-radius: 0;
    }

    .project-card img {
        width: 100%;
    }
}


/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .view-all-btn {
        align-self: flex-start;
    }
}


.testimonials-slider {
    background: #f8fafc;
    padding: 30px 20px;
    font-family: 'Arial', sans-serif;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Left Side Styles */
.testimonials-left {
    padding: 40px 0;
}

.left-content h2 {
    font-size: 2.8rem;
    color: black;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.2;
}

.left-content p {
    font-size: 1.2rem;
    color: #121212;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-btn {
    background:  #4caf50;
    color:  rgb(2, 2, 129);
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #4caf50;
}

.contact-btn:hover {
    background: rgb(2, 2, 129);
    color: #4caf50;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.15);
}

/* Right Side - Slider Styles */
.slider-container {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.slider-track {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.stars {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.testimonial-slide p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-style: italic;
    flex: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: rgb(242, 232, 89);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-details strong {
    color: #1a202c;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.client-details span {
    color: #718096;
    font-size: 0.9rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.slider-prev,
.slider-next {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #4a5568;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: #1a365d;
    color: white;
    border-color: #1a365d;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #1a365d;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-left {
        padding: 0;
        text-align: center;
    }
    
    .left-content h2 {
        font-size: 2.3rem;
    }
    
    .slider-container {
        padding: 40px 30px;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .testimonials-slider {
        padding: 80px 20px;
    }
    
    .left-content h2 {
        font-size: 2rem;
    }
    
    .left-content p {
        font-size: 1.1rem;
    }
    
    .slider-container {
        padding: 30px 20px;
        min-height: 320px;
    }
    
    .slider-controls {
        margin-top: 30px;
        padding-top: 25px;
    }
}





/* FAQ SECTION */
.faq-section {
    padding: 30px 5%;
    background: #fff;
}

.faq-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* IMAGE */
.faq-image {
    flex: 1;
}

.faq-image img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin-left: 70px;
}

/* CONTENT */
.faq-content {
    flex: 1;
    margin-right: 60px;
}

.sub-title {
    color: #4caf50;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq-content h2 {
    font-size: 50px;
    line-height: 1.1;
    margin: 10px 0 20px;
    color: #111;
    font-weight: 700;
}

/* FAQ ITEMS */
.faq-item {
    border: 1px solid #ddd;
    border-radius: 40px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 4px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    width: 45px;
    height: 45px;
    background: #4caf50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.faq-item.active .faq-question span {
    background: #111;
}

.faq-answer {
    padding: 0 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
        text-align: center;
    }

    .faq-content h2 {
        font-size: 42px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-image img {
    width: 80%;
    display: block;
    margin-left: 32px;
 }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 70px 5%;
    }

    .faq-content h2 {
        font-size: 34px;
    }

    .faq-question {
        padding: 20px;
        font-size: 15px;
    }

    .faq-question span {
        width: 40px;
        height: 40px;
    }
}



.md-services-section{
    padding: 100px 8%;
    background: #fff;
    overflow: hidden;
    margin-top: 30px;
}

.md-services-wrapper{
    display: flex;
    align-items: center;
    gap: 60px;
}

.md-services-intro{
    width: 35%;
    margin-top: -150px;
}

.md-services-tag{
    display: inline-block;
    color: #4caf50;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-left: -70px;
}

.md-services-intro h2{
    font-size: 2.3rem;
    line-height: 1;
    font-weight: 700;
    color: #111;
    margin-bottom: 170px;
    margin-left: -60px;
}

.md-services-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background: #4caf50;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.md-services-btn:hover{
    transform: translateY(-3px);
}

.md-services-btn i{
    width: 42px;
    height: 42px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.md-services-carousel{
    width: 100%;
}

.mdSwiper{
    overflow: visible;
}

.md-service-card{
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9e9e9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    height: 100%;
}

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

.md-service-card img{
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.md-card-body{
    padding: 10px;
}

.md-card-body i{
  display: inline;
    font-size: 28px;
    color: #888;
    margin-bottom: 15px;
}

.md-card-body h3{
  display: inline;
    font-size: 1.5rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
}

.md-card-body p{
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    border-top: 1px solid #e8e8e8;
    padding-top: 20px;
}

/* Swiper spacing */
.mdSwiper .swiper-slide{
    height: auto;
}

/* Mobile */
@media (max-width: 768px){

    .md-services-section{
        padding: 50px 30px;
    }

    .md-services-wrapper{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .md-services-intro{
        width: 100%;
        text-align: center;
        margin-top: 70px;
        margin-bottom: -90px;
    }

    .md-services-tag{
        margin: 0 0 15px;
        font-size: 13px;
    }

    .md-services-intro h2{
        font-size: 2rem;
        line-height: 1.2;
        margin: 0 0 25px;
    }

    /* Slider */
    .md-services-carousel{
        width: 100%;
        order: 2;
    }

    .md-service-card{
        border-radius: 15px;
    }

    .md-service-card img{
        height: 180px;
    }

    .md-card-body{
        padding: 15px;
    }

    .md-card-body i{
        display: block;
        margin-bottom: 10px;
    }

    .md-card-body h3{
        display: block;
        font-size: 1.2rem;
        margin-top: 10px;
    }

    .md-card-body p{
        font-size: 14px;
        line-height: 1.6;
    }

    /* Controls */
    .md-slider-controls{
        justify-content: center;
        margin-top: 20px;
    }

    .md-prev-btn,
    .md-next-btn{
        width: 45px;
        height: 45px;
    }

    /* Button below slider */
    .md-services-btn-wrap{
        display: flex;
        justify-content: center;
        margin-top: 25px;
    }

    .md-btns{
        width: auto;
        padding: 14px 22px;
        font-size: 15px;
        margin-top: 20px;
        margin-left: 10px !important;
    }
  

  
}



/* Small Phones */
@media (max-width: 480px){

    .md-services-section{
        padding: 0.6px 15px;
        margin-bottom: 20px;
    }

    .md-services-wrapper {
      margin-bottom: 60px;
    }

    .md-services-intro h2{
        font-size: 1.7rem;
    }

    .md-service-card img{
        height: 200px;
    }

    .md-card-body{
        padding: 12px;
    }

    .md-btns{
        width: auto;
    }
}

.md-services-btn-wrap{
    display: flex;
    justify-content: center;
    margin-top: 70px;
}


  .md-slider-controls{
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.md-prev-btn,
.md-next-btn{
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: #fff;
    color: #111;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    transition: .3s;
}

.md-next-btn{
    background: #4caf50;
    color: #fff;
}

.md-prev-btn:hover,
.md-next-btn:hover{
    transform: translateY(-3px);
}


.md-btns{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 10px;
    background: #4caf50;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: -390px;
    
}


.md-btns:hover{
    background: #fcef7c;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

.md-btns i{
    font-size: 14px;
    transition: transform 0.3s ease;
}

.md-btns:hover i{
    transform: translateX(5px);
}




.section {
      max-width: 1080px;
      width: 100%;
      margin-left: 100px;
      padding: 50px  30px;
    }

    /* ── HEADER ── */
    .section__header {
      margin-bottom: 32px;
    }

    .section__title {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: #0f0f0f;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .section__subtitle {
      font-size: 14px;
      color: #888;
      max-width: 380px;
      line-height: 1.6;
    }

    /* ── BENTO GRID ── */
    .bento {
      display: grid;
      grid-template-columns: 2fr 1.2fr 1fr 1.1fr;
      grid-template-rows: auto auto;
      gap: 12px;
    }

    .card {
      background: #f4f6fb;
      border-radius: 16px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 200px;
      position: relative;
      overflow: hidden;
    }

    /* Card variants */
    .card--blue {
      background: #4caf50;
      grid-column: 1;
      grid-row: 1;
      width: 300px;
    }

    .card--light {
      background: #f4f6fb;
      grid-column: 1;
      grid-row: 1;
      width: 300px;
      box-shadow: solid #000;
    }

    .card--lights{
      background: #f4f6fb;
      grid-column: 1;
      grid-row: 1;
      width: 200px;
    }

    .card--green {
      background: #b8f5a0;
      grid-column: 1;
      grid-row: 1;
      margin-left: -110px;
      width: 150px;
    }

    .card--photo {
      background: #e8e8e8;
      padding: 0;
      grid-column: 4;
      grid-row: 1 / 3;
      min-height: 420px;
      margin-left: -110px;
      width: 350px;
    }

    .card--photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      border-radius: 16px;
    }

    /* Stat number */
    .card__stat {
      font-size: clamp(2.4rem, 4vw, 3.2rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1;
    }

    .card--blue .card__stat { color: #fff; }
    .card--light .card__stat { color: #000; }
    .card--green .card__stat { color: #1a6b00; }

    /* Label */
    .card__label {
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.01em;
    }

    .card--blue .card__label { color: rgba(255,255,255,0.85); }
    .card--light .card__label { color: #333; }
    .card--green .card__label { color: #1a6b00; }

    /* Divider under stat for light cards */
    .card__divider {
      height: 1px;
      background: #d8dde8;
      margin: 12px 0 0;
    }

    /* Quote card */
    .card--quote {
      background: #f4f6fb;
      grid-column: 2;
      grid-row: 2;
      margin-left: -110px;
      width: 300px;
    
    }

    .card__quote-title {
      font-size: 15px;
      font-weight: 700;
      color: #111;
      margin-bottom: 10px;
    }

    .card__quote-text {
      font-size: 13.5px;
      color: #555;
      line-height: 1.65;
      flex: 1;
    }

    .card__quote-author {
      font-size: 12.5px;
      font-weight: 600;
      color: #333;
      margin-top: 16px;
    }

    /* Decorative circles on photo card */
    .photo-circles {
      position: absolute;
      bottom: -20px;
      left: -20px;
      width: 160px;
      height: 160px;
      pointer-events: none;
    }

    .photo-circles circle {
      fill: none;
      stroke: rgba(255,255,255,0.35);
      stroke-width: 1.5;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .card {
      margin-left: -120px;
    }

    .card--blue {
      width: 180px;
    }


    .card--light {
      margin-left: -80px !important;
    }

    .card--lights {
      margin-left: 30px !important;
    }
    
      .card--photo {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 240px;
        margin-left: -200 !important;
      }
    }

    @media (max-width: 500px) {
      .bento {
        grid-template-columns: 1fr;
      }
      .card--photo {
        grid-column: 1;
        margin-left: -110px ;
      }

     .section__header {
      margin-left: -80px;
      width: 300px;
     }

      
    .card--light {
      margin-left: -180px !important;
    }

    .card--lights {
      margin-left: -120px !important;
    }

    .card--quote {
      margin-left: -200px !important;
      width: 200px;
     }
    }




/*==============================
        VIDEO SECTION
==============================*/

.md-video-section{
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

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

.md-video-overlay{
    position: absolute;
    inset: 0;
    background: rgba(95, 94, 94, 0.116);
}

/*==============================
        FLOATING CTA
==============================*/

.md-floating-cta{
    position: relative;
    z-index: 10;
    margin-top: -110px;
    padding: 0 8% 60px;
}

.md-floating-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;

    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);

    padding: 60px 20px;
    border-radius: 5px;

    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    overflow: hidden;
    position: relative;

        /* Premium Black Background */
    background: linear-gradient(
        135deg,
        #111111 0%,
        #1b1b1b 45%,
        #2a2a2a 100%
    );

}

.md-floating-wrapper::before{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(76, 175, 80, .12);
    border-radius: 50%;
    top: -120px;
    right: -100px;
    filter: blur(80px);
}

.md-floating-wrapper::after{
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
    bottom: -120px;
    left: -80px;
    filter: blur(60px);
}


.md-floating-left{
    flex: 1;
    max-width: 650px;
}

.md-floating-left h2{
    font-size: 1.5rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.md-floating-right{
    width: 300px;
}

.md-floating-icons{
    display: flex;
    margin-bottom: 18px;
}

.md-floating-icons div{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4CAF50;
    border: 3px solid #fff;
    margin-left: -12px;
}

.md-floating-icons div:first-child{
    margin-left: 0;
}

.md-floating-right p{
    color: rgba(255,255,255,.75);
    line-height: 1;
}

/*==============================
        EMAIL FORM
==============================*/

.md-cta-form{
    width: 100%;
    max-width: 600px;
    margin-top: 25px;
}

.md-email-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;

    background: #000;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    width: 450px;

    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.md-email-input{
    display: flex;
    align-items: center;
    flex: 1;
    height: 100%;
    padding: 0 10px;
}

.md-email-input i{
    color: #4CAF50;
    font-size: 18px;
    margin-right: 12px;
}

.md-email-input input{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #333;
}

.md-email-input input::placeholder{
    color: #999;
}

.md-email-box button{
    height: 40px;
    padding: 0 10px;

    border: none;
    border-radius: 2px;

    background: #4CAF50;
    color: #fff;

    font-size: 15px;
    font-weight: 600;
    cursor: pointer;

    transition: .3s ease;
    white-space: nowrap;
    margin-right: 10px;
}

.md-email-box button:hover{
    background: #f5d64e;
    color: #111;
}

.md-team{
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    margin-left: -20px;
}

.md-team img{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -18px;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    transition: all .3s ease;
}

.md-team img:first-child{
    margin-left: 0;
}

.md-team img:hover{
    transform: translateY(-6px);
    z-index: 2;
}

.md-team h4{
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
    margin-left: 5px;
}

.md-cta-right p{
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/*==============================
        CTA BUTTON
==============================*/

.md-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;

    padding:16px 28px;

    background:#4CAF50;
    color:#fff;

    text-decoration:none;
    font-weight:600;
    font-size:16px;

    border-radius:50px;

    transition:.35s;
    box-shadow:0 10px 25px rgba(76,175,80,.25);
}

.md-cta-btn i{
    width:42px;
    height:42px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#111;
    color:#fff;

    transition:.35s;
}

.md-cta-btn:hover{
    background:#f5d64e;
    color:#111;
    transform:translateY(-4px);
}

.md-cta-btn:hover i{
    background:#fff;
    color:#4CAF50;
    transform:translateX(4px);
}

.md-floating-icons{
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.md-floating-icons img{
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
    transition: all .3s ease;
}

.md-floating-icons img:first-child{
    margin-left: 0;
}

.md-floating-icons img:hover{
    transform: translateY(-5px);
    z-index: 2;
}


/*==============================
        TABLET
==============================*/

@media(max-width:992px){

.md-floating-wrapper{
    flex-direction: column;
    align-items: flex-start;
}

.md-floating-right{
    width: 100%;
}

}

/*==============================
        MOBILE
==============================*/

@media(max-width:768px){

.md-video-section{
    height:320px;
}

.md-floating-cta{
    margin-top:-60px;
    padding:0 20px 50px;
}

.md-floating-wrapper{
    flex-direction:column;
    align-items:flex-start;
    gap:30px;
    padding:25px 20px;
}

.md-floating-left,
.md-floating-right{
    width:100%;
}

.md-floating-left h2{
    font-size:1.8rem;
}

.md-floating-right{
    text-align:left;
}

.md-floating-icons{
    justify-content:flex-start;
}

.md-email-box{
    height:30%;
    width: 100%;
}

.md-email-box button{
    height:20px;
    padding:0 1px;
    margin-left: 50px;
}

}

/*==============================
        SMALL PHONES
==============================*/

@media(max-width:480px){

.md-video-section{
    height:280px;
}

.md-floating-left h2{
    font-size:1.6rem;
}

.md-email-box{
    flex-direction:column;
    align-items:stretch;
    height: 30%;
    gap:12px;
    padding:1px;
}

.md-email-input{
    width:100%;
    padding:0;
}

.md-email-box button{
    width:40%;
    height:40px;

}

.md-floating-wrapper{
    padding:20px 16px;
}

}

@media (max-width:768px){

    .md-cta-right{
        width:100%;
        text-align:left;
    }

    .md-team{
        justify-content:flex-start;
    }

    .md-team img{
        width:50px;
        height:50px;
    }

}


/*==========================
    TESTIMONIALS
===========================*/

.testimonials{
    padding:30px 7%;
    background:#f8f8f8;
}

.testimonial-container{
    display:grid;
    grid-template-columns:40% 60%;
    align-items:center;
    gap:70px;
}

/* Left Side */

.testimonial-left{
    max-width:500px;
    margin-bottom: 90px;
}

.testimonial-left h2{
    font-size:52px;
    color:#111;
    margin:15px 0;
    line-height:1.2;
}

.testimonial-left p{
    color:#666;
    line-height:1.9;
    margin-bottom:40px;
}

/* Dots */

.testimonial-dots{
    display:flex;
    gap:12px;
}

.testimonial-dots .dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#d1d1d1;
    cursor:pointer;
    transition:.3s;
}

.testimonial-dots .dot.active{
    width:35px;
    border-radius:30px;
    background: #4caf50;
}

/*==========================
    Slider
===========================*/

.testimonial-slider{
    position:relative;
    overflow:hidden;
}

.testimonial-card{
    background:#fff;
    border-radius:22px;
    padding:30px 10px;
    box-shadow:0 20px 50px rgba(0, 0, 0, 0.259);
    display:none;
    animation:fade .5s ease;
    opacity: 0;
}

.testimonial-card.active{
    display:block;
    opacity: 1;
}

@keyframes fade{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* Quote */

.quote-icon{
    width:65px;
    height:65px;
    background: #4caf50;
    border-radius:15px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:30px;
}

.quote-icon i{
    color:#fff;
    font-size:26px;
}

/* Review */

.testimonial-text{
    font-size:18px;
    color:#555;
    line-height:1.9;
    margin-bottom:30px;
}

/* Stars */

.stars{
    color:#d6a300;
    font-size:18px;
    margin-bottom:30px;
}

/* Client */

.client{
    display:flex;
    align-items:center;
    gap:18px;
}

.client img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.client h4{
    color:#111;
    margin-bottom:5px;
}

.client span{
    color:#777;
    font-size:15px;
}

/*==========================
    Navigation
===========================*/

.testimonial-nav{
    display:flex;
    gap:15px;
    margin-top:35px;
}

.testimonial-nav button{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#111;
    color:#fff;
    cursor:pointer;
    transition:.35s;
}

.testimonial-nav button:hover{
    background:#d6a300;
}

/*==========================
    Responsive
===========================*/

@media(max-width:1100px){

    .testimonial-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .testimonial-left{
        max-width:100%;
    }

}

@media(max-width:768px){
    .testimonial-slider {
        margin-top: -90px;
    }

    .testimonials{
        padding:80px 6%;
        margin-top: -50px;
    }

    .testimonial-left h2{
        font-size:40px;
    }

    .testimonial-card{
        padding:30px;
    }

    .testimonial-text{
        font-size:16px;
    }

    .testimonial-nav button{
        width:48px;
        height:48px;
    }

}






.md-contact-section{
    padding:20px 8%;
    background:#f8f8f8;
    margin-bottom: -24px;
}

.md-contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

/* LEFT */

.md-contact-left{
    position:relative;
    margin-left: -300px;
    z-index: 3;
}

.md-contact-bg{
    width:80%;
    height:550px;
    object-fit:cover;
}

.md-contact-form{
    position:absolute;
    top:50%;
    right:-10px;
    transform:translateY(-50%);

    width:350px;

    background:#1f1f1f;
    padding:25px;
    border-radius:6px;

    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.md-contact-form h3{
    color:#fff;
    font-size:1.5rem;
    margin-bottom:10px;
}

.md-contact-form p{
    color:#bbb;
    margin-bottom:25px;
}

.md-contact-form input,
.md-contact-form textarea{
    width:100%;
    background:#2b2b2b;
    border:none;
    color:#fff;
    padding:16px;
    border-radius:10px;
    margin-bottom:15px;
}

.md-input-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.md-contact-form textarea{
    height:120px;
    resize:none;
}

.md-contact-form button{
    background:#4CAF50;
    color:#fff;
    border:none;
    padding:15px 28px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
}

/* RIGHT */
 .md-contact-right {
   margin-bottom: -10%;
 }

.md-contact-right h2{
    font-size: 2.6rem;
    font-weight: 700px;
    line-height:1;
    margin:15px 0;
    margin-top: -10px;
}

.md-contact-right p{
    color:#666;
    margin-bottom:35px;
}

.md-contact-details{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.md-detail-box{
    display:flex;
    align-items:center;
    gap:20px;
}

.md-detail-box i{
    width:55px;
    height:55px;
    background:#111;
    color:#4CAF50;
    border-radius:10px;

    display:flex;
    justify-content:center;
    align-items:center;
    
}
 
.bulldozer {
  display: flex;
  padding: auto;
  margin-right: -300px;
 }

.md-machine{
    width:600px;
    height: 430px;
    z-index: 1;
    margin-left: 5%;
    margin-top: -30%;
}


@media (max-width:768px){

.md-contact-section{
    padding:60px 20px;
}

.md-contact-grid{
    display:flex;
    flex-direction:column;
    gap:40px;
}

/* LEFT SIDE */

.md-contact-left{
    margin:0;
    position:relative;
}

.md-contact-bg{
    width:120%;
    height:430px;
    object-fit:cover;
    margin-left: -20px;
}

.md-contact-form{
    position:relative;
    top:auto;
    right:auto;
    transform:none;

    width:100%;
    margin-top:-290px;

    padding:25px;
}

.md-input-row{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.md-contact-form button{
    width:100%;
}


/* RIGHT */

.md-contact-right{
    margin:0;
    text-align:center;
}

.md-contact-right h2{
    font-size:2rem;
    line-height:1.2;
}

.md-contact-details{
    margin-top:30px;
}

.md-detail-box{
    justify-content:flex-start;
    text-align:left;
}

/* Bulldozer */

.bulldozer{
    margin:30px auto 0;
    justify-content:center;
}

.md-machine{
    width:160%;
    height:300%;
    margin-top: -100px;
    margin-right: 40px;
}

}


/*========================
    WORK PROCESS
=========================*/

.work-process{
    padding:30px 4%;
    background:#fff;
}

.process-header{
    max-width:650px;
    margin-bottom:30px;
}

.section-tag{
    color:#d6a300;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.process-header h2{
    font-size:52px;
    margin:12px 0;
    color:#111;
}

.process-header p{
    color:#666;
    line-height:1.8;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-card{
    background:#1f1f21;
    border-radius:6px;
    padding:35px 20px;
    color:#fff;
    transition:.35s;
    border:1px solid rgba(255,255,255,.06);
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:#d6a300;
}

.card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top: -20px;
}

.icon-box{
    width:48px;
    height:48px;
    background:#2d2d31;
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.icon-box i{
    color: #4caf50;
    font-size:22px;
}

.step-number{
    font-size:48px;
    font-weight:700;
    color:transparent;
    -webkit-text-stroke:1.5px  #4caf50;
}

.line{
    width:100%;
    height:1px;
    background:#444;
    margin:28px 0;
    position:relative;
}

.line::before{
    content:"";
    position:absolute;
    left:0;
    top:-1px;
    width:40px;
    height:3px;
    background:#fff;
}

.process-card h3{
    font-size:24px;
    margin-bottom:18px;
    line-height:1.05;
}

.process-card p{
    color:#bcbcbc;
    line-height:1.4;
    margin-bottom:20px;
}

.process-card ul{
    list-style:none;
}

.process-card ul li{
    margin-bottom:12px;
    color:#d8d8d8;
    position:relative;
    padding-left:18px;
}

.process-card ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:9px;
    width:7px;
    height:7px;
    border-radius:50%;
    background: #4caf50;
}

/* Responsive */

@media(max-width:1200px){

.process-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.process-grid{
    grid-template-columns:1fr;
}

.process-header h2{
    font-size:40px;
}

.step-number{
    font-size:48px;
}

}





.modern-footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #e2e8f0;
    padding: 70px 0 0;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #4a5568;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #68d391;
}

.company-info { padding-right: 20px; }

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tagline {
    color: #68d391;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.company-description {
    color: #a0aec0;
    line-height: 1.6;
    margin: 20px 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #68d391;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(104, 211, 145, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #68d391;
    padding-left: 8px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: -12px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #68d391;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -8px;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-icon {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item p,
.contact-item a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-item a:hover { color: #68d391; }

/* Footer Bottom */
.footer-bottom {
    padding: 5px 0;
    overflow: hidden;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
}

/* Powered by */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0aec0;
    font-size: 0.9rem;
    margin: 0;
}

.contact-icon {
  font-size: 18px;
  color: #4caf50;
  margin-right: 10px;
  width: 25px;
}


.social-link i {
  font-size: 18px;
  color: white;
  transition: 0.3s;
}

.social-link:hover i {
  color: #f7e337;
}

.powered-link {
    display: flex;
    align-items: center;
}

.powered-logo {
    height: 100px;
    max-height: 100px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.powered-link:hover .powered-logo {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    .company-info { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .modern-footer { padding: 50px 0 0; }
    .footer-main { grid-template-columns: 1fr; gap: 35px; padding-bottom: 40px; }
    .footer-bottom-content { flex-direction: column; gap: 15px; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }
    .company-info { padding-right: 0; text-align: center; }
    .footer-section h4::after { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 480px) {
    .footer-container { padding: 0 15px; }
    .footer-main { gap: 30px; }
    .social-links { justify-content: center; }
}


