* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Erode";
  src: url("/fonts/erode/fonts/Erode-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Recia";
  src: url("/fonts/recia/fonts/Recia-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
body {
  background: #fff;
  font-family: "Recia", Recia, serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Erode", Erode, sans-serif;
  color: #333;
}
p {
  font-family: "Recia", Recia, serif;
  color: #555;
  line-height: 1.6;
}

:root {
  --primary-blue: #0030a7;
  --primary-green: #009476;
  --text-dark: #333;
}

.top-bar {
  background-color: #f8f9fa;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.social-links a,
i {
  color: var(--text-dark);
  transition: 0.3s;
  font-size: 14px;
}
.social-links a:hover,
i:hover {
  color: var(--primary-green);
}

.navbar {
  padding: 15px 0;
  background: #fff;
}

.navbar-brand {
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-blue);
}
.brand-green {
  color: var(--primary-green);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 600;
  margin: 0 10px;
}

.nav-link:hover {
  color: var(--primary-green);
}

.btn-pickup {
  background-color: var(--primary-green);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  border: none;
}

.btn-pickup:hover {
  background-color: var(--primary-blue);
}

@media (max-width: 991px) {
  .offcanvas-start {
    width: 280px;
    background-color: white;
  }

  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .mobile-btn-wrapper {
    order: 2;
  }

  .navbar-toggler {
    order: 3;
    border: none;
  }

  .navbar-brand {
    order: 1;
    margin-right: 0;
  }

  .btn-pickup {
    font-size: 12px;
    padding: 8px 12px;
  }
}
.slider-img {
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  transition: transform 0.8s ease-in-out;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #0030a7;
  border: 2px solid #fff;
}

.carousel-indicators .active {
  background-color: #009476;
  width: 11px;
  border-radius: 10px;
}


.slide-1 {
  background-image: url("/images/banner-1.png");
}
.slide-2 {
  background-image: url("/images/banner-2.png");
}

@media (max-width: 767px) {
  .slider-img {
    height: 59vh;
  }

  .slide-1 {
    background-image: url("/images/mobile-banner-1.png");
  }
  .slide-2 {
    background-image: url("/images/mobile-banner-2.png");
  }
}

.features-section {
  background-color: #ffffff;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  background: #fdfdfd;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
  min-width: 60px;
  height: 60px;
  background-color: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: 0.3s;
}

.icon-wrapper i {
  font-size: 26px;
  color: var(--primary-green);
}

.feature-card:hover .icon-wrapper {
  background-color: var(--primary-green);
}

.feature-card:hover .icon-wrapper i {
  color: #ffffff;
}

.feature-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
  position: relative;
}

.feature-card p {
  font-size: 0.9rem;
  color: #636e72;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .feature-card {
    padding: 15px 10px;
  }
  .icon-wrapper {
    min-width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  .icon-wrapper i {
    font-size: 20px;
  }
}
.about-section {
  background-color: #fff;
  overflow: hidden;
}

.about-img-container {
  padding-right: 30px;
  padding-bottom: 30px;
}

.experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--primary-green);
  color: white;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 8px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.badge-content .number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.badge-content .text {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.sub-title {
  color: var(--primary-green);
  font-weight: 600;
  letter-spacing: 1px;
}

.check-list li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #444;
}

.check-list i {
  color: var(--primary-green);
  margin-right: 10px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 20px;
}

.contact-info-box {
  background-color: #fdfdfd;
  border-color: var(--primary-green);
}
.stepper-section {
  max-width: 1200px;
  margin: 50px auto;
  font-family: sans-serif;
}
.stepper-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.steps-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step-btn {
  cursor: pointer;
  padding: 15px;
  opacity: 0.4;
  transition: 0.3s;
}
.step-btn.active {
  opacity: 1;
}

.step-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}
.num {
  font-size: 22px;
  font-weight: 900;
  color: #0030a7;
}
.title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.progress-track {
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: #009476;
}

