
  /* ========== Global Styles ========== */
  @import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Then update your font-family in the navbar styles */
/* ======= General Reset ======= */
/* ======= Reset Styles to Prevent Extra Margins/Padding ======= */
/* ======= Reset Styles to Prevent Extra Margins/Padding ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    

}
link[rel="icon"] {
    width: 556px;
    height: 556px;
}

html, body {
    overflow-x: hidden; /* Prevents horizontal scrolling */
    max-width: 100vw;
    font-family:  'serif';

}
/* Global font size settings */
* {
    font-family: serif;
    font-size: 18px; /* Increased base font size */
}

h1 {
    font-size: 3rem; /* 54px */
}

h2 {
    font-size: 2.5rem; /* 45px */
}

h3 {
    font-size: 2rem; /* 36px */
}

h4 {
    font-size: 1.75rem; /* 31.5px */
}

h5 {
    font-size: 1.5rem; /* 27px */
}

h6 {
    font-size: 1.25rem; /* 22.5px */
}

p, span, a, li {
    font-size: 1.2rem; /* 21.6px */
}

.price {
    font-size: 1.4rem; /* 25.2px */
}

.btn, button {
    font-size: 1.2rem; /* 21.6px */
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    height: 95px;
    z-index: 1000;
    border: 1px solid black;
    padding: 10px 20px;
}

.navbar-toggle {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 23px;
    font-size: 32px;
    z-index: 1001;
    color: black;
    transition: color 0.3s ease;
}

.navbar-toggle:hover {
    color: #333;
}

.logo {
    width: 214px;
    margin-left: -90px;
}

.logo img {
    object-fit: contain;
    margin-top: -60px;
    width: 100%;
    height: auto;
}

.navbar-items {
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap; 
    min-width: 100px;
}

.list-items {
    list-style: none;
    display: flex;
    margin-top: -15px;
    text-align: center;
    gap: 2px;
    white-space: nowrap;
    margin: -24px 0 0 0;
    justify-content: center;
    align-items: center;
    position: relative;
   
    transform: translateX(-50%);
    width: fit-content;
}











li a, #serviceDropdown {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

li a:hover {
    color: #1687A7;
    background-color: rgba(22, 135, 167, 0.1);
}

.dropdown-menu {
    list-style: none;
    padding: 7px 27px 15px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: none;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.07);
    border-radius: 3px;
    z-index: 1000;
    background: white;
}

@media (min-width: 993px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

.dropdown-item {
    display: block;
    padding: 8px 12px;
    color: #333 !important;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    color:#1BA39C !important;
    background-color: rgba(22, 135, 167, 0.1);
}

.btn button {
    padding: 10px 20px;
    border-radius: 35px;
    background: #1BA39C;
    border: none;
    color: white;
    margin-top: -35px;
    font-weight: 600;
    margin-bottom: 50px;
    transition: background-color 0.3s ease;
}

.btn button:hover {
    background-color: #B0E2DE;
}
@media (max-width: 992px) {
    .navbar-toggle {
        display: block;
        font-size: 28px;
        top: 25px;
        right: 25px;
    }
    .navbar-toggle i{
        font-size: 25px;
    }
    .logo {
        margin-left: 0;
        margin-left: -40px;
    }

    .logo img {
        width: 170px;
        margin-top: -30px;
        margin-left: -40px;
    }

    .navbar-items {
        position: fixed;
        top: 95px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 95px);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .navbar-items.show {
        left: 0;
    }

    .list-items {
        flex-direction: column;
        gap: 15px;
        margin: 0;
        width: 100%;
        text-align: left;
        padding-left: 0;
        transform: none;
    }

    .nav-item {
        width: 100%;
        margin-left: 60px;
    }

    .nav-item.dropdown {
        margin-left: 60px;
        padding-left: 0;
    }

    #serviceDropdown {
        padding-left: 0;
        margin-left: 30px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        margin: 5px 0;
        margin-left: -5px;
        border-left: 2px solid #1BA39C;
        text-align: left;
        transform: none;
    }

    .dropdown-item {
        padding: 8px 15px;
        font-size: 15px !important;
        text-align: left;
    }

    .btn {
        width: 110%;
        margin: 13px auto;
    }

    .btn button {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 80px;
    }

    .logo img {
        width: 150px;
        margin-left: 40px;
    }

    .navbar-toggle {
        top: 20px;
        right: 20px;
    }

    .navbar-items {
        top: 80px;
        width: 250px;
    }

    .nav-item, 
    .nav-item.dropdown {
        margin-left: 40px;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 70px;
    }

    .logo img {
        width: 130px;
        margin-left: 30px;
    }

    .navbar-toggle {
        font-size: 24px;
        top: 18px;
        right: 15px;
    }

    .navbar-items {
        top: 70px;
        width: 220px;
    }

    .nav-item,
    .nav-item.dropdown {
        margin-left: 30px;
    }
}


