/* =========================
   MAIN SECTION WRAPPER
========================= */
.container-construction {
    padding: 80px 8%;
    background: #ffffff;
}

/* Inner container */
.container-construction .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* =========================
   MAIN TITLE
========================= */
.container-construction h1 {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* =========================
   PARAGRAPHS
========================= */
.container-construction p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
    max-width: 850px;
}

/* =========================
   SUB HEADINGS
========================= */
.container-construction h2 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-top: 50px;
    margin-bottom: 15px;
    position: relative;
}

/* subtle underline accent */
.container-construction h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #00a651;
    margin-top: 8px;
    border-radius: 3px;
}

/* =========================
   LIST STYLING
========================= */
.container-construction ul {
    margin: 15px 0 25px 25px;
    padding: 0;
}

.container-construction ul li {
    font-size: 15.5px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

/* =========================
   SERVICES GRID
========================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* =========================
   SERVICE CARD
========================= */
.service-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #00a651;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Card title */
.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

/* Card text */
.service-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
    .container-construction {
        padding: 50px 20px;
    }

    .container-construction h1 {
        font-size: 28px;
    }

    .container-construction h2 {
        font-size: 20px;
    }
}

/* =========================
   SERVICES GRID WRAPPER
========================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* =========================
   SERVICE CARD
========================= */
.service-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

/* Hover effect (subtle premium feel) */
.service-card:hover {
    transform: translateY(-6px);
    border-color: #00a651;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

/* =========================
   CARD TITLE
========================= */
.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

/* =========================
   CARD TEXT
========================= */
.service-card p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* =========================
   SUSTAINABILITY SECTION
========================= */
.container-construction h2 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-top: 50px;
    margin-bottom: 15px;
    position: relative;
}

/* underline accent */
.container-construction h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #00a651;
    margin-top: 8px;
    border-radius: 3px;
}

/* sustainability paragraph */
.container-construction p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    max-width: 850px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        padding: 20px;
    }
}

/* Slider container */
.image-slider {
    position: relative;
    width: 300px;
    height: 370px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* All images stacked */
.image-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Active image */
.image-slider .slide.active {
    opacity: 1;
}

/*office*/

/* =========================
   SERVICE CARD BASE
========================= */
.service-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-bottom: 20px;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-6px);
    border-color: #00a651;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

/* =========================
   IMAGE STYLING
========================= */
.service-card img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
}

/* =========================
   TITLE
========================= */
.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 15px 15px 10px;
}

/* =========================
   DESCRIPTION TEXT
========================= */
.service-card p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.7;
    margin: 0 15px;
}

/* =========================
   OPTIONAL: ICON STYLE FEEL (IF NEEDED LATER)
========================= */
.service-card h3::before {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #00a651;
    margin-bottom: 8px;
    border-radius: 2px;
}

/*commercial*/

/* =========================
   SERVICE CARD BASE (GLOBAL)
========================= */
.service-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-bottom: 20px;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-6px);
    border-color: #00a651;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

/* =========================
   IMAGE
========================= */
.service-card img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
}

/* =========================
   TITLE
========================= */
.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 15px 15px 10px;
}

/* subtle green accent line */
.service-card h3::before {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #00a651;
    margin-bottom: 8px;
    border-radius: 2px;
}

/* =========================
   DESCRIPTION
========================= */
.service-card p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.7;
    margin: 0 15px;
}

/*site*/

/* =========================
   SERVICE CARD SYSTEM (GLOBAL)
========================= */
.service-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-bottom: 20px;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-6px);
    border-color: #00a651;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

/* =========================
   IMAGE (ALL SERVICES)
========================= */
.service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

/* =========================
   TITLE
========================= */
.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 15px 15px 10px;
}

/* green accent line */
.service-card h3::before {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #00a651;
    margin-bottom: 8px;
    border-radius: 2px;
}

/* =========================
   TEXT
========================= */
.service-card p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.7;
    margin: 0 15px;
}

/*custom*/
/* Service card */
.service-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: #00a651;
}

/* Service image */
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Service title */
.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 20px 20px 10px;
}

/* Service description */
.service-card p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.7;
    margin: 0 20px 20px;
}

/*interior*/
/* Custom Design Service Card */
.service-card2 {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

/* Hover Effect */
.service-card2:hover {
    transform: translateY(-6px);
    border-color: #00a651;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Image */
.service-card2 img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

/* Heading */
.service-card2 h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 20px 20px 10px;
}

/* Description */
.service-card2 p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
    margin: 0 20px 20px;
}