.step-btn.active .progress-fill {
  animation: load 5s linear forwards;
}
@keyframes load {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.steps-display {
  flex: 1.5;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  min-height: 450px;
}
.content-panel {
  display: none;
  padding: 0;
  animation: fadeIn 0.5s ease-in-out;
}
.content-panel.active {
  display: block;
}
.content-panel img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.text-meta {
  padding: 25px;
}
.text-meta h3 {
  color: #0030a7;
  margin: 0 0 10px 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .experience-badge {
    width: 100px;
    height: 100px;
    border-width: 5px;
  }
  .badge-content .number {
    font-size: 28px;
  }
  .badge-content .text {
    font-size: 9px;
  }
  .title {
    font-size: 8px;
  }
  .text-meta h3 {
    font-size: 16px;
  }
  .text-meta p {
    font-size: 12px;
  }
  .stepper-wrapper {
    align-items: anchor-center;
  }
  .content-panel img {
    height: auto;
  }
}

.laundry-section {
  padding: 80px 20px;
  background-color: #f4f8fb;
  font-family: "Segoe UI", Arial, sans-serif;
}

.laundry-container {
  max-width: 1200px;
  margin: 0 auto;
}

.laundry-header {
  text-align: center;
  margin-bottom: 50px;
}

.laundry-subtitle {
  color: #009476;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
}

.laundry-title {
  color: #0030a7;
  font-size: 36px;
  margin: 10px 0;
  font-weight: 800;
}

.laundry-underline {
  width: 60px;
  height: 4px;
  background-color: #009476;
  margin: 0 auto;
  border-radius: 2px;
}

.laundry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.laundry-card {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.laundry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #0030a7;
  z-index: -1;
  transition: all 0.4s ease;
  color: #fff;
}

.laundry-card:hover::before {
  height: 100%;
}

.laundry-icon {
  width: 60px;
  height: 60px;
  background-color: #009476;
  color: #009476;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border-radius: 12px;
  margin-bottom: 25px;
  transition: 0.3s;
}

.laundry-icon i::before {
  color: #fff;
}

.laundry-card-title {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 15px;
  transition: 0.3s;
}

.laundry-card-text {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  transition: 0.3s;
}

.laundry-read-more {
  text-decoration: none;
  color: #0030a7;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.laundry-card:hover .laundry-card-title,
.laundry-card:hover .laundry-card-text,
.laundry-card:hover .laundry-read-more {
  color: #ffffff;
}

.laundry-card:hover .laundry-read-more {
  opacity: 1;
  transform: translateY(0);
}

.laundry-card:hover .laundry-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.laundry-footer-btn {
  text-align: center;
  margin-top: 50px;
}

.laundry-main-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #0030a7;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0, 48, 167, 0.2);
}

.laundry-main-btn:hover {
  background-color: #009476;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .laundry-title {
    font-size: 28px;
  }
}
.cta-wrapper {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0030a7 0%, #001a57 100%);
  position: relative;
  overflow: hidden;
}

.cta-wrapper::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(0, 148, 118, 0.2);
  border-radius: 50%;
  filter: blur(80px);
}

.cta-content {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  z-index: 2;
}

.cta-text-area {
  flex: 1;
  max-width: 700px;
}

