/* =====================
   GLOBAL
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f4fff5;
  color: #1d1d1d;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =====================
   HEADER / NAVBAR
===================== */
header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #1b7b3a;
  font-weight: 700;
  font-size: 1.4rem;
}

nav ul {
  display: flex;
  gap: 18px;
}

nav ul li a {
  padding: 6px 14px;
  border-radius: 6px;
  transition: 0.3s;
  font-size: 0.95rem;
}

nav ul li a:hover,
nav ul li a.active {
  background: #1b7b3a;
  color: #ffffff;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  background: url('../images/tank-cleaning.jpg') center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #ffffff;
  background-blend-mode: overlay;
  background-color: rgba(27, 123, 58, 0.6);
}



.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
}

.hero p {
  max-width: 700px;
  margin: 15px auto;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background: #1b7b3a;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
  margin: 8px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #178034;
}

.btn-outline {
  display: inline-block;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
  margin: 8px;
}

.btn-outline:hover {
  background: #ffffff;
  color: #1b7b3a;
}

/* =====================
   WHY US SECTION
===================== */
.why-us {
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

.why-us h2 {
  margin-bottom: 25px;
  font-size: 2rem;
  color: #3a56cf;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.feature-box {
  text-align: center;
  width: 200px;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.15);
  margin: 10px;
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.feature-box img {
  width: 60px;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 16px;
  font-weight: 600;
}


.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-box {
  
  background: #ffffff;
  border: 1px solid #050705;
  padding: 18px;
  border-radius: 8px;
  font-weight: 500;
  color: #1b7b3a;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* =====================
   ABOUT SECTION
===================== */

.about-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #3a56cf;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

.about-image {
  flex: 1 1 450px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-section {
    text-align: center;
  }
  .about-text p {
    text-align: center;
  }
}


/* =====================
   Why hired us
===================== */

.why-hire-us {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.why-hire-us h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: #3a56cf;
  font-weight: 700;
}

.hire-description {
  max-width: 850px;
  margin: 0 auto 35px auto;
  font-size: 17px;
  line-height: 1.7;
  color: #3a3a3a;
}

.hire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.hire-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 22px;
  border: 1px solid #d9d9d9;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: center;
}

.hire-box:hover {
  transform: translateY(-7px);
  box-shadow: 0px 6px 16px rgba(0,0,0,0.15);
}

.hire-icon {
  font-size: 48px;
  color: #1b7b3a;
  margin-bottom: 15px;
}

.hire-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1b7b3a;
  font-weight: 600;
}

.hire-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}


/* =====================
   TANK CLEANING PROCESS
===================== */

.cleaning-process {
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

.cleaning-process h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #3a56cf;
  margin-bottom: 10px;
}

.process-intro {
  font-size: 17px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.step-box {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.step-box:hover {
  transform: translateY(-6px);
}

.step-box img {
  width: 60px;
  margin-bottom: 15px;
}

.step-box h3 {
  font-size: 18px;
  color: #1b7b3a;
  margin-bottom: 8px;
}

.step-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}


/* =====================
   VISION & MISSION
===================== */

.vision-mission {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 30px;
}

.vm-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: center;
}

.vm-box:hover {
  transform: translateY(-6px);
}

.vm-box h2 {
  font-size: 1.9rem;
  color: #3a56cf;
  margin-bottom: 15px;
  font-weight: 700;
}

.vm-box p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}



/* Services Section */
.services {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.services h2 {
  font-size: 2.2em;
  margin-bottom: 30px;
  color: #00695c;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-box {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 300px;
  padding: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 50px;
  color: #00897b;
  margin-bottom: 15px;
}

.service-box h3 {
  margin: 10px 0;
  color: #004d40;
}

.service-box p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.5;
}
/* ==========================
   CUSTOMER REVIEW FORM
========================== */

.review-submit {
  background: #ffffff;
  padding: 40px 20px;
  margin: 50px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.review-submit h2 {
  text-align: center;
  color: #004d40;
  margin-bottom: 20px;
}

.review-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-form input,
.review-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

.review-form textarea {
  height: 120px;
  resize: none;
}

.star-rating {
  display: flex;
  font-size: 28px;
  color: #ccc;
  cursor: pointer;
  gap: 10px;
}

.star-rating span.active {
  color: #ffb400;
}

/* Star Rating Style */
.star-rating {
  display: flex;
  gap: 8px;
  font-size: 32px;
  cursor: pointer;
  color: #ccc;
  margin-bottom: 15px;
}

.star-rating span.active-star {
  color: #ffcc00;
}

.review-card {
  background: #fff;
  padding: 18px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.review-card .name {
  font-weight: bold;
  font-size: 18px;
  color: #333;
}

.review-card .stars {
  color: #ffcc00;
  font-size: 20px;
  margin: 5px 0;
}

.review-card .text {
  color: #555;
  font-size: 15px;
}



/* =====================
   Contact Page 
===================== */


/* CONTACT SECTION */
.contact-section {
  padding: 60px 20px;
  text-align: center;
}

.contact-section h1 {
  color: #1b7b3a;
  margin-bottom: 10px;
  font-size: 2.2rem;
}

.contact-section p {
  color: #333;
  margin-bottom: 30px;
}

.contact-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Form Box */
.contact-form-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 15px;
}

.contact-form-box textarea {
  height: 120px;
  resize: none;
}

.btn-submit {
  width: 100%;
  background: #1b7b3a;
  color: white;
  padding: 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 17px;
}

.btn-submit:hover {
  background: #15702d;
}

/* Contact Info Box */
.contact-info-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

.contact-info-box h3 {
  color: #1b7b3a;
  margin-bottom: 5px;
}

.contact-info-box a {
  color: #1b7b3a;
  font-weight: bold;
}

/* POPUP */
.popup {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.25);
  text-align: center;
  width: 320px;
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 9999;
}

