:root {
  --green: #137a4a;
  --muted: #666;
}

* {
  box-sizing: border-box;
  font-family:  Oswald;
}

body {
  margin: 0;
  background: #fff;
  color: #222;
}
.heading {
  font-size: 16px;
  color: #003399;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  background-color: white;
}
.navbar .links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar p {
  margin: 0;
  cursor: pointer;
  color: #003399;
  font-weight: 600;
}

.navbar .tasker {
  border: 1px solid #003399;
  padding: 6px 14px;
  border-radius: 20px;
}
 .brand{
  display: flex;
  align-items: center;
  color: #003399;
}
.brand img {
  width: 111px;
  height: 111px;
  border-radius: 8px;
  vertical-align: middle;
  margin-right: 8px;
}

:root {
  --green: #137a4a;
  --muted: #666;
}

* {
  box-sizing: border-box;
      font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

}

body {
  margin: 0;
  background: #fff;
  color: #222;
}

/* ---------------- NAVBAR ---------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 18px;
 
}

.navbar .links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar p {
  margin: 0;
  cursor: pointer;
  color: #990000;
  font-weight: 600;
  white-space: nowrap;
}

/* tasker pill button */
.navbar .tasker {
  border: 1px solid #990000;
  padding: 6px 14px;
  border-radius: 20px;
}

/* brand image */
.brand img {
  width: 111px;
  height: 111px;
  border-radius: 8px;
  vertical-align: middle;
  margin-right: 8px;
}

/* ---------------- CONTAINER (fullscreen width) ---------------- */
.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;     /* centers */
  padding: 5px;
  min-height: calc(100vh - 80px); /* Full screen height minus navbar */
}

/* ---------------- SLIDER ---------------- */
.slider {
  position: relative;
  width: 100%;
  height: 480px;
  max-height: 65vh;
  overflow: hidden;
  border-radius: 10px;
}


.slides img {
  position: absolute;
    /* top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;

    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slides img.active {
  opacity: 1;
}

/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.prev { left: 12px; }
.next { right: 12px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 12px;
  width: 100%;
  text-align: center;
}

.dots span {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dots .active-dot {
  background: white;
}

/* ---------------- HERO ---------------- */
.hero {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap; /* responsive */
  margin-top: 20px;
}

.hero h1 {
  font-size: 36px;
  color: var(--green);
  margin: 0;
  flex: 1;
}

/* Search */
.search {
  display: flex;
  margin-top: 12px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 4px;
  border-radius: 999px;
  width: 100%;
  max-width: 520px;
}

.search input {
  flex: 1;
  border: 0;
  padding: 10px 12px;
  outline: none;
}

.search button {
  background: var(--green);
  color: #fff;
  border: 0;
  padding: 10px 18px;
}

/* Hero Image */
.hero-img {
  width: 320px;
  max-width: 100%; /* responsive */
  border-radius: 10px;
  object-fit: cover;
}

/* ---------------- CATEGORY BUTTONS ---------------- */
.cats {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.cats button {
  padding: 8px 12px;
  border-radius: 20px;
  border: 0;
  background: #f0f0f0;
  white-space: nowrap;
}

/* ---------------- GRID ---------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.card {
  border: 1px solid #eee;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}

/* ---------------- MODAL ---------------- */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
}

.modal.hidden {
  display: none;
}

.modal-body {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  min-width: 320px;
}

.pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

button {
  cursor: pointer;
}

.muted {
  color: #777;
  font-size: 12px;
}





.feature-section {
  width: 100%;
  max-width: 1200px;
  /* /* margin: 50px auto; */
  padding: 0 20px; 
}

.feature-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #444;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 20px;
}