.cta-badge {
  background: #009476;
  color: #fff;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.cta-main-title {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: sans-serif;
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.cta-btn-book {
  background: #009476;
  color: #fff;
  border: 2px solid #009476;
}
.cta-btn-book i {
  color: #fff;
  transition: 0.3s;
}
.cta-btn-book:hover {
  background: #fff;
  color: #009476;
  transform: translateY(-3px);
}
.cta-btn-book:hover i {
  color: #009476;
}

.cta-btn-call {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-btn-call:hover {
  background: #fff;
  color: #0030a7;
}
.cta-btn-call i {
  color: #fff;
  transition: 0.3s;
}
.cta-btn-call:hover i {
  color: #0030a7;
}

.cta-image-box {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
}

.cta-floating-icon {
  font-size: 100px;
  color: rgba(255, 255, 255, 0.1);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 991px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-text-area {
    max-width: 100%;
  }
  .cta-buttons {
    justify-content: center;
  }
  .cta-main-title {
    font-size: 32px;
  }
  .cta-image-box {
    display: none;
  }
}
.tst-section {
  padding: 80px 20px;
  background-color: #fff;
}
.tst-container {
  max-width: 1300px;
  margin: 0 auto;
}

.tst-header {
  text-align: center;
  margin-bottom: 40px;
}
.tst-header h2 {
  color: #0030a7;
  font-size: 32px;
  margin-bottom: 10px;
}
.tst-header span {
  color: #009476;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
}
.tst-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin: 15px;
  position: relative;
  border-top: 4px solid #009476;
}

.tst-quote-icon i {
  font-size: 24px;
  color: #0030a7;
  margin-bottom: 15px;
  opacity: 0.2;
}

.tst-comment {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 80px;
}

.tst-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.tst-author img {
  width: 55px !important;
  height: 55px !important;
  border-radius: 50%;
  object-fit: cover;
}

.tst-meta h4 {
  margin: 0;
  color: #333;
  font-size: 17px;
}
.tst-stars {
  font-size: 12px;
  margin-top: 3px;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: #0030a7;
}

.ft-area {
  background-color: #001a57;
  color: #ffffff;
  padding: 80px 0 20px;
}

.ft-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ft-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.ft-logo {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 800;
  color: #fff;
}
.ft-logo span {
  color: #009476;
}

.ft-about {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e0;
  margin-bottom: 25px;
}

.ft-social {
  display: flex;
  gap: 15px;
}
.ft-social a {
  width: 38px;
  height: 38px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.ft-social a:hover {
  background: #009476;
  transform: translateY(-3px);
}

.ft-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: #fff;
}
.ft-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #009476;
}

.ft-links {
  list-style: none;
  padding: 0;
}
.ft-links li {
  margin-bottom: 12px;
}
.ft-links a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
  display: inline-block;
}
.ft-links a:hover {
  color: #009476;
  transform: translateX(5px);
}

.ft-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #cbd5e0;
  margin-bottom: 15px;
}
.ft-contact i {
  color: #fff;
  margin-top: 4px;
}
.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  margin-top: 20px;
}

.ft-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.ft-copyright p {
  margin: 0;
  font-size: 14px;
  color: #a0aec0;
}

.ft-legal-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.ft-legal-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.ft-legal-links a:hover {
  color: #009476;
}

.ft-legal-links span {
  color: rgb(255, 255, 255);
  font-size: 12px;
}

@media (max-width: 600px) {
  .ft-bottom-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .ft-area {
    padding: 60px 0 20px;
  }
  .ft-row {
    text-align: start;
  }
  .ft-title::after {
    left: 7%;
    transform: translateX(-50%);
  }
  .ft-social {
    justify-content: start;
  }
  .ft-contact p {
    justify-content: start;
  }
}

.bc-wrapper {
  background: linear-gradient(rgb(0 48 167 / 54%), rgb(0 48 167 / 47%)), url(/images/subtitle-wrapper01.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}
.bc-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}
.bc-nav {
  font-size: 14px;
  font-weight: 600;
}
.bc-nav a {
  color: #fff;
  text-decoration: none;
}
.bc-nav a:hover {
  color: #fff;
}
.bc-sep {
  margin: 0 10px;
  opacity: 0.5;
  font-size: 10px;
}
.bc-sep i {
  color: #fff;
}
.bc-current {
  color: #fff;
  opacity: 0.8;
}