.main-footer {
    border-top: 1px solid #72531c;
    background-color: #16726c;
    padding: 40px 0 0;
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    
    text-align: left;
    margin-bottom: 30px;
}

.footer-logo {
    text-align: center;
}

.footer-logo-text {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    border-top: 1px solid white;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.footer-contact h5,
.footer-services h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-contact h5:after,
.footer-services h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #B0E2DE;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-links a,
.address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.contact-links a:hover {
    color: #B0E2DE;
    transform: translateX(5px);
}

.contact-links i {
    width: 20px;
    color: #B0E2DE;
    font-size: 18px;
}

.whatsapp-link {
    background: white;
    color: #128C7E !important;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    width: fit-content;
    transition: all 0.3s ease;
}

.whatsapp-link i {
    color: #128C7E!important;
    font-size: 18px;
}

.whatsapp-link:hover {
    background:white;
    transform: translateY(-2px);
}

.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    margin-bottom: 4px;
}

.footer-services a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    padding: 4px 0;
    display: block;
}

.footer-services a:hover {
    color: #B0E2DE;
    transform: translateX(8px);
    padding-left: 5px;
}

.footer-copyright {
    text-align: center;
    padding: 15px 0;
  border-top: 1px solid white;
    margin-top: 15px;
   
}

.footer-copyright p {
    color: #fff;
    margin: 0;
    font-size: 14px;
}

.footer-copyright b {
    color: #B0E2DE;
}

.footer-copyright a {
    color: #B0E2DE;
    text-decoration: none;
    font-weight: 500;
}

.footer-copyright a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .main-footer {
        padding: 30px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-logo {
        margin-bottom: 15px;
    }

    .footer-logo-text {
        font-size: 32px;
    }

    .footer-contact h5:after,
    .footer-services h5:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-links a,
    .address {
        justify-content: center;
    }

    .whatsapp-link {
        margin: 10px auto;
    }

    .footer-services ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        text-align: center;
        font-size: 20px;
    }

    .footer-services a {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 25px 0 0;
    }

    .footer-logo-text {
        font-size: 18px;
    }

    .footer-services ul {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .footer-services a {
        font-size: 20px;
        padding: 3px 0;
    }

    .contact-links a,
    .address {
        font-size: 13px;
    }

    .contact-links i {
        font-size: 16px;
    }

    .footer-copyright p {
        font-size: 12px;
        line-height: 1.5;
    }
}
/* Wash & Press Section */
.heading-section-main {
    text-align: center;
    padding: 3px 0;
    margin-top: -60px;
    top: 15px;
    background-color:#1BA39C;
  
    font-weight: bold;
    color: #fff;
}
.heading-section-main h3{
    margin-bottom: 10px; /* Fix typo: 'marging-bottom' to 'margin-bottom' */
    position: relative;
    text-align: center;
    font-size: 28px;
 
   
}

