/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* ===== HEADER ===== */
.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  background: #000;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ff3f0c;
}

.logo span {
  color: #fff;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.28rem;
  font-weight: bold;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: #111;
  display: none;
  flex-direction: column;
  min-width: 180px;
}

.dropdown-menu a {
  padding: 10px 15px;
  white-space: nowrap;
  font-weight: bold;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ff3f0c;
  margin: 4px 0;
}

/* ===== HERO ===== */
/* ===== LOGO CENTER ===== */
/* .hero-logo {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  position: absolute;
  right: 0px;
  top: -180%;
}

.hero-logo img {
  max-width: 250px;
  width: 150%;
  height: auto;
} */

/* ===== RESPONSIVE ===== */
/* @media (max-width: 768px) {
  .hero-logo img {
    max-width: 140px;
  }
} */

.hero {
  min-height: 100vh;
  background: url("./febimg/IMG_0029.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  max-width: 650px;
  padding: 40px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
}

.hero h1 span {
  color: #ff3f0c;
}

.hero-points {
  list-style: none;
  margin: 20px 0;
}

.hero-points li {
  margin-bottom: 8px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 22px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.btn.primary {
  background: #ff3f0c;
  color: #fff;
}

.btn.outline {
  border: 2px solid #ff3f0c;
  color: #fff;
}
/* ===== COUNTER FRAME ===== */
.hero-counter-frame {
  background: #ff3f0c;
  padding: 24px;
  display: flex;
  justify-content: space-evenly;
  gap: 24px;
  flex-wrap: wrap;
}

/* ===== INDIVIDUAL BOX ===== */
.counter-box {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 8px;
  padding: 20px 26px;
  text-align: center;
  min-width: 200px;
  color: #fff;
}

.counter-box .counter {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ff3f0c;
}

.counter-box .plus {
  font-size: 1.8rem;
  font-weight: 700;
  margin-left: 4px;
  color: #ff3f0c;
}

.counter-box p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #ff3f0c;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-counter-frame {
    padding: 20px;
  }

  .counter-box {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== WHATSAPP BELOW TESTIMONIALS ===== */
.hero-whatsapp {
  position: absolute;
  right: 0px; /* RIGHT SIDE */
  top: 320px; /* BELOW testimonials */
  z-index: 5;
}

.whatsapp-box {
  width: 150px;

  height: 65px;
  /* background: #25d366; */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); */
  transition: transform 0.3s ease;
}

.whatsapp-box img {
  width: 150px;
  border: 2px solid #ff3f0c;
}

.whatsapp-box:hover {
  transform: translateY(-6px);
}

/* Mobile fix */
@media (max-width: 768px) {
  .hero-whatsapp {
    right: 20%;
    transform: translateX(50%);
    top: auto;
    bottom: -51px;
  }
}

/* ===== HERO TESTIMONIALS ===== */
.hero-testimonials {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  right: 0px;
  padding: 20px;
  border-left: 4px solid #ff3f0c;
  top: 150px;
}

.testimonial {
  display: none;
  font-size: 0.95rem;
  max-width: 400px;
}

.testimonial.active {
  display: block;
}

.testimonial span {
  display: block;
  margin-top: 6px;
  color: #ff3f0c;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #000;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 20px;
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .dropdown-menu {
    position: static;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
  .hero-testimonials {
    display: none;
  }
}

/* ===== BLOG SECTION ===== */
.blog-section {
  background: #eee;
  padding: 80px 20px;
}

.blog-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
}

.blog-title .dark {
  color: #000;
}

.blog-title .green {
  color: #ff3f0c;
}

/* ===== GRID ===== */
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== CARD ===== */
.blog-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

.blog-content a {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff3f0c;
  text-decoration: none;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-title {
    font-size: 2.5rem;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-title {
    font-size: 2rem;
  }

  .blog-card img {
    height: 200px;
  }
} /* ===== PROUD SECTION ===== */
.proud-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  background-image: url("./febimg/Attention-Grabbing_Junk_Removal_Logo_with_Contrast-removebg-preview-Picsart-AiImageEnhancer-Picsart-AiImageEnhancer.png"); /* <-- your bg image */
  background-size: contain;
  background-position: center;
  overflow: hidden;
}

/* BLUR + DARK OVERLAY */
.proud-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

/* CONTENT */
.proud-content {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

.proud-content h2 {
  font-size: 3.7rem;
  margin-bottom: 40px;
  color: #ff3f0c;
}

/* GRID ITEMS */
/* ONE LINE ROW */
.proud-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.proud-line {
  max-width: 900px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 26px;
  border-left: 4px solid #ff3f0c;
  border-right: 4px solid #ff3f0c;
  border-radius: 6px;
}
.check {
  color: #ff3f0c;
  margin-right: 8px;
  font-weight: bold;
}

/* MOBILE SCROLL SMOOTH */
.proud-grid::-webkit-scrollbar {
  height: 6px;
}

.proud-grid::-webkit-scrollbar-thumb {
  background: #ff3f0c;
  border-radius: 10px;
}
.proud-line {
  max-width: 1000px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8;
  background: rgba(0, 0, 0, 0.6);
  padding: 18px 22px;
  border-left: 4px solid #ff3f0c;
  border-radius: 6px;
}

.proud-line span {
  margin: 0 10px;
  color: #ff3f0c;
}
.proud-line p {
  margin-bottom: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .proud-line {
    font-size: 0.95rem;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .proud-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .proud-grid {
    grid-template-columns: 1fr;
  }

  .proud-content h2 {
    font-size: 1.8rem;
  }
}

/* ===== SECTION ===== */
.enquiry-section {
  min-height: 100vh;
  background: url("./febimg/Untitled\ design\ \(5\).png") center/contain
    no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 20px;
}
/* 
.enquiry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
} */

/* ===== FORM WRAPPER ===== */
.enquiry-wrapper {
  position: relative;
  background: #fff;
  max-width: 520px;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  border: 2px solid #ff3f0c;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* ===== HEADING ===== */
.enquiry-wrapper h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.enquiry-wrapper h2 span {
  color: #ff3f0c;
}

/* ===== FORM ===== */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  margin-bottom: 5px;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid #cfd8dc;
  border-radius: 4px;
  font-size: 0.9rem;
}

.form-group textarea {
  resize: none;
}

/* ===== BUTTON ===== */
.submit-btn {
  margin-top: 10px;
  background: #ff3f0c;
  color: #000;
  border: none;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  width: 120px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .enquiry-section {
    justify-content: center;
  }

  .form-row {
    flex-direction: column;
  }

  .enquiry-wrapper {
    padding: 25px;
  }

  .enquiry-wrapper h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .enquiry-wrapper {
    padding: 20px;
  }

  .enquiry-wrapper h2 {
    font-size: 1.8rem;
  }

  .submit-btn {
    width: 100%;
  }
}

/* ===== FOOTER BASE ===== */
.site-footer {
  position: relative;
  background: url("./footer-bg.jpg") center/cover no-repeat;
  color: #fff;
  font-size: 0.9rem;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.footer-container {
  position: relative;
  max-width: 1300px;
  margin: auto;
  padding: 60px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ===== COLUMNS ===== */
.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #ff3f0c;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 8px;
  color: #ddd;
  text-decoration: none;
  line-height: 1.5;
}

.footer-col a:hover {
  color: #ff3f0c;
}

.green {
  color: #ff3f0c;
}

/* ===== LOGO ===== */
.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #ff3f0c;
}

.footer-logo img {
  display: block;
  width: 250px;
  margin-left: -10px;
}

/* ===== HOURS ===== */
.footer-hours {
  list-style: none;
  margin: 20px 0;
}

.footer-hours li {
  margin-bottom: 6px;
}

/* ===== SOCIAL ===== */
.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 25px 0;
}

/* PERFECT CENTER ICON BUTTON */
.social-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: #000;
  color: #ff3f0c;
  border-radius: 50%;
  border: 2px solid #ff3f0c;
  font-size: 20px;
  text-decoration: none;
  line-height: 1;
  transition: all 0.35s ease;
}
.follow-us {
  padding-left: 40px;
}
/* ICON CENTER FIX */
.social-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* PROFESSIONAL HOVER */
.social-btn:hover {
  /* background: #ff3f0c; */
  color: #000;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 0 18px #ff3f0c;
}

/* BRAND GLOW */
.fb:hover {
  box-shadow: 0 0 16px #1877f2;
}
.insta:hover {
  box-shadow: 0 0 16px #e1306c;
}
.yt:hover {
  box-shadow: 0 0 16px #ff0000;
}
.pin:hover {
  box-shadow: 0 0 16px #bd081c;
}
.x:hover {
  box-shadow: 0 0 16px #ffffff;
}

/* MOBILE */
@media (max-width: 600px) {
  .social-btn {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .footer-logo img {
    margin-left: 22px;
  }
}
.contact-col {
  max-width: 280px;
}

.contact-col h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.company {
  font-weight: 600;
  margin-bottom: 8px;
}

.green {
  color: #2ecc71;
  margin-bottom: 10px;
}

.contact-info {
  margin: 6px 0;
  font-size: 0.9rem;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
}

.contact-info a:hover {
  color: #2ecc71;
}

/* ===== BOTTOM ===== */
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center; /* keeps text centered vertically */
  font-size: 0.8rem;
}

.footer-bottom a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

.footer-bottom span {
  color: #ff3f0c;
}
.we-accept {
  position: relative;
  text-align: center;
  padding: 15px 20px;
}

.we-accept p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff3f0c;
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-icons img {
  height: 30px;
  width: auto;
  border: 1px solid #ff3f0c;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-socials {
    justify-content: space-evenly;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 50px 20px;
  background: #000;
  color: #fff;
  margin-top: 30px;
}

.services-container {
  max-width: 1100px;
  margin: auto;
}

/* GREEN HEADING */
.services-section h2 {
  color: #ff3f0c;
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.services-desc {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* TABLE */
/* .services-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.6);
} */
.services-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* makes equal width columns */
}

.services-table th,
.services-table td {
  width: 50%;
}

.services-table th {
  background: #ff3f0c;
  color: #fff;
  padding: 14px;
  font-size: 2.1rem;
}

.services-table td {
  padding: 14px;
  border: 1px solid rgba(217, 209, 209, 0.71);
}

/* RESPONSIVE */
.services-table-wrapper {
  overflow-x: auto;
}

@media (max-width: 768px) {
  .services-section h2 {
    font-size: 1.8rem;
  }

  .services-table td,
  .services-table th {
    font-size: 0.9rem;
    padding: 10px;
  }
}

.about-section {
  margin-top: 70px;
  padding: 60px 20px;
  background: #f5f7fa;
  font-family: Arial, Helvetica, sans-serif;
}

.about-title {
  text-align: center;
  color: #ff3f0c;
  padding: 20px;
}
.about-container {
  max-width: 1100px;
  margin: auto;
}

.about-box {
  background: #fff;
  color: #000;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.about-box {
  border: 2px solid #ff3f0c;
}
.about-box h2 {
  margin-bottom: 15px;
  color: #ff3f0c;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.service-item {
  background: #f1f3f6;
  padding: 15px;
  text-align: center;
  border-radius: 6px;
  font-weight: bold;
  border: 2px solid #ff3f0c;
}

.contact-box {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px;
  border-radius: 8px;
}

.contact-box a {
  color: #ff3f0c;
  text-decoration: none;
  font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 15px;
  }
}

.contact-sec {
  margin-top: 80px;
  padding: 60px 20px;
  background: #f4f6f9;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-wrap {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-title {
  margin-bottom: 20px;
  color: #ff3f0c;
  margin-top: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.full-width {
  grid-column: 1/-1;
}

.upload-box {
  border: 2px dashed #bbb;
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  background: #fafafa;
}

.submit-btn {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  background: #fff;
  color: #ff3f0c;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #333;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-wrap {
    padding: 20px;
  }
}
.gallery-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  margin-top: 40px;
}

.gallery-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #ff3f0c;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid #ff3f0c;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox.active {
  display: flex;
}

.eco-section {
  padding: 60px 20px;
  background: #000;
}

.eco-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* allows stacking on small screens */
}

/* Left image */
.eco-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 50%;
  display: block;
  border: 2px solid #ff3f0c;
}

/* Right content */
.eco-content {
  flex: 1;
  min-width: 300px;
}

.eco-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ff3f0c;
  margin-bottom: 8px;
}

.eco-divider {
  width: 50px;
  height: 4px;
  background: #ff3f0c;
  margin-bottom: 20px;
}

.eco-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 20px;
}

.eco-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.eco-list li {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.eco-list .check {
  display: inline-block;
  color: #fff;
  background: #ff3f0c;
  border-radius: 3px;
  padding: 2px 6px;
  font-weight: bold;
  margin-right: 10px;
}

/* Yellow button */
.eco-btn {
  display: inline-block;
  color: var(--yellow);
  background: #111;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.eco-btn:hover {
  background: #ffe54c;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .eco-container {
    flex-direction: column;
    text-align: center;
  }

  .eco-content {
    text-align: left;
  }
}