.about-full-content {
  padding: 100px 20px;
  background: #fff;
  font-family: sans-serif;
}
.about-main-container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-flex-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-img-side {
  flex: 1;
}
.about-img-frame {
  position: relative;
}
.about-img-frame img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-floating-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: #fff;
  padding: 20px 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #009476;
}
.about-icon-circle {
  font-size: 30px;
  color: #0030a7;
}
.about-icon-circle i {
  color: #009476;
  font-size: 2rem;
}
.about-card-text h3 {
  margin: 0;
  font-size: 20px;
  color: #333;
}
.about-card-text p {
  margin: 0;
  font-size: 13px;
  color: #777;
}

.about-text-side {
  flex: 1.2;
}
.about-tag {
  color: #009476;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
}
.about-heading {
  font-size: 36px;
  color: #0030a7;
  margin: 15px 0;
  font-weight: 800;
  line-height: 1.2;
}
.about-para {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-check-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}
.about-check-list li {
  margin-bottom: 12px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-check-list i {
  color: #009476;
}

.about-signature-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 25px;
}
.about-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.about-author h4 {
  margin: 0;
  font-size: 18px;
  color: #0030a7;
}
.about-author p {
  margin: 0;
  font-size: 14px;
  color: #777;
}
.about-sign {
  height: 50px;
  opacity: 0.6;
  filter: grayscale(1);
}

.about-stats-bar {
  background: #f8fafd;
  padding: 60px 20px;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}
.stat-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat-box i {
  font-size: 40px;
  color: #009476;
  opacity: 0.3;
}
.stat-info h3 {
  font-size: 28px;
  margin: 0;
  color: #0030a7;
}
.stat-info p {
  margin: 0;
  color: #666;
  font-weight: 600;
}

@media (max-width: 991px) {
  .about-flex-row {
    flex-direction: column;
    text-align: center;
  }
  .about-floating-card {
    position: static;
    margin-top: 20px;
    justify-content: center;
  }
  .about-check-list li {
    justify-content: center;
  }
  .about-signature-box {
    flex-direction: column;
    gap: 20px;
  }
  .about-heading {
    font-size: 28px;
  }
}

.advantages-section {
  padding: 80px 0;
  position: relative;
}

.advantages-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 148, 118, 0.05) 0%,
    transparent 70%
  );
  z-index: -1;
}

.subtitle-tag {
  color: var(--primary-green);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--primary-green);
}

.main-title {
  font-family: Erode, sans-serif;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 50px;
}

.main-title span {
  color: var(--primary-blue);
}
.advantage-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.advantage-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 48, 167, 0.1);
  border-color: rgba(0, 48, 167, 0.1);
}
.icon-box {
  width: 65px;
  height: 65px;
  background: linear-gradient(
    135deg,
    rgba(0, 48, 167, 0.05) 0%,
    rgba(0, 148, 118, 0.05) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary-blue);
  margin-bottom: 25px;
  transition: 0.5s;
}
.icon-box i {
  transition: 0.5s;
  font-size: 26px;
}
.advantage-card:hover .icon-box {
  background: var(--primary-green);
  color: #ffffff;
  transform: scale(1.1) rotate(10deg);
}
.advantage-card:hover .icon-box i {
  color: #ffffff;
}

.feature-h {
  font-family: Erode, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.feature-p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.advantage-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--primary-green);
  transition: 0.4s;
}

.advantage-card:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.1rem;
  }
  .advantages-section {
    padding: 50px 0;
  }
}

.services-wrapper {
  padding: 100px 0;
}

.section-subtitle {
  color: var(--primary-green);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--erode-font);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 3rem; 
  line-height: 1.2;
}

.service-box {
  position: relative;
  background: #fff;
  transition: all 0.4s ease;
  margin-bottom: 30px;
  border-radius: 4px;
  height: 100%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  
}

.image-holder {
  position: relative;
  overflow: visible;
  margin-bottom: 45px;
}

.service-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  transition: 0.5s;
}