.wash-press-section {
    padding: 50px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.wash-press-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wash-press-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.wash-press-text h3 {
    font-size: 24px;
    font-weight: bold;
    color: #34495e;
}

.wash-press-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.order-btn {
    background-color: #1BA39C;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.order-btn:hover {
    background-color: #1BA39C;
}

/* Why Choose Section */
.why-choose {
    margin-top: 40px;
}

.why-choose h1 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.why-choose ul {
    list-style: none;
    padding: 0;
}

.why-choose li {
    font-size: 18px;
    margin-bottom: 15px;
    color: #444;
    position: relative;
    padding-left: 30px;
}

.why-choose li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}





.page-title {
    background: #1BA39C;
    padding: 5px 0;
    margin-top: -60px;
    text-align: center;
}

.page-title h1 {
    color: white;
    margin: 0;
    margin-bottom: 11px;

    font-size: 28px;
    font-weight: 400;
}

.service-content {
    padding: 60px 0;
    background: #fff;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-description {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-description h3 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.service-description p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.order-btn {
    display: inline-block;
    background: #1BA39C;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.order-btn:hover {
    background: #1BA39C;
    transform: translateY(-2px);
}

.features-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.features-section h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 50px;
}

.features-list {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    margin-bottom: 40px;
}

.feature-item h4 {
    color: #1BA39C;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .service-description {
        padding: 30px 0;
        text-align: center;
    }
    
    .order-btn {
        margin: 20px auto 0;
    }
    
    .service-description h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .page-title h1 {
        font-size: 30px;
    }
    
    .service-content {
        padding: 40px 0;
    }
    
    .features-section h2 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .feature-item h4 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .page-title h1 {
        font-size: 26px;
    }
    
    .service-content {
        padding: 30px 0;
    }
    
    .service-description h3 {
        font-size: 22px;
    }
    
    .features-section h2 {
        font-size: 24px;
    }
}







.steam-content {
    padding: 60px 0;
    background: #fff;
}

.steam-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.steam-description {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.steam-description h3 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.steam-description p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.steam-features {
    background: #f8f9fa;
    padding: 60px 0;
}

.steam-features h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 50px;
}

.steam-list {
    max-width: 1000px;
    margin: 0 auto;
}

.steam-item {
    margin-bottom: 40px;
}

.steam-item h4 {
    color: #1BA39C;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.steam-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .steam-description {
        padding: 30px 0;
        text-align: center;
    }
    
    .steam-description h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .steam-content {
        padding: 40px 0;
    }
    
    .steam-features h2 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .steam-item h4 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .steam-content {
        padding: 30px 0;
    }
    
    .steam-description h3 {
        font-size: 22px;
    }
    
    .steam-features h2 {
        font-size: 24px;
    }
}





.stain-content {
    padding: 60px 0;
    background: #fff;
}

.stain-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stain-description {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stain-description h3 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.stain-description p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.stain-features {
    background: #f8f9fa;
    padding: 60px 0;
}

.stain-features h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 50px;
}

.stain-list {
    max-width: 1000px;
    margin: 0 auto;
}

.stain-item {
    margin-bottom: 40px;
}

.stain-item h4 {
    color: #1BA39C;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.stain-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .stain-description {
        padding: 30px 0;
        text-align: center;
    }
    
    .stain-description h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .stain-content {
        padding: 40px 0;
    }
    
    .stain-features h2 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .stain-item h4 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .stain-content {
        padding: 30px 0;
    }
    
    .stain-description h3 {
        font-size: 22px;
    }
    
    .stain-features h2 {
        font-size: 24px;
    }
}






.shoe-content {
    padding: 60px 0;
    background: #fff;
}

.shoe-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.shoe-description {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shoe-description h3 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.shoe-description p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.shoe-features {
    background: #f8f9fa;
    padding: 60px 0;
}

.shoe-features h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 50px;
}

.shoe-list {
    max-width: 1000px;
    margin: 0 auto;
}

.shoe-item {
    margin-bottom: 40px;
}