/* base shape */
.site-bg .shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

/* TOP LEFT - large circle */
.site-bg .circle {
    width: 250px;
    height: 250px;
    background: rgba(10, 143, 74, 0.085);
    border-radius: 50%;
    top: 120px;
    left: -180px;
}

/* =========================
   get quote
========================= */

/* =========================
   MUSA FLOATING BUTTON
   KIOO CHETU BRAND
   WHITE • BLACK • GREEN
========================= */

.musa-quote {
    position: fixed;
    right: 0;
    bottom: 30px;
    z-index: 9999;
}

/* main link container */
.musa-quote a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* avatar */
.musa-quote img {
    width: 78px;
    height: 78px;
    border-radius: 50%;

    background: #ffffff;
    border: 3px solid #ffffff;

    box-shadow: -6px 6px 20px rgba(0,0,0,0.2);

    transform: translateX(10px);
    transition: 0.3s ease;
}

/* text bubble */
.musa-quote span {
    background: #000000;   /* black */
    color: #ffffff;

    font-family: 'Comfortaa', sans-serif;
    font-size: 13px;
    font-weight: 600;

    padding: 10px 14px;
    border-radius: 18px;

    white-space: nowrap;

    border-left: 4px solid #16a34a; /* green accent */

    opacity: 0;
    transform: translateX(8px);

    transition: 0.3s ease;
}

/* hover effect */
.musa-quote:hover span {
    opacity: 1;
    transform: translateX(-5px);
}

.musa-quote:hover img {
    transform: translateX(10px) translateY(-4px);
}
/*search dropdown results*/

#searchResults.dropdown-results {
  position: fixed;
  top: 0;     /* set dynamically by JS */
  right: 0;   /* set dynamically by JS */
  left: auto;
  height: max-content;
  width: max-content;
  min-width: 180px;
  max-width: 320px;
  margin: 0;
  padding: 6px 0;
  list-style: none;

  background-color: #000 !important;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);

  font-family: 'Comfortaa', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2px;

  overflow: auto;  /* allow scrolling */
  max-height: 180px;  /* reduced height */
  z-index: 999;
  display: none;
  animation: dropdownFade 0.18s ease-out;
}

#searchResults.dropdown-results.show {
  display: block;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

#searchResults.dropdown-results li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#searchResults.dropdown-results li:last-child {
  border-bottom: none;
}

#searchResults.dropdown-results li a {
  display: block;
  padding: 10px 18px;
  color: #fff !important;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

#searchResults.dropdown-results li a:hover,
#searchResults.dropdown-results li a:focus {
  background-color: #fff;
  color: #000 !important;
}

#searchResults.dropdown-results li.no-results {
  padding: 10px 18px;
  color: #aaa !important;
  font-style: italic;
  white-space: nowrap;
}

/* =========================
   BACKGROUND SHAPES
========================= */

body {
    position: relative;
    overflow-x: hidden;
    background: #ffffff;
}

.shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Desktop */
.circle {
    width: 220px;
    height: 220px;
    background: rgba(10, 143, 74, 0.3);
    top: 180px;
    left: -70px;
    animation: breathe 6s ease-in-out infinite alternate;
}

.blob {
    width: 200px;
    height: 200px;
    background: rgba(10, 143, 74, 0.3);
    top: 500px;
    right: -60px;
    animation: breathe 8s ease-in-out infinite alternate;
}

.drop {
    width: 180px;
    height: 180px;
    background: rgba(10, 143, 74, 0.3);
    top: 850px;
    left: -50px;
    animation: breathe 7s ease-in-out infinite alternate;
}

.dot {
    width: 200px;
    height: 200px;
    background: rgba(10, 143, 74, 0.3);
    bottom: 630px;
      right: -60px;

    animation: breathe 9s ease-in-out infinite alternate;
}

@keyframes breathe {
    0%   { transform: scale(1); opacity: 0.8; }
    50%  { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Mobile layout */
@media (max-width: 768px) {
    .circle {
        width: 120px;
        height: 120px;
        top: 800px;       /* higher so it’s visible */
        left: 0px;      /* pulled inside screen */
    }

    .blob {
        width: 110px;
        height: 110px;
        top: 300px;      /* evenly spaced below circle */
        right: 0px;     /* inside screen */
    }

    .drop {
        width: 100px;
        height: 100px;
        top: 1800px;      /* evenly spaced below blob */
        left: 0px;
    }

    .dot {
        width: 110px;
        height: 110px;
        bottom: 1700px;      /* evenly spaced below drop */
        right: 0px;
    }
}