.floating-icon {
  position: absolute;
  bottom: -30px;
  left: 25px;
  width: 70px;
  height: 70px;
  background: var(--primary-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 20px rgba(0, 148, 118, 0.2);
  z-index: 5;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 4px solid #fff;
}
.floating-icon i {
  transition: 0.4s;
  color: #fff;
  font-size: 1.6rem;
}
.service-box:hover .floating-icon {
  background: var(--primary-blue);
  transform: translateY(-5px) scale(1.1);
}

.service-box:hover .service-img {
  transform: scale(1.02);
  filter: brightness(0.9);
}

.service-text {
  padding: 0 15px 30px 15px;
}

.service-name {
  font-family: var(--erode-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.service-desc {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.btn-service {
  display: inline-block;
  background-color: var(--primary-green);
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
  border-radius: 2px;
  text-transform: uppercase;
}

.btn-service:hover {
  background-color: var(--primary-blue);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 48, 167, 0.15);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .service-img {
    height: 240px;
  }
  .floating-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}

.commercial-section {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: var(--body-font);
}

.image-wrapper {
  position: relative;
  padding-right: 30px;
}

.main-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 20px 20px 0px rgba(0, 148, 118, 0.05);
  transition: transform 0.4s ease;
}

.image-wrapper:hover .main-img {
  transform: scale(1.02);
}

.dotted-arrow {
  position: absolute;
  top: 50%;
  right: -10px;
  width: 80px;
  display: none;
}

.content-subtitle {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 15px;
  display: block;
}

.content-title {
  font-family: Erode, sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: #222;
  line-height: 1.1;
  margin-bottom: 25px;
}

.content-text {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.client-header {
  font-weight: 600;
  color: #444;
  margin-bottom: 20px;
}

.client-list {
  list-style: none;
  padding: 0;
}

.client-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  color: #555;
  transition: color 0.3s ease;
}

.client-list li i {
  color: var(--primary-green);
  margin-right: 12px;
  font-size: 1.1rem;
  font-weight: bold;
}

.client-list li:hover {
  color: var(--primary-blue);
}

@media (min-width: 992px) {
  .dotted-arrow {
    display: block;
  }
}

@media (max-width: 768px) {
  .content-title {
    font-size: 2.2rem;
  }
  .image-wrapper {
    margin-bottom: 40px;
    padding-right: 0;
  }
}

.service-details-section {
  padding: 80px 0;
}

.sidebar-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  margin-bottom: 30px;
}

.service-menu {
  list-style: none;
  padding: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.service-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
  background: #fff;
}

.service-menu li a i {
  font-size: 1.2rem;
  color: #ccc;
  transition: 0.3s;
}

.service-menu li a.active {
  background-color: var(--primary-blue) !important;
  color: #ffffff !important;
}

.service-menu li a.active i {
  color: #ffffff !important;
  transform: translateX(5px);
}
.service-menu li a:hover {
  background-color: var(--primary-blue) !important;
  color: #ffffff !important;
}

.main-service-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
}

.service-main-title {
  font-family: var(--erode-font);
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.service-main-title span {
  color: var(--primary-green);
}

.service-content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-item i {
  width: 25px;
  height: 25px;
  background: rgba(0, 148, 118, 0.1);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-right: 15px;
}

@media (max-width: 991px) {
  .sidebar-sticky {
    position: static;
  }
}

.contact-card {
  padding: 40px 24px;
  background: #ffffff;
  font-family: "Recia", serif;
  color: #4a4a4a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-title {
  font-family: "Erode", sans-serif;
  color: #0030a7;
  font-size: 28px;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}
.contact-item i {
  color: #009476;
  font-size: 20px;
  margin-top: 2px;
}

.contact-item p {
  margin: 0;
  line-height: 1.5;
  font-size: 16px;
}

.contact-item a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #0030a7;
}

.cta-button {
  width: 100%;
  background-color: #009476;
  color: white;
  border: none;
  padding: 15px 20px;
  font-family: "Erode", sans-serif;
  font-weight: 600;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #0030a7;
}

.contact-wrapper {
  max-width: 1350px;
  margin: 80px auto;
  padding: 0 24px;
}

