@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --light-green: #edfaf1;
    --base-green: #24dd71;
    --dark-green: #208245;
    --light-yellow: #ffe3a3;
    --base-yellow: #ffcc56;
    --dark-yellow: #ffb914;
    --light-heading: #efefef;
    --light-text: #cecece;
    --dark-heading: #232d39;
    --dark-text: #6c757d;
}

* {
  box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', arial;
    color: var(--dark-heading);
    background: #f9f9f9;
  }

  /* navbar */

  
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-green);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-left {
    display: flex;
    align-items: center;
  }
  
  .back-arrow {
    font-size: 1.3rem;
    text-decoration: none;
    color: var(--dark-heading);
    margin-right: 10px;
  }

  .back-arrow:hover {
    color: var(--dark-yellow);
  }
  
  .title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-heading);
  }
  
  .book-btn {
    background-color: var(--dark-green);
    padding: .3rem 1.3rem;
    outline: none;
    font-size: 18px;
    border: none;
    color: var(--light-green);
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: .2s ease;
    margin-left: 2rem;
  }
  
  .book-btn:hover {
    background-color: var(--dark-yellow);
  }

  @media (max-width: 480px) {
    .navbar .book-btn {
      padding: .2rem 1rem;
      font-size: 14px;
      border-radius: 3px;
    }

    .navbar .title {
      font-size: 1.2rem;
    }
  }
  
  .mould-section {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
  }
  
  .mould-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .mould-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
  
  .mould-overlay h1 {
    font-size: 2rem;
    margin-bottom: 0.5em;
    color: var(--light-heading);
  }
  
  .mould-overlay p {
    font-size: 1.1em;
    max-width: 600px;
    color: var(--light-text);
  }

  .mould-symptoms, .mould-causes, .mould-solution {
    width: 100%;
    background-color: var(--light-green);
  }

  .mould-solution {
    padding: 2rem .5rem 4rem;
  }
  
  .content-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    background-color: var(--light-green);
  }
  
  .content-section h2 {
    text-align: center;
    color: var(--dark-heading);
    font-size: 1.8em;
    margin-bottom: 1em;
  }
  
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .card {
    background: #fff;
    border-radius: .5rem;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .card .icon {
    font-size: 2.5em;
    margin-bottom: 10px;
  }

  .card h3 {
    color: var(--dark-heading);
  }
  
  .card p {
    color: var(--dark-text);
  }

  .solutions {
    background-color: #f9f9f9;
    border-radius: .5rem;
  }

  .solutions h2 {
    color: var(--dark-heading);
  }
  
  .solutions ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: auto;
  }
  
  .solutions li {
    background: white;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 1px 4px rgba(0, 100, 0, 0.311);
    color: var(--dark-text);
  }

  .solutions strong {
    color: var(--dark-heading);
  }

  

/* warranty Section */
.warranty-guarantee-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--dark-green);
  padding: 2rem;
  gap: 2rem;
}

/* Info card */
.info-card {
  flex: 1 1 300px;
  max-width: 500px;
  padding: 2rem;
  border: 2px solid #e0e0e0;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 128, 0, 0.1);
  background-color: #f9fff9;
  transition: all 0.3s ease;
  text-align: center;
}

.info-card:hover {
  border-color: var(--dark-green);
  box-shadow: 0 6px 12px rgba(0, 128, 0, 0.2);
  background-color: var(--light-green);
}

/* Icons */
.icon {
  font-size: 2.5rem;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

/* Titles and paragraphs */
.info-card h2 {
  font-size: 1.75rem;
  color: var(--dark-heading);
  margin-bottom: 0.75rem;
}

.info-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark-text);
}

/* Responsive mould */
@media (max-width: 768px) {
  .warranty-guarantee-section {
    flex-direction: column;
    align-items: center;
  }
}

/* upholstery */

.upholstery-title {
    text-align: center;
    color: var(--dark-heading);
    font-size: 1.8rem;
    margin: 5rem auto 0;
}
  
