@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');


:root {
  --header-height: 86px;
  --primary: #75bd00;
  --primary-dark: #5ea000;
  --dark: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
}

.titillium-web-extralight {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.titillium-web-light {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.titillium-web-regular {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.titillium-web-semibold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.titillium-web-bold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.titillium-web-black {
  font-family: "Titillium Web", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.titillium-web-extralight-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.titillium-web-light-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.titillium-web-regular-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.titillium-web-semibold-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.titillium-web-bold-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: italic;
}




body {
  padding-top: var(--header-height);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998;

  background: rgba(255, 255, 255, 0.53);
box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  backdrop-filter: blur(16.1px);
  -webkit-backdrop-filter: blur(16.1px);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.12);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-wrap {
  width: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
}

.brand-name::first-letter {
  color: var(--dark);
}

.brand-tagline {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 5px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 34px 0;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 99px;
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle .material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle .material-symbols-outlined {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 16px);
  transition: all 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.solution-category {
  position: relative;
}

.solution-category-link,
.solution-submenu a,
.nav-dropdown-menu>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #374151;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.solution-category-link:hover,
.solution-submenu a:hover,
.nav-dropdown-menu>a:hover {
  background: #f3f9e8;
  color: var(--primary-dark);
}

.solution-submenu {
  position: absolute;
  left: calc(100% + 12px);
  top: 0;
  width: 250px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.22s ease;
}

.solution-category:hover .solution-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dropdown-all {
  margin-top: 8px;
  background: #f8fafc;
  color: var(--primary-dark) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-btn {

  padding: 10px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.header-btn .material-symbols-outlined {
  font-size: 23px;
}

.call-btn {
  color: #1f2937;
  background: #fff;
  border: 1px solid #1f2937;
}

.call-btn:hover {
  background: #1f2937;
  color: #fff;
  transform: translateY(-2px);
}

.whatsapp-btn {
  color: #fff;
  background: var(--primary);
  border: 3px solid var(--primary);
  box-shadow: 0 12px 28px rgba(117, 189, 0, 0.28);
}

.whatsapp-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--dark);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


.laundry-hero {
    position: relative;
    min-height: 850px;
    padding: 65px 0 70px;
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 146, 25, 0.12), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(118, 190, 0, 0.12), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: flex-start;
    gap: 80px;
}

.location-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 146, 25, 0.35);
    border-radius: 999px;
    background: rgb(255, 255, 255);
    box-shadow: 0 8px 20px rgba(255, 146, 25, 0.08);
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
    margin-bottom: 14px;
}

.location-pill span {
    width: 10px;
    height: 10px;
    background: #78bd14;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(120, 189, 20, 0.12);
}

.hero-content h1 {
    font-size: 4.3rem;
    line-height: 0.98;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    font-family: "Outfit", sans-serif;
    letter-spacing: -0.02em;

}

.orange-text {
    color: #ff9419;
}
.doorstep-wrap {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.doorstep-text {
    margin: 0;
    font-size: clamp(64px, 12vw, 145px);
    line-height: 0.85;
    font-weight: 900;
    color: #74b900 !important;
    font-family: Arial, Helvetica, sans-serif;
}

.doorstep-curve {
    position: absolute;
    left: 0;
    bottom: 16px !important;
    width: 100%;
    height: 28px;
    overflow: visible;
}

.doorstep-curve path {
    fill: none;
    stroke: #ff9317;
    stroke-width: 9;
    stroke-linecap: round;
}

.hero-desc {

    color: #000000;
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 42px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-buttons a {
    height: 54px;
    padding: 0 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.25s ease;
}

.btn-primary {
    background: #ff9419;
    color: #fff;
    box-shadow: 0 16px 34px rgba(255, 148, 25, 0.28);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #ef850c;
}

.btn-outline {
    background: #fff;
    color: #1f2937;
    border: 3px solid #1f2937;
}

.btn-outline:hover {
    background: #1f2937;
    color: #fff;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #76bd08;
    color: #fff;
    box-shadow: 0 16px 34px rgba(118, 189, 8, 0.25);
}

.btn-whatsapp:hover {
    background: #64a400;
    transform: translateY(-3px);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 38px;
    max-width: 860px;
}

.feature-card {
    min-height: 74px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e7eaf0;
    border-radius: 18px;
    
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #eef9df;
    color: #74bd08;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-card p {
    color: #374151;
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 0px !important;


}

.rating-row {
    display: flex;
    align-items: center;
    gap: 22px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    margin-left: -12px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.avatar-group img:first-child {
    margin-left: 0;
}

.stars {
    color: #ff9419;
    font-size: 20px;
    font-weight: 900;
}

.stars strong {
    color: #1f2937;
    margin-left: 8px;
    font-size: 17px;
}

.rating-content p {
    margin-top: 4px;
    color: #6b7280;
    font-size: 15px;
}

.hero-image-area {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-card {
    position: relative;
    width: 100%;
    height: 580px;
    border-radius: 48px;
    overflow: hidden;

}



.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px !important;
}

.floating-card {
    position: absolute;
    z-index: 5;
    padding: 13px 20px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 18px;

}

.pickup-card {
    top: -20px;
    left: -30px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.delivery-card {
    right: -35px;
    bottom:-20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.floating-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: #fff1df;
    color: #ff9419;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.floating-icon.green {
    background: #eaf8dc;
    color: #75bd08;
}

.floating-card span {
    display: block;
    color: #8b95a5;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 4px;
}

.floating-card strong {
    display: block;
    color: #111827;
    font-size: 18px;
    font-weight: 500;
}

.image-dot {
    position: absolute;
    z-index: 6;
    border-radius: 50%;
}

.dot-one {
    top: 55px;
    right: 72px;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 2px solid rgba(255, 148, 25, 0.4);
}

.dot-two {
    top: 110px;
    right: 40px;
    width: 15px;
    height: 15px;
    background: #ff9419;
}

.dot-three {
    bottom: 160px;
    left: 92px;
    width: 20px;
    height: 20px;
    background: #76bd08;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.35;
}

.shape-left {
    width: 260px;
    height: 260px;
    background: #ffe3c2bb;
    left: -100px;
    top: 80px;
}


.services-section {
    position: relative;
    padding: 70px 0;
    background: #ffffff;
    overflow: hidden;
}

.services-heading {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items:center;
    gap: 60px;
    margin-bottom: 54px;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #ff8f12;
    font-size: 13px;
    font-weight: 500;

}

.services-heading h2 {
    margin: 0;

    color: #1f2937;
    font-size: 3.4rem;
    line-height: 1.08;

    font-weight: 700;
}
.services-heading h2 span{
    margin: 0;

    color: #FF941A;
    font-size: 3.4rem;
    line-height: 1.08;
    font-weight: 700;
}

.services-heading p {
    max-width: 540px;   
    color: #586477;
    font-size: 18px;
    line-height: 1.55;
    margin: 0 0 8px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.11);
    border-color: rgba(255, 148, 25, 0.28);
}

.service-image {
    position: relative;
    height: 178px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.08) 0%,
        rgba(15, 23, 42, 0.04) 50%,
        rgba(15, 23, 42, 0) 100%
    );
    pointer-events: none;
}

.service-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    width: 45px;
    height: 45px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.service-icon i {
    font-size: 21px;
    line-height: 1;
}

.service-icon.orange {
    background: #ff9419;
}

.service-icon.green {
    background: #73b900;
}

.service-content {
    padding: 26px 24px 24px;
}

.service-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #73b900;
    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
}

.service-content h3 {
    margin: 0 0 12px;
    color: #1f2937;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.6px;
}

.service-content p {
    min-height: 54px;
    margin: 0 0 20px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.55;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1f2937;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.25s ease;
}

.service-link .material-symbols-outlined {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.service-link:hover {
    color: #ff9419;
}

.service-link:hover .material-symbols-outlined {
    transform: translateX(4px);
}
.stats-band{
    padding:70px 0;
    background:#f7fafc;
    position:relative;
    overflow:hidden;
}

.stats-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}



.content-left h2{
    font-size:54px;
    line-height:1.1;
    font-weight: 700;
    color:#0f172a;
    margin-bottom:25px;
}
.content-left h2 span{
    margin: 0;

    color: #FF941A;
    font-size: 3.4rem;
    line-height: 1.08;
    font-weight: 700;
}


.content-left p{
    color:#64748b;
    line-height:1.8;
    font-size:17px;
    margin-bottom:30px;
}

.btn-cyan{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:58px;
    padding:0 30px;
    border-radius:60px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    background:linear-gradient(135deg,#74b900,#74b900);
    transition:.4s;
}

.btn-cyan:hover{
    transform:translateY(-4px);
}

.grid-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.stat-card{
    position:relative;
    padding:35px;
    border-radius:30px;
    background:#fff;
    overflow:hidden;
    border:1px solid #e2e8f0;
    transition:.45s;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.card-glow{
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:#ecffc9;
    top:-80px;
    right:-80px;
    transition:.5s;
}

.stat-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.stat-card:hover .card-glow{
    transform:scale(1.5);
}

.stat-icon{
    width:75px;
    height:75px;
    border-radius:22px;
    background:linear-gradient(135deg,#FF941A,#f5ae5e);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
}

.stat-card h3{
    font-size:3.2rem;
    line-height:1;
    font-weight:700;
    color:#0f172a;
    margin-bottom:10px;
}

.stat-card p{
    color:#64748b;
    margin:0;
    font-size:16px;
    line-height:1.6;
}



.why-section {
    position: relative;
    padding: 70px 0;
    background: #ffffff;
}


.why-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 40px;
}

.why-left {
    position: relative !important;
}

.why-sticky {
    position: sticky !important;
    top: 120px !important;
}



.why-sticky h2 {
    margin: 0;
    color: #1f2937;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.04;
    font-weight: 700;

}

.why-sticky p {
    max-width: 410px;
    margin: 28px 0 28px;
    color: #5f6b7d;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 500;
}

.why-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 420px;
}

.why-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 16px;
    border-radius: 999px;
    background: #eef8df;
    color: #6da900;
    font-size: 12px;

}

.why-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.why-card {
    min-height: 170px;
    padding: 28px 30px;
    background: #fbffff;
    border: 1px solid #eef1f5;
    border-radius: 22px;
    transition: all 0.28s ease;
}

.why-card:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
    border-color: rgba(255, 148, 25, 0.28);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-icon i {
    font-size: 25px;
}

.why-icon.orange {
    background: #fff1df;
    color: #ff9419;
}

.why-icon.green {
    background: #edf8df;
    color: #73b900;
}

.why-card h3 {
    margin: 0 0 12px;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.why-card p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}


.process-section {
    position: relative;
    padding: 70px 0px;
    background:#F7FAFC;
    overflow: hidden;
}

.process-section .container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.process-heading {
    text-align: center;
    margin-bottom: 70px;
}


.process-heading h2 {
    margin: 0;
    color: #1f2937;
    font-size:3.4rem;
    line-height: 1.08;
    font-weight: 700;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 34px;
    align-items: start;
}

.process-line {
    position: absolute;
    top: 53px;
    left: 9%;
    right: 9%;
    height: 1px;
    border-top: 2px dashed rgba(255, 148, 25, 0.35);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-icon-wrap {
    position: relative;
    width: 118px;
    height: 118px;
    margin: 0 auto 28px;
}

.process-icon {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(255, 148, 25, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9419;
    transition: all 0.3s ease;
}

.process-icon i {
    font-size: 38px;
    stroke-width: 1.8;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -8px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #73b900;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(115, 185, 0, 0.25);
}

.process-step h3 {
    margin: 0 0 14px;
    color: #1f2937;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.process-step p {
    max-width: 210px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}

.process-step:hover .process-icon {
    transform: translateY(-8px);
    border-color: rgba(255, 148, 25, 0.45);
    box-shadow:
        0 28px 60px rgba(255, 148, 25, 0.18),
        0 12px 28px rgba(15, 23, 42, 0.08);
}

.process-step:hover .step-number {
    background: #ff9419;
}


.faq-section {
    position: relative;
    padding: 70px 0px;
    background: #ffffff;
    overflow: hidden;
}


.faq-heading {
    text-align: center;
    margin-bottom: 56px;
}


.faq-heading h2 {
    margin: 0;
    color: #1f2937;
    font-size: 3.4rem;
    line-height: 1.05;
    font-weight: 700;

}

.custom-faq {
    max-width: 1050px;
    margin: 0 auto;
}

.custom-faq .accordion-item {
    margin-bottom: 16px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.25s ease;
}

.custom-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(255, 148, 25, 0.42);
    box-shadow: 0 16px 35px rgba(255, 148, 25, 0.06);
}

.custom-faq .accordion-button {
    width: 100%;
    min-height: 58px;
    padding: 0 32px;
    background: #ffffff;
    border: 0;
    box-shadow: none;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
    border: 0;
}

.custom-faq .accordion-button:not(.collapsed) {
    color: #1f2937;
    background: #ffffff;
}

.custom-faq .accordion-button::after {
    width: 18px;
    height: 18px;
    margin-left: 20px;
    background-image: none;
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    color: #6b7280;
    transform: rotate(0deg);
    transition: transform 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-faq .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: #ff9419;
}

.custom-faq .accordion-body {
    padding: 0 32px 28px;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

.custom-faq .accordion-body p {
    margin-bottom: 12px;
}

.custom-faq .accordion-body p:last-child {
    margin-bottom: 0;
}


.review-section {
    position: relative;
 
    padding: 70px  0px;
    background: #f8fafc;
    overflow: hidden;
}


.review-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 62px;
}


.review-heading h1 {
    margin: 0;
    color: #1f2937;
    font-size: 3.4rem;
    line-height: 1.08;
    font-weight:700;
}

.review-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.review-arrow {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid #e8edf3;
    background: #ffffff;
    color: #a4acb8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.review-arrow i {
    font-size: 18px;
}

.review-arrow:hover,
.review-next {
    background: #1f2937;
    border-color: #1f2937;
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(31, 41, 55, 0.16);
}

.review-slider-wrap {
    width: 100%;
}

.review-owl-carousel .owl-stage {
    display: flex;
}

.review-owl-carousel .owl-item {
    display: flex;
}

.review-owl-carousel .owl-item > .testimonial-card {
    width: 100%;
}

.review-owl-carousel .owl-nav,
.review-owl-carousel .owl-dots {
    display: none;
}

.testimonial-card {
    position: relative;
    min-height: 310px;
    padding: 22px 26px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 26px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
    border-color: rgba(255, 148, 25, 0.22);
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 26px;
    color: #ff9419;
    font-size: 21px;
    line-height: 1;
}

.testimonial-stars .empty-star {
    color: #ffd9ad;
}

.quote-icon {
    position: absolute;
    top: 32px;
    right: 42px;
    color: rgba(255, 148, 25, 0.18);
    font-size: 92px;
    line-height: 1;
    font-weight: 900;
    font-family: Georgia, serif;
}

.testimonial-text {
    position: relative;
    z-index: 2;

    margin: 0 0 34px;
    color: #374151;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-user img {
    width: 58px !important;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff4e8;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.testimonial-user h3 {
    margin: 0 0 4px;
    color: #1f2937;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.testimonial-user span {
    color: #6b7280;
    font-size: 15px;
    font-weight: 500;
}


.seo-keywords-section {
    position: relative;
    padding: 70px 0px;
    background: #ffffff;
    overflow: hidden;
}



.seo-heading {
    text-align: center;
    margin-bottom: 42px;
}

.seo-heading h2 {
    margin: 0;
    color: #1f2937;
    font-size: 3.4rem;
    line-height: 1.08;
    font-weight: 700;

}

.seo-keyword-wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.keyword-chip {
    min-height: 42px;
    padding: 0 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    border: 1px solid #e8edf3;
    background: #ffffff;
    color: #374151;
    transition: all 0.25s ease;
}

.keyword-chip.orange {
    background: #fff4e8;
    border-color: #ffd8ad;
    color: #b95d00;
}

.keyword-chip.green {
    background: #edf8df;
    border-color: #d7efc1;
    color: #4d8100;
}

.keyword-chip.white {
    background: #ffffff;
    border-color: #e5e9ef;
    color: #374151;
}

.keyword-chip:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.keyword-chip.orange:hover {
    background: #ff9419;
    color: #ffffff;
    border-color: #ff9419;
}

.keyword-chip.green:hover {
    background: #73b900;
    color: #ffffff;
    border-color: #73b900;
}

.keyword-chip.white:hover {
    background: #1f2937;
    color: #ffffff;
    border-color: #1f2937;
}

/* ======================
CONTACT INFO CARDS
====================== */

.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:50px;
}

.contact-info-card{
    background:#fff;
    border:1px solid #ededed;
    border-radius:28px;
    padding:35px;
    text-decoration:none;
    color:#222;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.contact-info-card:hover{
    transform:translateY(-6px);
    border-color:#FB8C04;
    box-shadow:0 20px 50px rgba(251,140,4,.15);
}

.contact-info-card i{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:rgba(251,140,4,.1);
    color:#FB8C04;
    font-size:30px;
    margin-bottom:20px;
}

.contact-info-card span{
    display:block;
    margin-bottom:10px;
    color:#777;
}

.contact-info-card strong{
    font-size:18px;
}


/* ======================
MAIN LAYOUT
====================== */

.contact-main-layout{
    display:grid;
    grid-template-columns:340px 1fr;
    gap:35px;
    align-items:start;
}


/* ======================
LEFT PANEL
====================== */

.contact-quick-panel{
    background:#FB8C04;
    color:#fff;
    padding:45px;
    border-radius:35px;
    position:sticky;
    top:100px;
}

.contact-quick-panel h2{
    font-size:32px;
    line-height:1.3;
    margin:20px 0;
}

.contact-quick-panel p{
    line-height:1.8;
    opacity:.95;
}

.contact-quick-list{
    margin-top:35px;
}

.contact-quick-list div{
    background:rgba(255,255,255,.12);
    padding:18px 20px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.contact-quick-list i{
    font-size:22px;
}


/* ======================
FORM CARD
====================== */

.contact-form-card{
    background:#fff;
    border-radius:35px;
    padding:50px;
    border:1px solid #ededed;
    box-shadow:0 15px 60px rgba(0,0,0,.06);
}


/* ======================
FORM GRID
====================== */

.contact-form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.contact-form-grid label{
    display:flex;
    flex-direction:column;
}

.contact-form-grid span{
    margin-bottom:12px;
    font-weight:600;
    color:#222;
}

.contact-form-grid em{
    color:#FB8C04;
}

.contact-form-grid input,
.contact-form-grid textarea{
    width:100%;
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:18px;
    padding:18px 20px;
    font-size:15px;
    transition:.3s;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus{
    outline:none;
    border-color:#FB8C04;
    box-shadow:0 0 0 5px rgba(251,140,4,.12);
}

.contact-form-grid textarea{
    min-height:180px;
    resize:none;
}

.contact-email-field,
.contact-message-field{
    grid-column:span 2;
}


/* ======================
BUTTON
====================== */

.contact-submit-btn{
    margin-top:30px;
    background:#FB8C04;
    color:#fff;
    border:none;
    height:58px;
    padding:0 40px;
    border-radius:18px;
    font-size:16px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    transition:.3s;
}

.contact-submit-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(251,140,4,.25);
}


/* ======================
ALERTS
====================== */

.contact-alert{
    background:rgba(251,140,4,.1);
    color:#FB8C04;
    padding:18px 22px;
    border-radius:16px;
    margin-bottom:25px;
}

.contact-error{
    background:#fff2f2;
    color:#d43b3b;
    padding:18px 22px;
    border-radius:16px;
    margin-bottom:25px;
}

.inner-breadcrumb{
    position: relative;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.inner-breadcrumb-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.inner-breadcrumb-content{
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.inner-breadcrumb-content h1{
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.inner-breadcrumb-content nav{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    padding: 14px 24px;
    border-radius: 50px;
}

.inner-breadcrumb-content nav a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: .3s;
}

.inner-breadcrumb-content nav a:hover{
    color: #FB8C04;
}

.inner-breadcrumb-content nav i{
    color: #FB8C04;
    font-size: 18px;
}

.inner-breadcrumb-content nav span{
    color: #FB8C04;
    font-weight: 600;
    font-size: 15px;
}

.faq-page{
    padding:70px 0;
    background:#fff;
}

.faq-page-head{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.faq-page-head h1{
    font-size:54px;
    color:#222;
    margin:20px 0;
}

.faq-page-head p{
    color:#666;
    line-height:1.8;
}

.faq-page-layout{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    align-items:start;
}

/* Left Card */

.faq-help-card{
    background:#FB8C04;
    color:#fff;
    padding:40px;
    border-radius:30px;
    position:sticky;
    top:100px;
}

.faq-help-card strong{
    display:block;
    font-size:28px;
    line-height:1.3;
    margin:20px 0;
}

.faq-help-card p{
    line-height:1.8;
    margin-bottom:30px;
}

.btn-orange{
    background:#fff;
    color:#FB8C04;
    border-radius:16px;
    padding:14px 30px;
    text-decoration:none;
    font-weight:600;
}

.btn-orange:hover{
    background:#222;
    color:#fff;
}

/* Accordion */

.faq-accordion .accordion-item{
    border:none;
    border-radius:25px !important;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.faq-accordion .accordion-button{
    background:#fff;
    color:#222;
    font-size:18px;
    font-weight:600;
    padding:28px 30px;
    box-shadow:none;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:#FB8C04;
    color:#fff;
}

.faq-accordion .accordion-button::after{
    filter:brightness(0);
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
}

.faq-accordion .accordion-body{
    padding:30px;
    color:#666;
    line-height:1.9;
    background:#fff;
}

/* Empty */

.client-empty{
    text-align:center;
    padding:80px 30px;
    border:1px solid #eee;
    border-radius:30px;
}
/* ===========================
ABOUT PAGE
=========================== */

.about-page{
    padding:100px 0;
    background:#fff;
}

.section-label{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(117,189,0,.12);
    color:#75BD00;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
}

/* HERO */

.about-page-hero{
    display:grid;
    grid-template-columns:1fr 550px;
    gap:70px;
    align-items:center;
    margin-bottom:100px;
}

.about-page-copy h1{
    font-size:58px;
    line-height:1.15;
    color:#222;
    margin:25px 0;
}

.about-page-copy p{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.about-page-actions{
    display:flex;
    gap:18px;
    margin-top:40px;
}

.btn-cyan{
    background:#FB8C04;
    color:#fff;
    padding:16px 34px;
    border-radius:18px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-cyan:hover{
    background:#75BD00;
    color:#fff;
}

.btn-dark{
    border:1px solid #ddd;
    color:#222;
    padding:16px 34px;
    border-radius:18px;
    text-decoration:none;
    transition:.3s;
}

.btn-dark:hover{
    border-color:#75BD00;
    color:#75BD00;
}

.about-page-media img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:40px;
    box-shadow:0 25px 70px rgba(0,0,0,.08);
}


/* STATS */

.about-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:100px;
}

.about-stat-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:30px;
    padding:45px 25px;
    text-align:center;
    transition:.3s;
}

.about-stat-card:hover{
    border-color:#FB8C04;
    transform:translateY(-6px);
}

.about-stat-card i{
    font-size:40px;
    color:#75BD00;
    margin-bottom:20px;
}

.about-stat-card strong{
    display:block;
    font-size:42px;
    color:#222;
    margin-bottom:10px;
}

.about-stat-card span{
    color:#777;
}


/* SECTION HEAD */

.client-page-head{
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:60px;
}

.client-page-head h2{
    font-size:48px;
    color:#222;
    margin:20px 0;
}

.client-page-head p{
    color:#666;
    line-height:1.9;
}


/* VALUES */

.about-value-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:100px;
}

.about-value-grid article{
    border:1px solid #eee;
    border-radius:35px;
    padding:45px;
    transition:.3s;
}

.about-value-grid article:hover{
    transform:translateY(-6px);
    border-color:#75BD00;
}

.about-value-grid i{
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(117,189,0,.1);
    color:#75BD00;
    border-radius:25px;
    font-size:34px;
    margin-bottom:25px;
}

.about-value-grid h3{
    color:#222;
    margin-bottom:18px;
}

.about-value-grid p{
    color:#666;
    line-height:1.8;
}


/* STORY */

.about-story-card{
    display:grid;
    grid-template-columns:450px 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:90px;
}

.about-story-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:35px;
}

.about-story-card h2{
    font-size:40px;
    color:#222;
    margin:20px 0;
}

.about-story-card p{
    color:#666;
    line-height:1.9;
}


/* SERVICES */

.about-service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.about-service-grid a{
    text-decoration:none;
    color:#222;
    border:1px solid #eee;
    border-radius:30px;
    padding:35px;
    display:flex;
    gap:22px;
    align-items:center;
    transition:.3s;
}

.about-service-grid a:hover{
    transform:translateY(-6px);
    border-color:#FB8C04;
    box-shadow:0 15px 40px rgba(251,140,4,.12);
}

.about-service-icon{
    width:75px;
    height:75px;
    background:rgba(251,140,4,.12);
    color:#FB8C04;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.about-service-grid span{
    color:#75BD00;
    font-size:14px;
}

.about-service-grid h3{
    margin-top:8px;
    font-size:20px;
}


/* CTA */

.about-cta{
    margin-top:100px;
    background:#75BD00;
    border-radius:40px;
    padding:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
}

.about-cta h2{
    max-width:700px;
    font-size:42px;
    line-height:1.3;
}

.about-cta .btn-cyan{
    background:#FB8C04;
}

.about-cta .btn-cyan:hover{
    background:#fff;
    color:#75BD00;
}


/* RESPONSIVE */

@media(max-width:991px){

    .about-page-hero,
    .about-story-card,
    .about-value-grid,
    .about-service-grid,
    .about-stats-grid{
        grid-template-columns:1fr;
    }

    .about-page-copy h1{
        font-size:42px;
    }

    .client-page-head h2{
        font-size:36px;
    }

    .about-cta{
        flex-direction:column;
        text-align:center;
        gap:30px;
        padding:50px 30px;
    }

    .about-cta h2{
        font-size:32px;
    }
}

.service-detail-page{
    padding:20px 0;
    background:#fff;
}

/* Heading */

.service-detail-head{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.service-detail-head h1{
    font-size:58px;
    color:#222;
    margin:20px 0;
    line-height:1.2;
}

.service-detail-head p{
    color:#666;
    line-height:1.9;
}

.section-label{
    display:inline-flex;
    align-items:center;
    background:rgba(117,189,0,.1);
    color:#75BD00;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

/* Layout */

.service-detail-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 340px;
    gap:40px;
    align-items:start;
}

/* Main */

.service-detail-main{
    background:#fff;
}

.service-detail-image{
    overflow:hidden;
    border-radius:35px;
    margin-bottom:40px;
}

.service-detail-image img{
    width:100%;
    height:550px;
    object-fit:cover;
}

.service-detail-copy{
    border:1px solid #eee;
    border-radius:35px;
    padding:50px;
    line-height:1.9;
    color:#555;
}

.service-detail-copy h2{
    font-size:36px;
    color:#222;
    margin-bottom:25px;
}

/* Buttons */

.service-detail-actions{
    margin-top:40px;
    display:flex;
    gap:18px;
}

.btn-cyan{
    background:#FB8C04;
    color:#fff;
    padding:16px 32px;
    border-radius:18px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-cyan:hover{
    background:#75BD00;
    color:#fff;
}

.btn-dark{
    border:1px solid #ddd;
    color:#222;
    padding:16px 32px;
    border-radius:18px;
    text-decoration:none;
    transition:.3s;
}

.btn-dark:hover{
    border-color:#75BD00;
    color:#75BD00;
}

/* Sidebar */

.service-side-panel{
    position:sticky;
    top:100px;
}

.service-side-panel h3{
    font-size:28px;
    margin-bottom:25px;
    color:#222;
}

.service-side-list{
    border:1px solid #eee;
    border-radius:30px;
    overflow:hidden;
    margin-bottom:30px;
}

.service-side-list a{
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-decoration:none;
    color:#222;
    border-bottom:1px solid #eee;
    transition:.3s;
}

.service-side-list a:last-child{
    border-bottom:none;
}

.service-side-list a:hover{
    background:rgba(117,189,0,.07);
    color:#75BD00;
}

.service-side-list i{
    color:#FB8C04;
}

/* CTA Box */

.service-appointment-box{
    background:#75BD00;
    padding:40px;
    border-radius:35px;
    color:#fff;
}

.service-appointment-box strong{
    display:block;
    font-size:30px;
    line-height:1.3;
    margin:20px 0 30px;
}

.service-appointment-box a{
    display:inline-block;
    background:#FB8C04;
    color:#fff;
    text-decoration:none;
    padding:15px 28px;
    border-radius:16px;
    font-weight:600;
    transition:.3s;
}

.service-appointment-box a:hover{
    background:#fff;
    color:#75BD00;
}

/* Content */

.service-detail-copy ul{
    padding-left:20px;
}

.service-detail-copy li{
    margin-bottom:10px;
}

.service-detail-copy h3{
    color:#222;
    margin-top:35px;
    margin-bottom:15px;
}

/* Mobile */

@media(max-width:991px){

    .service-detail-layout{
        grid-template-columns:1fr;
    }

    .service-side-panel{
        position:relative;
        top:auto;
    }

    .service-detail-head h1{
        font-size:42px;
    }

    .service-detail-copy{
        padding:35px;
    }

    .service-detail-actions{
        flex-direction:column;
    }

}

/* Responsive */

@media(max-width:991px){

    .faq-page-layout{
        grid-template-columns:1fr;
    }

    .faq-help-card{
        position:relative;
        top:auto;
    }

    .faq-page-head h1{
        font-size:40px;
    }

}

@media (max-width:991px){

    .inner-breadcrumb{
        min-height: 240px;
    }

    .inner-breadcrumb-content h1{
        font-size: 42px;
    }

}

@media (max-width:767px){

    .inner-breadcrumb{
        min-height: 200px;
    }

    .inner-breadcrumb-content h1{
        font-size: 34px;
    }

    .inner-breadcrumb-content nav{
        padding: 12px 20px;
        gap: 10px;
    }

}


/* ======================
RESPONSIVE
====================== */

@media(max-width:991px){

    .contact-main-layout,
    .contact-info-grid,
    .contact-form-grid{
        grid-template-columns:1fr;
    }

    .contact-email-field,
    .contact-message-field{
        grid-column:auto;
    }

    .contact-form-card,
    .contact-quick-panel{
        padding:30px;
    }
}
/* Responsive */
@media (max-width: 767px) {
    .seo-keywords-section {
        padding: 40px 0;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .seo-heading h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .keyword-chip {
        min-height: 46px;
        padding: 0 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .seo-heading h2 {
        font-size: 31px;
    }

    .seo-keyword-wrap {
        gap: 10px;
    }

    .keyword-chip {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .review-section {
        padding: 90px 0;
        min-height: auto;
    }

    .review-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 44px;
    }

    .review-arrows {
        margin-bottom: 0;
    }

    .testimonial-text {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .review-section {
        padding: 40px 0;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .review-heading h1 {
        font-size: 36px;
        letter-spacing: -1.6px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 30px 24px;
        border-radius: 22px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .quote-icon {
        top: 24px;
        right: 24px;
        font-size: 70px;
    }

    .review-arrow {
        width: 50px;
        height: 50px;
    }
}



/* Responsive */
@media (max-width: 767px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-heading {
        margin-bottom: 38px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .faq-heading h2 {
        font-size: 38px;
        letter-spacing: -1.8px;
    }

    .custom-faq .accordion-button {
        min-height: 74px;
        padding: 0 22px;
        font-size: 18px;
    }

    .custom-faq .accordion-body {
        padding: 0 22px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-heading h2 {
        font-size: 34px;
    }

    .custom-faq .accordion-item {
        border-radius: 16px;
        margin-bottom: 12px;
    }

    .custom-faq .accordion-button {
        font-size: 17px;
        letter-spacing: -0.4px;
    }
    .stats-band{
        padding: 40px 0px;
    }
}



/* Responsive */
@media (max-width: 1199px) {
    .process-timeline {
        gap: 22px;
    }

    .process-icon-wrap,
    .process-icon {
        width: 104px;
        height: 104px;
    }

    .process-icon i {
        font-size: 34px;
    }

    .process-line {
        top: 48px;
    }
}

@media (max-width: 991px) {
    .process-section {
        padding: 85px 0;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 28px;
    }

    .process-line {
        display: none;
    }

    .process-step p {
        max-width: 280px;
    }
}

@media (max-width: 575px) {
    .process-section {
        padding: 40px 0;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .process-heading {
        margin-bottom: 46px;
    }

    .process-heading h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .process-step {
      justify-content: center;
        gap: 20px;
        align-items: center;
        padding: 18px;
        background: #ffffff;
        border: 1px solid #eef1f5;
        border-radius: 22px;
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
    }

    .process-icon-wrap,
    .process-icon {
        width: 86px;
        height: 86px;
        margin: auto;
    }

    .process-icon i {
        font-size: 30px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
        top: -6px;
        right: -6px;
    }

    .process-step h3 {
        margin-bottom: 8px;
    }

    .process-step p {
        max-width: 100%;
        margin: 0;
        font-size: 14px;
    }
}



/* Responsive */
@media (max-width: 991px) {
    .why-section {
        padding: 80px 0;
    }

    .why-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .why-sticky {
        position: static;
    }

    .why-sticky h2 {
        font-size: 46px;
    }

    .why-sticky p {
        max-width: 680px;
    }
}

@media (max-width: 767px) {
    .why-right {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 40px 0;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .why-sticky h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .why-sticky p {
        font-size: 16px;
    }

    .why-card {
        padding: 24px;
        border-radius: 18px;
    }
}


@media(max-width:991px){

    .stats-section{
        grid-template-columns:1fr;
    }

    .content-left h2{
        font-size:40px;
    }
}

@media(max-width:767px){

    .grid-container{
        grid-template-columns:1fr;
    }

    .content-left h2{
        font-size:32px;
    }

    .stat-card h3{
        font-size:42px;
    }
}

/* Responsive */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-heading p {
        max-width: 720px;
    }
}

@media (max-width: 991px) {
    .services-section {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-heading h2 {
        font-size: 46px;
    }
}

@media (max-width: 575px) {
    .services-section {
        padding: 40px 0;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .services-heading {
        margin-bottom: 36px;
    }

    .services-heading h2 {
        font-size: 35px;
        letter-spacing: -1.6px;
    }

    .services-heading p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 22px;
    }
}


/* Responsive */
@media (max-width: 1200px) {
    .hero-container {
        gap: 45px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 620px;
    }

    .hero-image-card {
        height: 600px;
    }
}

@media (max-width: 991px) {
    .laundry-hero {
        padding: 80px 0 50px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .hero-content {
        text-align: center;
        padding: 40px 0px;
    }

    .location-pill {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
        font-size: 19px;
    }

    .hero-buttons,
    .rating-row {
        justify-content: center;
    }

    .hero-features {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-area {
        min-height: 620px;
    }

    .pickup-card {
        left: 7%;
    }

    .delivery-card {
        right: 7%;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        letter-spacing: -2px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 360px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .feature-card {
        justify-content: flex-start;
    }

    .hero-image-area {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 70px;
    }

    .hero-image-card {
        height: 500px;
        border-radius: 34px;
    }

    .floating-card {
        min-width: 230px;
        padding: 16px 18px;
    }

    .pickup-card {
        top: 10px;
        left: 0;
    }

    .delivery-card {
        right: 0;
        bottom: 20px;
    }

    .floating-card strong {
        font-size: 18px;
    }

    .floating-card span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .laundry-hero {
        padding-top: 40px;
         padding: 0px  0px;
    }


    .location-pill {
        font-size: 11px;
        padding: 10px 14px;
        letter-spacing: 0.8px;
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .rating-row {
        flex-direction: column;
        gap: 12px;
    }

    .hero-image-card {
        height: 430px;
    }

    .floating-card {
        min-width: 210px;
    }

    .dot-one,
    .dot-two,
    .dot-three {
        display: none;
    }
}


/* Responsive */
@media (max-width: 1199px) {
  .main-nav {
    gap: 22px;
  }

  .nav-link {
    font-size: 16px;
  }

  .brand-name {
    font-size: 25px;
  }

  .header-btn {
    height: 48px;
    padding: 0 18px;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 78px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand-logo-wrap {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-tagline {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-top: 1px solid var(--border);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
  }

  .main-nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    padding: 15px 14px;
    border-radius: 12px;
    font-size: 17px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: #f3f9e8;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 14px;
    margin: 0 0 10px;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .solution-submenu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 12px;
    margin-top: 6px;
    display: none;
  }

  .solution-category.open .solution-submenu {
    display: block;
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 575px) {
  .brand {
    gap: 10px;
  }

  .brand-logo-wrap {
    width: 174px;
height: auto !important;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-tagline {
    letter-spacing: 2px;
    font-size: 9px;
  }
}