.feature-card {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card .icon-box {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .icon-box img {
  width: 40px;
  height: 40px;
}

.feature-card p {
  margin-left: 15px;
  font-size: 18px;
  color: #444;
  font-weight: 500;
}

/* .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
} */

/* Color options */
.green .icon-box { background: #7AC943; }
.teal .icon-box { background:  #2ECCB9; }
.blue .icon-box { background: #3A7BFD; }
.orange .icon-box { background: #F5A623; }

/* New */
.purple .icon-box { background: #9B59B6; }
.pink .icon-box { background: #32ac9d; }


/* SAME COLOR HOVER EFFECT */
.feature-card.green:hover {
  box-shadow: 0 8px 10px rgba(122, 201, 67, 0.55);
  border: 1px solid #7AC943;
}

.feature-card.teal:hover {
  box-shadow: 0 8px 10px rgba(46, 204, 185, 0.55);
  border: 1px solid #2ECCB9;
}

.feature-card.blue:hover {
  box-shadow: 0 8px 10px rgba(58, 123, 253, 0.55);
  border: 1px solid #3A7BFD;
}

.feature-card.orange:hover {
  box-shadow: 0 8px 10px rgba(245, 166, 35, 0.55);
  border: 1px solid #F5A623;
}

.feature-card.purple:hover {
  box-shadow: 0 8px 10px rgba(155, 89, 182, 0.55);
  border: 1px solid #9B59B6;
}

.feature-card.pink:hover {
  box-shadow: 0 8px 10px rgba(50, 172, 157, 0.55);
  border: 1px solid #32ac9d;
}


@media (max-width: 500px) {
  .feature-card {
    flex-direction: column;
    text-align: center;
    padding-bottom: 10px;
  }

  .feature-card p {
    margin-left: 0;
    margin-top: 8px;
  }

  .feature-card .icon-box {
    width: 100%;
    height: 80px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

/* ---------------- RESPONSIVE MEDIA QUERIES ---------------- */
@media (max-width: 768px) {
  .navbar .links {
    gap: 10px;
  }

  .hero h1 {
    font-size: 28px;
    text-align: center;
    width: 100%;
  }

  .slider {
    height: 250px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-img {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .slider {
    height: 200px;
  }

  .search {
    max-width: 100%;
  }

  .navbar p {
    font-size: 14px;
  }

  .brand img {
    width: 82px;
    height: 81px;
  }
  .heading {
    font-size: 8px;
  }
}

.icon-box i {
  font-size: 40px;
  color: #000000; /* change color */
}

.services-section {
  width: 100%;
  padding: 40px 20px;
}

.section-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 600;
}

.see-all {
  font-size: 15px;
  color: #3A7BFD;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.see-all:hover {
  
  color: #7AC943;
}

/* Section Title + See All */
.section-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 25px 0 15px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
}



/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  display: block;
    text-decoration: none;
    color: inherit;
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card h3 {
  padding: 0px;
  font-size: 23px;
  text-align: center;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 10px rgba(10, 61, 170, 0.774);
}

/* RESPONSIVE */
@media screen and (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 500px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}


/* RESPONSIVE */

/* Tablet 2 Cards */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile 1 Card */
@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 20px;
  }
}

.info-section {
  background: #2ECCB9; 
  padding: 70px 20px;
  display: flex;
  justify-content: center;
  /* margin-top: 70px; */
  margin: 56px 25px 25px;
}

.info-wrapper {
  width: 90%;
  max-width: 1200px;
  position: relative;   /* important */
}

/* Image full width inside wrapper */
.info-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

/* Floating white card */
.info-card {
  position: absolute;
  top: 50%;
  left: -53px;
  transform: translateY(-50%);

  background: #fff;
  padding: 35px 40px;
  width: 40%;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.info-card h2 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
}

.info-card li::before {
  content: "✔";
  color: #6c63ff;
  margin-right: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {

  .info-card {
    position: static;
    transform: none;
    width: 100%;
    margin-top: -40px;
  }

  .info-image img {
    height: 280px;
  }
}


.tbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
}

/* LEFT SIDE IMAGE */
.tbox-main-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 350px;
}

/* RIGHT SIDE */
.tbox-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tbox-slider {
  position: relative;
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* CUSTOMER PHOTO */
.tbox-user-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid #eee;
}

.tbox-item {
  display: none;
  text-align: left;
}
.tbox-item.active {
  display: block;
}

.tbox-text {
  font-size: 17px;
  color: #333;
  line-height: 1.5;
}

.tbox-author {
  margin-top: 8px;
  font-weight: 600;
  color: #555;
}

/* ARROWS */
.tbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.08);
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
}
.tbox-prev { left: 10px; }
.tbox-next { right: 10px; }

.tbox-arrow:hover {
  background: rgba(0,0,0,0.18);
}

/* DOTS */
.tbox-dots {
  display: flex;
  gap: 8px;
  margin-top: 15px;
  justify-content: center;
}

.tbox-dots span {
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}
.tbox-dots span.active {
  background: #4c8cf5;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .tbox-grid {
    grid-template-columns: 1fr;
  }
  .tbox-left {
    order: 1;
  }
  .tbox-right {
    order: 2;
  }
  .tbox-arrow { display: none; }
}




