{
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 1px solid #ccc;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.call-btn {
    background: #fff;
    border: 2px solid red;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* BRANDS */
.brands {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px;
}

.brands img {
    height: 40px;
}

/* HERO SECTION */
.hero {
    max-width: 900px;
    margin: auto;
    position: relative;
}

.hero img {
    width: 100%;
    height: auto;
}

/* TEXT OVER IMAGE */
.hero-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #1f2d3d;
    color: white;
    padding: 20px;
    font-size: 28px;
    font-weight: bold;
}

/* WHATSAPP & CALL */
.float-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: green;
    color: white;
    padding: 12px;
    border-radius: 50%;
    font-size: 18px;
}

.whatsapp {
    left: auto;
    right: 20px;
}
















{
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* SECTION */
.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    background: #f2f2f2;
}

/* LEFT TEXT */
.text {
    width: 50%;
}

.text h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.text p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* CHECK LIST */
.features {
    margin-top: 15px;
    font-size: 14px;
}

.features span {
    display: inline-block;
    margin-right: 10px;
}

/* BUTTON */
.btn {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #000;
    border-radius: 25px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

/* RIGHT IMAGE */
.image {
    width: 45%;
}

.image img {
    width: 100%;
    border-radius: 5px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .section {
        flex-direction: column;
        padding: 30px;
    }

    .text, .image {
        width: 100%;
    }

    .image {
        margin-top: 20px;
    }
}


{
    margin: 0;
    font-family: Arial, sans-serif;
}

/* SECTION */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 80px;
    background: #e9e4d8; /* light beige */
}

/* LEFT CONTENT */
.about-text {
    width: 45%;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BUTTON */
.contact-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #4a78d0;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
}

/* RIGHT IMAGE */
.about-image {
    width: 50%;
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

/* DOTS */
.dots {
    text-align: center;
    margin-top: 10px;
}

.dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 3px;
    background: #bbb;
    border-radius: 50%;
}

.dots span.active {
    background: #333;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 30px;
    }

    .about-text, .about-image {
        width: 100%;
    }

    .about-image {
        margin-top: 20px;
    }
}

{
    margin: 0;
    font-family: Arial, sans-serif;
}

/* SECTION */
.services {
    background: #0f1f2e;
    color: #fff;
    padding: 70px 60px;
    text-align: center;
}

/* TITLE */
.services h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.services p {
    font-size: 14px;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* CARDS */
.service-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* SINGLE CARD */
.card {
    width: 32%;
    text-align: left;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.card p {
    font-size: 13px;
    color: #bbb;
}

/* FEATURES */
.features {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    text-align: left;
    gap: 30px;
}

.feature-box {
    width: 32%;
    font-size: 13px;
    color: #ddd;
}

.feature-box p {
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .service-container,
    .features {
        flex-direction: column;
    }

    .card,
    .feature-box {
        width: 100%;
    }
}













{
    margin: 0;
    font-family: Arial, sans-serif;
}

/* ===== SERVICE AREA ===== */
.service-area {
    background: #4a5635;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.service-area h3 {
    margin-bottom: 10px;
}

.service-area p {
    font-size: 14px;
    margin-bottom: 20px;
}

.area-list {
    display: flex;
    justify-content: center;
    gap: 100px;
    font-size: 13px;
    text-align: left;
}

/* ===== WHY SECTION ===== */
.why-section {
    background: #4a5635;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.why-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.why-section p {
    margin-bottom: 40px;
}

/* FEATURES */
.why-features {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.why-box {
    width: 200px;
}

.why-box h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.why-box p {
    font-size: 13px;
    color: #ddd;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .area-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .why-features {
        gap: 30px;
    }
}







 {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #eae7df;
}

/* FAQ Section */
.container {
    width: 80%;
    margin: 40px auto;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.faq {
    background: #f5f5f5;
    border: 1px solid #ccc;
}

.faq-item {
    border-bottom: 1px solid #ccc;
}

.faq-question {
    padding: 12px;
    cursor: pointer;
    background: #eee;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 12px;
    background: #fff;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    background: #444;
    color: #fff;
    padding: 40px 20px;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .col {
    width: 23%;
    min-width: 220px;
}

.footer h3 {
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer a {
    color: #ddd;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    background: #2d5bd1;
    color: white;
}












/* Section Background */
.faq-section {
  background: #e9e6dc;
  padding: 50px 0;
}

/* Container */
.faq-container {
  width: 80%;
  margin: auto;
}

/* Heading */
.faq-container h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}

/* Box */
.faq-box {
  border: 1px solid #cfcfcf;
  background: #f7f7f7;
}

/* Item */
.faq-item {
  border-bottom: 1px solid #cfcfcf;
}

/* Question */
.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px;
  font-size: 15px;
  background: #f7f7f7;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
}

/* Plus Icon */
.faq-question span {
  font-weight: bold;
  font-size: 18px;
  margin-right: 10px;
}

/* Answer */
.faq-answer {
  display: none;
  padding: 15px;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

/* Active */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  content: "-";
}





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* LOGO SLIDER */
.logo-slider {
  overflow: hidden;
  background: #fff;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  width: calc(200px * 6);
  animation: scroll 12s linear infinite;
}

.logo-track img {
  width: 200px;
  margin: 0 20px;
  object-fit: contain;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* HERO SECTION */
.hero {
  background: url('service-bg.jpg') no-repeat center/cover;
  height: 400px;
  position: relative;
}

.overlay {
  background: rgba(20, 40, 60, 0.85);
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.overlay h1 {
  color: #fff;
  font-size: 38px;
  max-width: 700px;
  line-height: 1.3;
}








{
  margin: 0;
  font-family: Arial, sans-serif;
}

/* SECTION */
.service-section {
  max-width: 100%;
  margin: auto;
  background: #1f2f3d;
}

/* TOP BANNER */
.top-banner {
  background: #2c3e50;
  padding: 25px;
}

.top-banner h1 {
  color: #fff;
  font-size: 32px;
  line-height: 1.3;
  margin: 0;
}

/* IMAGE */
.service-image img {
  width: 100%;
  display: block;
}

/* BOTTOM BAR */
.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #243746;
  padding: 20px;
  flex-wrap: wrap;
}

/* FEATURES */
.features {
  display: flex;
  gap: 15px;
}

.feature {
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: bold;
}

/* CONTACT BOX */
.contact-box {
  background: #f28c28;
  color: #fff;
  padding: 15px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.contact-box strong {
  font-size: 16px;
}

.whatsapp {
  font-size: 22px;
}

 {
    margin: 0;
    font-family: Arial, sans-serif;
  }

  .service-section {
    background-color: #4b5638;
    color: #fff;
    padding: 40px 15px;
    text-align: center;
  }

  .service-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .service-section p {
    font-size: 15px;
    margin-bottom: 25px;
    color: #e0e0e0;
  }

  .areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ALWAYS 2 columns */
    gap: 20px;
    max-width: 600px;
    margin: auto;
    text-align: left;
  }

  .areas ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .areas li {
    margin-bottom: 6px;
    font-size: 14px;
  }

  /* Slight scaling for larger screens */
  @media (min-width: 768px) {
    .areas {
      max-width: 900px;
      gap: 60px;
    }

    .areas li {
      font-size: 16px;
    }

    .service-section h2 {
      font-size: 28px;
    }
  }