.shoe-item h4 {
    color: #1BA39C;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.shoe-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .shoe-description {
        padding: 30px 0;
        text-align: center;
    }
    
    .shoe-description h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .shoe-content {
        padding: 40px 0;
    }
    
    .shoe-features h2 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .shoe-item h4 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .shoe-content {
        padding: 30px 0;
    }
    
    .shoe-description h3 {
        font-size: 22px;
    }
    
    .shoe-features h2 {
        font-size: 24px;
    }
}




.dry-content {
    padding: 60px 0;
    background: #fff;
}

.dry-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dry-description {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dry-description h3 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.dry-description p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.dry-features {
    background: #f8f9fa;
    padding: 60px 0;
}

.dry-features h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 50px;
}

.dry-list {
    max-width: 1000px;
    margin: 0 auto;
}

.dry-item {
    margin-bottom: 40px;
}

.dry-item h4 {
    color: #1BA39C;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.dry-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .dry-description {
        padding: 30px 0;
        text-align: center;
    }
    
    .dry-description h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .dry-content {
        padding: 40px 0;
    }
    
    .dry-features h2 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .dry-item h4 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .dry-content {
        padding: 30px 0;
    }
    
    .dry-description h3 {
        font-size: 22px;
    }
    
    .dry-features h2 {
        font-size: 24px;
    }
}




.cont-content {
    padding: 60px 0;
    background: #fff;
}

.cont-info {
    padding: 20px;
    text-align: center;
}

.cont-info-img img {
    max-width: 100%;
    margin-bottom: 30px;
}

.cont-info h2 {
    color: #1BA39C;
    font-size: 24px;
    margin-bottom: 15px;
}

.cont-info h1 {
    color: #333;
    font-size: 36px;
    margin-bottom: 20px;
}

.cont-info p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #1BA39C;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1BA39C;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.cont-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cont-form h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.form-control:focus {
    border-color: #1BA39C;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.btn-submit {
    width: 100%;
    background: #1BA39C;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1BA39C;
}

.cont-map {
    padding: 60px 0;
}