.upholstery-section {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.left-panel, .right-panel {
  flex: 1 1 100%;
  padding: 20px;
  box-sizing: border-box;
}

.left-panel {
  background-color: var(--light-green);
  border-left: 5px solid var(--dark-green);
  text-align: center;
}

.left-panel img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.left-panel h2 {
  color: var(--dark-heading);
  font-size: 28px;
  margin-top: 15px;
}

.left-panel p {
  font-size: 16px;
  margin-top: 10px;
  color: var(--dark-text);
}

.right-panel {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.process, .pricing {
  margin-bottom: 30px;
  padding: 15px;
}

.process h3, .pricing h3 {
  color: var(--dark-green);
  margin-bottom: 10px;
}

.process ul {
  list-style: none;
  padding-left: 0;
}

.process li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: var(--dark-text);
}

.process span {
  color: var(--dark-heading);
  font-weight: 600;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.price-grid div {
  display: flex;
  justify-content: space-between;
  padding: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.price-grid .price {
  font-weight: 600;
  color: var(--dark-heading);
}

.price-grid .item {
  color: var(--dark-text);
}

.price-grid div:hover {
  background-color: var(--dark-yellow);
}

.price-grid div:hover .price, .price-grid div:hover .item{
  color: var(--light-heading);
}

/* Responsive upholstery */
@media (min-width: 768px) {
  .upholstery-section {
    flex-wrap: nowrap;
  }

  .left-panel, .right-panel {
    flex: 1;
  }

  .left-panel {
    margin-right: 20px;
  }
}


/* disinfection */


.disinfection-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.main-title {
  text-align: center;
  color: var(--dark-heading);
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.image-description {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--dark-text);
  align-items: center;
  margin-bottom: 50px;
}

.image-description img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.description-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.6;
}

.comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.comparison-column {
  flex: 1;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comparison-column h3 {
  color: var(--dark-green);
  margin-bottom: 15px;
}

.comparison-column ul {
  list-style-type: disc;
  padding-left: 20px;
}

.comparison-column ul li {
  color: var(--dark-text);
}

.services {
  margin-top: 40px;
}

.services-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--dark-heading);
  margin-bottom: 30px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  flex: 1 1 300px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card p {
  color: var(--dark-text);
}

.service-card h4 {
  color: var(--dark-green);
  margin-bottom: 10px;
}

/* responsive disinfection */

@media (max-width: 768px) {
  .image-description,
  .comparison,
  .service-cards {
    flex-direction: column;
  }

  .image-description img {
    margin: 0 auto;
  }
}



/* paint */


.paint-section {
  padding: 4rem 2rem;  
  background-color: var(--light-green);
}

.section-heading { 
  font-size: 2rem; 
  font-weight: bold; 
  text-align: center; 
  margin-bottom: 2rem; 
  position: relative; 
}

.paint-section .subsection {
  margin-bottom: 4rem;
}

.paint-section .subsection h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.main-content { 
  display: flex; 
  gap: 2rem; 
  flex-wrap: wrap; 
  margin-bottom: 3rem; 
  align-items: center; 
}

.hero-image img { width: 100%; 
  max-width: 600px; 
  border-radius: 1rem; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

.hero-text { 
  flex: 1; 
  font-size: 1rem; 
  line-height: 1.6; 
  color: var(--dark-text);
}

.sub-heading { 
  text-align: center; 
  font-size: 1.5rem; 
  font-weight: 600; 
  margin-bottom: 2rem; 
}

.cards { 
  display: flex; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  gap: 1rem; 
}

.card { 
  background: #f9f9f9; 
  flex: 1 1 30%; 
  padding: 1.5rem; 
  border-radius: 1rem; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.05); 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 8px 16px rgba(0,0,0,0.1); 
}

.paint-icons {
  font-size: 2.5rem;
}

.card img { 
  width: 60px; 
  margin-bottom: 1rem; 
}

.card h4 { 
  font-size: 1.125rem; 
  font-weight: 600; 
  margin-bottom: 0.5rem; 
  color: var(--dark-heading);
}

.card p { 
  font-size: 1rem; 
  color: var(--dark-text);
}

.packages-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 1.5rem; 
  margin-top: 2rem; 
}

.package-card { 
  background: #f9f9f9; 
  border-radius: 1rem; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.05); 
  overflow: hidden; 
  color: var(--dark-text);
  transition: transform 0.3s ease; 
  text-align: left; 
  padding-bottom: 1.5rem; 
}

.package-card span {
  color: var(--dark-heading);
  font-weight: 600;
}

.package-card:hover { 
  transform: scale(1.03); 
}

.package-card:hover .package-header{ 
  background-color: var(--dark-yellow);
}

.package-header { 
  background-color: var(--dark-green); 
  color: var(--light-heading); 
  padding: 1rem; 
  font-weight: bold; 
  font-size: 1.25rem; 
}

.package-card ul { 
  list-style: none; 
  padding: 1rem; 
  font-size: 1rem; 
  line-height: 1.6; 
}

.btn { 
  background-color: var(--dark-yellow); 
  border: none; 
  padding: 0.75rem 1.5rem; 
  border-radius: 999px; 
  font-weight: bold; 
  cursor: pointer; 
  transition: background-color 0.3s ease; 
}


/* Responsive paint*/ 

@media (max-width: 768px) { 
  .main-content { 
      flex-direction: column; 
  }

  .cards { 
      flex-direction: column; 
  } 
}


/* renovation */


.renovation .container, .benefits .container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
}

/* Main Section */
.renovation h1 {
  font-size: 2.5rem;
  color: var(--dark-heading);
  margin-bottom: 20px;
  text-align: center;
}

.renovation .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.renovation img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-content p {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
}

/* Benefits */
.benefits h2 {
  font-size: 2rem;
  color: var(--dark-heading);
  text-align: center;
  margin-bottom: 30px;
}

.benefit-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.benefit-list li {
  background-color: #f9f9f9;
  padding: 20px;
  border-left: 5px solid var(--dark-green);
  transition: transform 0.3s ease;
}

.benefit-list li:hover {
  transform: translateY(-5px);
}

.benefit-list h3 {
  font-size: 1.3rem;
  color: var(--dark-heading);
  margin-bottom: 10px;
}

.benefit-list p {
  font-size: 1rem;
  color: var(--dark-text);
}

/* Responsive renovation */
@media (max-width: 768px) {
  .benefit-list {
    grid-template-columns: 1fr;
  }
}


/* job scope Section */

.job-scope {
  background-color: var(--dark-green);
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 2px solid #e0e0e0;
  animation: fadeIn 1s ease-in-out;
  border-radius: 1rem 1rem 0 0;
}

.job-scope .container {
  max-width: 900px;
  margin: 0 auto;
}

.job-scope .title {
  font-size: 2rem;
  color: var(--light-heading);
  margin-bottom: 1.5rem;
}

.job-scope .description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--light-text);
}

.keyword {
  color: var(--light-green);
}

/* Responsive job scope */
@media (max-width: 600px) {
  .footer-title {
    font-size: 1.5rem;
  }

  .footer-description {
    font-size: 1rem;
  }
}