.contact-header {
  text-align: left;
  margin-bottom: 60px;
  border-left: 5px solid #009476;
  padding-left: 30px;
}

.hero-title {
  font-family: "Erode", sans-serif;
  font-size: 4rem;
  color: #0030a7;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 500px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  background: #fff;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
}

.section-heading {
  font-family: "Erode", sans-serif;
  font-size: 2rem;
  margin-bottom: 40px;
}

.info-card {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.icon-blue {
  background: rgba(0, 48, 167, 0.1);
  color: #0030a7;
}
.icon-green {
  background: rgba(0, 148, 118, 0.1);
  color: #009476;
}

.info-content h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}
.info-content p {
  font-size: 0.8rem;

}

.form-row {
  display: flex;
}

.form-group {
  flex: 1;
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0030a7;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Recia", serif;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #009476;
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 148, 118, 0.05);
}

.submit-button {
  background: #0030a7;
  color: #fff;
  padding: 18px 40px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.submit-button:hover {
  background: #009476;
}

.btn-arrow {
  transition: transform 0.3s ease;
}
.submit-button:hover .btn-arrow {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .form-row {
    flex-direction: column;
  }
}
.social-wrapper {
  border-top: 1px solid var(--border-soft);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 48, 167, 0.1);
  border: 1px solid var(--border-soft);
  color: var(--deep-blue);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-link i {
  transition: 0.4s;
  color: var(--deep-blue);
  font-size: 1.2rem;
}
.social-link:hover {
  background: var(--emerald-green);
  color: #0030a7;
  border-color: var(--emerald-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 148, 118, 0.2);
}

.icon-PHONE {
  background: rgba(0, 48, 167, 0.05);
  color: var(--deep-blue);
}
@media (max-width: 768px) {
  .slider-img {
    height: 45vh;
  }
  .social-icons{
    gap: 8px;
  }
  .contact-wrapper { 
    padding: 0px 10px;
}
}
 
.privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: color 0.3s;
}

.back-link:hover { color: var(--primary-green); }
 
.policy-title {
    font-family: 'Erode', sans-serif;
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.last-updated {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Erode', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-blue); 
}
 
.policy-intro {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
    margin-bottom: 40px;
}

.policy-list {
    margin: 20px 0;
    padding-left: 20px;
}

.policy-list li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.policy-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.policy-highlight {
    background: var(--bg-soft);
    padding: 30px;
    border-radius: 12px;
    border-top: 5px solid var(--primary-blue);
    margin: 50px 0;
}

.policy-highlight h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-footer {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.85rem;
    color: #999;
} 
@media (max-width: 600px) {
    .policy-title { font-size: 2.5rem; }
    body { padding: 20px 15px; }
}
 
.ly-pricing-wrapper { 
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.ly-main-header {
    text-align: center;
    margin-bottom: 50px;
}

.ly-title {
    font-family: 'Erode', sans-serif;
    color: var(--primary-blue);
    font-size: 3.2rem;
    margin-bottom: 5px;
}

.ly-subtitle {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.ly-section-block {
    margin-bottom: 80px;
}

.ly-cat-head {
    font-family: 'Erode', sans-serif;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
 
.ly-three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}
 
.ly-service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid #eef2f6;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.ly-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 48, 167, 0.08);
} 
.ly-price-box {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.ly-price-box small {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}
 
.ly-card--blue-border { border: 2.5px solid var(--primary-blue); }
.ly-card--green-border { border: 2.5px solid var(--primary-green); }

.ly-name {
    font-family: 'Erode', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.ly-info {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
    min-height: 45px;
}
 
.ly-action-btn {
    display: block;
    background: var(--primary-blue);
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.ly-action-btn:hover {
    background: var(--primary-green);
}
 
@media (max-width: 1024px) {
    .ly-three-col-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ly-three-col-grid { grid-template-columns: 1fr; }
    .ly-title { font-size: 2.5rem; }
}