.cont-map iframe {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .cont-info,
    .cont-form {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .cont-content {
        padding: 40px 0;
    }
    
    .cont-info h1 {
        font-size: 30px;
    }
    
    .cont-form {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .cont-info h1 {
        font-size: 26px;
    }
    
    .cont-info h2 {
        font-size: 20px;
    }
}




.about-content {
    padding: 60px 0;
    background: #fff;
}

.about-text h1 {
    color: #333;
    font-size: 36px;
    margin-bottom: 30px;
}

.about-text .cleaning {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.quality {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quality-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.quality-item {
    text-align: center;
    flex: 1;
}

.quality-item i {
    font-size: 40px;
    color: #1BA39C;
    margin-bottom: 15px;
}

.quality-item p {
    color: #333;
    font-size: 16px;
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-process {
    background: #f8f9fa;
    padding: 60px 0;
}

.process-header {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.header-text h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 30px;
}

.process-link {
    color: #1BA39C;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
}

.process-link:hover {
    text-decoration: underline;
}

.header-image img {
    max-width: 100%;
    height: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.step i {
    color:#1BA39C;
    margin-right: 10px;
}

.step p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .process-header {
        flex-direction: column;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .quality-row {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-text h1 {
        font-size: 30px;
    }
    
    .header-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .about-text h1 {
        font-size: 26px;
    }
    
    .header-text h2 {
        font-size: 30px;
    }
}







.hom1-slider {
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}
.slide-content h5 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
    background: rgba(78, 190, 212, 0.885); /* Semi-transparent blue background */
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    background: rgba(78, 190, 212, 0.885); /* Semi-transparent black background */
    padding: 15px 25px;
    border-radius: 5px;
    display: inline-block;
}
.contact-btn {
    background: #1BA39C;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #1BA39C;
    transform: translateY(-2px);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(168, 222, 207, 0.885);
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    z-index: 3;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background:rgba(168, 222, 207, 0.885) ;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 40px;
    }
    
    .slide-content h5 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content h5 {
        font-size: 18px;
    }
    
    .contact-btn {
        padding: 10px 25px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 28px;
    }
    
    .slide-content h5 {
        font-size: 16px;
    }
    
    .nav-btn {
        padding: 10px;
        font-size: 20px;
    }
}



.hom2-content {
    padding: 80px 0;
    background: #fff;
}

.hom2-main {
    display: flex;
    align-items: center;
}

.hom2-text {
    padding-right: 30px;
}

.hom2-text .subtitle {
    color: #1BA39C;
    font-size: 18px;
    margin-bottom: 15px;
}

.hom2-text h3 {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hom2-text .tagline {
    font-size: 24px;
    color: #555;
    margin-bottom: 15px;
}

.hom2-text .description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item i {
    color: #1BA39C;
    font-size: 18px;
}

.service-item span {
    color: #333;
    font-size: 16px;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.service-btn {
    background: #1BA39C;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #1BA39C;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon {
    background: #1BA39C;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.phone-icon:hover {
    background: #1BA39C;
    transform: scale(1.1);
}

.phone-text p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.phone-text h6 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.hom2-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .hom2-text h3 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hom2-main {
        flex-direction: column;
    }
    
    .hom2-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .service-list {
        align-items: center;
    }
    
    .action-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hom2-text h3 {
        font-size: 30px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .contact-info {
        margin-top: 20px;
    }
}




.pricing-section {
    padding: 30px 0;
    background: #8fc3be;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h6 {
    color: #222;
    font-size: 32px;
    margin-bottom: 20px;
   
    text-transform: uppercase;
}

.pricing-header h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.pricing-header p {
    color: #444;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  
    margin-bottom: 30px;
}

.pricing-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.pricing-card img {
    margin-bottom: 20px;
}

.pricing-card h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.pricing-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    color: #1BA39C;
    margin-bottom: 20px;
}

.price span {
    font-size: 14px;
    color: #666;
}

.book-btn {
    display: inline-block;
    background: #1BA39C;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: #0056b3;
    color: white;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-header h1 {
        font-size: 30px;
    }
}

.homabout-content {
    padding: 80px 0;
    background: #fff;
}

.homabout-main {
    display: flex;
    align-items: center;
}

.homabout-text {
    padding-right: 30px;
}

.homabout-text h1 {
    color: #333;
    font-size: 36px;
    margin-bottom: 25px;
}

.homabout-text .cleaning {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.quality-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.features-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-item {
    text-align: center;
    flex: 1;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-item i {
    color: #1BA39C;
    font-size: 82px;  /* Increased icon size */
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item p {
    color: #333;
    font-size: 16px;
    margin: 0;
}

.homabout-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.homabout-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .homabout-main {
        flex-direction: column;
    }
    
    .homabout-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .feature-item i {
        font-size: 82px;
    }
}

@media (max-width: 768px) {
    .homabout-text h1 {
        font-size: 30px;
    }
    
    .features-row {
        flex-direction: column;
    }
    
    .feature-item {
        margin-bottom: 20px;
    }

    .feature-item i {
        font-size: 75px;
    }
}

@media (max-width: 576px) {
    .homabout-text h1 {
        font-size: 26px;
    }

    .feature-item i {
        font-size: 70px;
    }
}

.hom5-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.hom5-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
}

.hom5-text {
    flex: 1;
}

.hom5-text h1 {
    font-size: 42px;
    color: #333;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hom5-link {
    color: #1BA39C;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hom5-link:hover {
    color: #1BA39C;
    text-decoration: none;
}

.hom5-image {
    flex: 1;
}

.hom5-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hom5-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.hom5-service {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.hom5-service:hover {
    transform: translateY(-5px);
}

.hom5-service h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.hom5-service i {
    color: #1BA39C;
    font-size: 36px;
    margin-right: 10px;
}

.hom5-service p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.hom5-features {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hom5-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hom5-feature i {
    color: #1BA39C;
    font-size: 24px;
}

.hom5-feature span {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .hom5-header {
        flex-direction: column;
        text-align: center;
    }
    
    .hom5-text h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hom5-services {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hom5-features {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }
    
    .hom5-feature {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hom5-text h1 {
        font-size: 28px;
    }
    
    .hom5-service {
        padding: 20px;
    }
}






.last-content {
    padding: 80px 0;
    background: #75b5b1;
}

.last-header {
    text-align: center;
    margin-bottom: 50px;
}

.last-header h4 {
    color: #1BA39C;
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.last-header h3 {
    color: #333;
    font-size: 36px;
    font-weight: 600;
}

.last-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 15px;
}

.last-service {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.last-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.last-service img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.last-service h5 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.last-service p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 72px;
}

.service-btn {
    display: inline-block;
    background: #1BA39C;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-btn:hover {
    background: #1BA39C;
    color: white;
    text-decoration: none;
}

@media (max-width: 992px) {
    .last-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .last-header h3 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .last-services {
        grid-template-columns: 1fr;
    }
    
    .last-service {
        padding: 20px;
    }
    
    .last-service p {
        min-height: auto;
    }
}


.ux-laundry {
    background: #B2E4DB;
    padding: 20px 0;
}

.ux-title {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: #26A69A;
    padding: 10px;
    margin-top: 0;
}

.ux-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.ux-image {
    flex: 1;
}

.ux-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ux-content {
    flex: 1;
    padding: 20px;
}

.ux-content h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}
.ux-laundry h1{
    margin-top: -10px;
}

.ux-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ux-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #26A69A;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.ux-btn:hover {
    background: #2196F3;
    transform: translateY(-2px);
}

.ux-btn i {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .ux-container {
        flex-direction: column;
        text-align: center;
    }

    .ux-image, .ux-content {
        flex: none;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ux-title {
        font-size: 2rem;
        padding: 15px;
    }

    .ux-content h2 {
        font-size: 1.8rem;
    }

    .ux-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .ux-laundry {
        padding: 30px 0;
    }

    .ux-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .ux-content h2 {
        font-size: 1.5rem;
    }

    .ux-btn {
        width: 100%;
        justify-content: center;
    }
}



/* Add these styles to your existing CSS */

.pricing-btn-container {
    text-align: center;
    margin-top: 40px;
}

.pricing-btn {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: #26A69A;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .pricing-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}
.features-section {
    width: 100%;
    background: #fff;
}

.features-strip {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.strip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
    position: relative;
}

.strip-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    visibility: visible;
}

.strip-item i {
    color: #1BA39C;
    font-size: 1rem;
    display: inline-block;
    width: 24px;
    text-align: center;
    visibility: visible !important;
}

.strip-item span {
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
}

.divider {
    color: #ddd;
    font-weight: 300;
}

@media (max-width: 768px) {

    .features-strip {
        overflow: hidden;
        margin-top: -20px;
    }

    .strip-container {
        width: 100%;
        overflow: hidden;
    }

    .strip-content {
        display: inline-flex;
        white-space: nowrap;
        padding: 5px 0;
        animation: scroll 20s linear infinite;
        width: max-content;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0); /* Start from visible position */
        }
        100% {
            transform: translateX(-100%);
        }
    }

    .strip-content::-webkit-scrollbar {
        display: none;
    }

    .strip-item {
        flex-shrink: 0;
    }

    .strip-item span {
        font-size: 0.75rem;
    }

    .strip-item i {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .features-strip {
        padding: 5px 0;
    }

    .strip-content {
        gap: 15px;
    }

    .strip-item span {
        font-size: 0.7rem;
    }

    .strip-item i {
        font-size: 0.75rem;
    }
}


.success-message {
    text-align: center;
    padding: 40px 0;
}

.success-message h3 {
    color: #333;
    font-size: 24px;
    font-weight: normal;
}