.popup.show {
  bottom: 40px;
  opacity: 1;
}

.popup-icon {
  font-size: 42px;
  color: #1b7b3a;
}


/* ======================
   PREMIUM FOOTER (A + C)
====================== */

.footer {
  background: #0e1a14;
  color: #e8eee8;
  padding: 50px 20px 20px;
  margin-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Footer Logo */
.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #32d16d;
}

/* Social Icons */
.footer-social a {
  margin-right: 12px;
  font-size: 24px;
  color: #32d16d;
  transition: 0.3s;
}

.footer-social a:hover {
  opacity: 0.7;
}

/* Column Titles */
.footer-col h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #32d16d;
}

/* Footer Links */
.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #c9d5cc;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #32d16d;
}

/* Contact Info */
.footer-col p {
  margin-bottom: 8px;
  color: #c9d5cc;
}

/* Book Button */
.footer-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background: #32d16d;
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
}

.footer-btn:hover {
  background: #28b25b;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 15px;
  margin-top: 20px;
  border-top: 1px solid #24352d;
  color: #8fa89b;
  font-size: 14px;
}


/* =====================
     ADMIN PORTAL
===================== */

.admin-wrapper {
  max-width: 500px;
  margin: 90px auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-align: center;
  border-top: 6px solid #1b7b3a;
  animation: fadeIn 0.8s ease-in-out;
}

.admin-wrapper h1 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #1b7b3a;
  font-weight: 700;
}

.admin-wrapper p {
  color: #444;
  margin-bottom: 25px;
  font-size: 16px;
}

.admin-icon {
  font-size: 70px;
  color: #1b7b3a;
  margin-bottom: 15px;
}

/* Buttons */
.admin-btn,
.admin-outline-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  margin: 12px 0;
  transition: 0.3s ease-in-out;
}

/* Filled Button */
.admin-btn {
  background: #1b7b3a;
  color: #fff;
}

.admin-btn:hover {
  background: #145c2a;
}

/* Outline Button */
.admin-outline-btn {
  background: transparent;
  color: #1b7b3a;
  border: 2px solid #1b7b3a;
}

.admin-outline-btn:hover {
  background: #1b7b3a;
  color: #fff;
}

/* Smooth Fade Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}


/* =====================
  ADMIN SIGNUP & LOGIN
===================== */

.admin-form-container {
  width: 400px;
  margin: 70px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  animation: fadeIn 0.8s ease-in-out;
}

.admin-form-container h2 {
  text-align: center;
  color: #1b7b3a;
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 700;
}

.admin-form-container input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #bebebe;
  font-size: 15px;
}

.admin-form-container input:focus {
  border-color: #1b7b3a;
  outline: none;
}

.admin-login-btn {
  width: 100%;
  background: #1b7b3a;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 17px;
  cursor: pointer;
  margin-top: 12px;
  transition: 0.3s;
}

.admin-login-btn:hover {
  background: #145c2a;
}

.admin-form-container p {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.admin-form-container p a {
  color: #1b7b3a;
  text-decoration: underline;
}


/* =====================
   CONTENT PAGES (ABOUT, SERVICES, ETC.)
===================== */
.content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.content h1,
.content h2 {
  color: #1b7b3a;
  margin-bottom: 18px;
}

.content p,
.content li,
.content blockquote {
  margin-bottom: 10px;
  font-size: 1rem;
}

blockquote {
  padding-left: 14px;
  border-left: 4px solid #1b7b3a;
  font-style: italic;
  color: #333;
}

.service-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #1b7b3a;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.service-btn:hover {
  background: #145b2a;
}


/* Book Form Styling */
.book-container {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: #f5f8fa;
}

.form-box {
  background: white;
  width: 420px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  text-align: center;
}

.form-box h1 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #1b7b3a;
}

.form-box p {
  color: #555;
  margin-bottom: 25px;
}

form label {
  display: block;
  text-align: left;
  margin-bottom: 5px;
  font-weight: bold;
  color: #444;
}

form input, form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 18px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.btn-submit {
  width: 100%;
  background: #0077b6;
  color: white;
  padding: 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 17px;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #005f8a;
}

/*amdinlogin and singup page*/

.form-container {
  width: 350px;
  margin: 80px auto;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 12px rgba(0,0,0,0.2);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-container input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #aaa;
}

.btn {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  background: #007bff;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}


/* =====================
   FOOTER
===================== */
footer {
  text-align: center;
  padding: 20px;
  background: #1b7b3a;
  color: #ffffff;
  margin-top: 40px;
}



@media (max-width: 768px) {

  nav {
    position: relative;
  }

  /* Menu icon */
  .menu-icon {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #1b7b3a;
    padding: 5px 10px;
  }

  /* Dropdown */
  nav ul {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    flex-direction: column;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 999;
  }

  nav ul.show-menu {
    display: flex;
  }

  /* Menu items */
  nav ul li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid #eeeeee;
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  /* Link style */
  nav ul li a {
    font-size: 18px;
    color: #1b7b3a;
    font-weight: 600;
  }

  /* Hide WhatsApp button when menu open */
  nav ul.show-menu ~ .floating-whatsapp {
    display: none;
  }
}