body {
            font-family: 'Rubik', sans-serif; /* Apply Rubik font to body */
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }

        header {
            background-color: #000; /* Adjusted header background color to red */
            color: white;
            padding: 10px 0;
            text-align: center;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 30px;
        }

        header h1 {
            margin: 0;
            font-size: 28px;
        }

        .logo img {
            height:95px;
        }

        nav {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            text-transform: capitalize;
        }

        nav a:hover {
            border-bottom: 2px solid white;
        }
        nav .sltd {
            color: #ff9800;
        }
        nav .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }
        
        nav .hamburger .bar {
            width: 30px;
            height: 4px;
            background-color: #333;
            border-radius: 2px;
        }
        .appointment-btn {
            background-color: #d5830a;
            color: white;
            padding: 12px 20px;
            font-size: 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
        }

        .appointment-btn:hover {
            background-color: #e74c3c;
        }

        /* Banner Section */
        .banner {
            background: url('../images/banner.jpg') no-repeat center center/cover;
            color: white;
            padding: 215px 20px;
            text-align: center;
            position: relative;
        }
        .banner::after {
            content: '';
            position: absolute;
            background: #00000070;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
        }
        .banner h2 {
            font-size: 36px;
            margin-bottom: 20px;
            position: relative;
            z-index: 999;
        }

        .banner p {
            font-size: 18px;
            margin-bottom: 30px;
            position: relative;
            z-index: 999;
        }

        .banner .appointment-btn {
            padding: 15px 30px;
            font-size: 20px;
            position: relative;
            z-index: 999;
        }

        .container {
            width: 80%;
            margin: 0 auto;
            padding: 20px;
        }

        .about-us {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .about-us .text {
            width: 60%;
        }

        .about-us .text h2 {
            font-size: 24px;
            color: #333;
        }

        .about-us .text p {
            font-size: 16px;
            line-height: 1.6;
        }

        .about-us img {
            width: 35%;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 10px;
            margin-top: 40px;
        }
         /* Service Section */
         .service-section {
            padding: 50px 0;
            background-color: #f9f9f9;
            text-align: center;
            padding-top: 15px;
        }

    .service-section h2 {
        font-size: 28px;
        color: #333;
        margin-bottom: 40px;
        font-weight: 700;
    }

    .service-boxes {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
        padding: 0 20px;
    }

    .service-box {
        background-color: #fff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .service-box img {
        height: 50px;
        margin-bottom: 20px;
    }

    .service-box h3 {
        font-size: 20px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .service-box p {
        font-size: 16px;
        color: #666;
    }

    /* Contact Section */
    #contact {
        padding: 50px 0;
        background-color: #fff;
        text-align: center;
    }

    #contact h2 {
        font-size: 28px;
        color: #333;
        margin-bottom: 30px;
        font-weight: 700;
    }

    .contact-form {
        max-width: 600px;
        margin: 0 auto;
        text-align: left;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        font-size: 16px;
        color: #333;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 6px;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: #FF5733;
        outline: none;
    }

    button[type="submit"] {
        background-color: #FF5733;
        color: white;
        padding: 12px 20px;
        font-size: 18px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        text-transform: uppercase;
        display: inline-block;
        width: 100%;
        transition: background-color 0.3s ease;
    }

    button[type="submit"]:hover {
        background-color: #e74c3c;
    }
    /* Pricing Section */
    .pricing-section {
        padding: 20px 20px;
        background-color: #f9f9f9;
        text-align: center;
        padding-bottom: 40px;
    }

.pricing-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.pricing-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #FF5733;
}

.pricing-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 32px;
    color: #e78d08;
    margin-bottom: 15px;
    font-weight: 700;
}

.pricing-card .description {
    font-size: 16px;
    color: #666;
}
/* Explore Our Services Section */
.services-explore-section {
    padding: 10px 20px;
    background-color: #f5f5f5;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.services-explore-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-explore-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    font-weight: 400;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
    margin-bottom: 40px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;
    border: 1px solid #e2e2e2;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: #FF5733;
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
}

.service-btn {
    background-color: #d5830a;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.service-btn:hover {
    background-color: #e74c3c;
}
.service-card i {
    font-size: 40px;
    color: #ff9800;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover i {
    transform: scale(1.2);
}

.service-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}
.contact-card {
    background: linear-gradient(135deg, #0099cc, #33cc99);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    margin: auto;
    text-align: center;
    color: white;
  }
  
  .contact-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .contact-info p {
    /* font-family: 'Lato', sans-serif; */
    font-size: 18px;
    margin: 12px 0;
  }
  
  .contact-info a {
    color: #ffffff;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  .cta-button {
    background-color: #fff;
    color: #0099cc;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #33cc99;
    color: #fff;
  }
  footer {
    background: #333;
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-top: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 2px solid #444;
}
section#statistics h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
}
.footer-logo img {
    height: 50px;
}

.footer-links, .footer-contact {
    width: 30%;
    color: white;
}

.footer-links h3, .footer-contact h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-links ul li a:hover {
    color: #FF5733;
    border-bottom: 2px solid #FF5733;
}

.footer-contact p {
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    font-size: 14px;
    color: #aaa;
    background-color: #222;
    text-align: center;
    height: 45px;
    line-height: 45px;
}

.footer-bottom p {
    margin: 0;
}
.footer-logo {
    /* background: #fff; */
    /* padding: 24px 20px; */
    border-radius: 60px;
}
.footer-logo {
    /* background: linear-gradient(145deg, #fff, #fff);
    padding: 33px 30px; */
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.footer-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-logo img {
    width: 70px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: rotate(360deg);
}
.footer-social {
    margin-top: 20px;
}

.footer-social h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #333;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ff5733;
    transform: scale(1.1);
    color: #fff;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.twitter {
    background-color: #00acee;
}

.social-icon.instagram {
    background-color: #C13584;
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon.youtube {
    background-color: #FF0000;
}

.social-icon i {
    margin: 0;
}

.mobile-menu {
    display: none; /* Hidden by default on larger screens */
}

.mob-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
#mobile-nav {
    display: none;
    list-style: none;
    padding: 0;
    margin-top: 10px;
}
.washing-machine-repair {
    background-color: #031740;
    background-image: url(../images/repair-image.png);
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: #fff;
    background-attachment: fixed;
    position: relative;
}
.washing-machine-repair::after {
    content: '';
    position: absolute;
    background-color: #0f0f0fdb;
    z-index: 99999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
  
  /* Heading Section */
  .heading h1 {
    font-size: 2.8em;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .heading p {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
  }
  
  /* Service Details Section */
  .service-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
  }
  
  .service-item {
    flex: 1 1 45%;
    margin: 20px;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-item h3 {
    font-size: 1.9em;
    color: #2d2d2d;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .service-item p {
    font-size: 1.1em;
    color: #777;
    line-height: 1.6;
  }
  
  .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Image Section */
  .image-section {
    text-align: center;
    margin-top: 50px;
  }
  
  .repair-image {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .repair-image:hover {
    transform: scale(1.05);
  }
  section#services .service-box img {
    height: 115px;
}
.washine-machine-sec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}
.washine-machine-sec-rght img {
    width: 100%;
}
.washine-machine-sec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    width: 965px;
    margin: 0 auto;
    position: relative;
    z-index: 9999999;
}
.washine-machine-sec h3 {
    padding-top: 0;
    margin-top: 0;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    color: #ffa218;
}
.washine-machine-sec-rght img {
    border-radius: 15px;
}
.washine-machine-sec p {
    line-height: 24px;
    font-size: 15px;
}
#statistics {
    padding: 60px 0;
    background: linear-gradient(135deg, #4CAF50, #64b5f6);
    color: #fff;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #fff;
}

.stats-container {
    display: grid;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.stat-box {
    background: #fff;
    color: #333;
    padding: 30px 15px;
    border-radius: 15px;
    width: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.stat-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    padding: 0;
    margin: 0;
}

.stat-value {
    font-size: 2.3rem;
    font-weight: 700;
    color: #4CAF50;
    letter-spacing: 2px;
    padding: 0;
    margin: 0;
}
.services {
    padding: 15px 20px;
    background-color: #ffffff;
    text-align: center;
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
}
section#appointment {
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.service-card h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}
.service-cards .service-card {
    width: auto;
}
.service-cards {
    display: grid;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.btn-primary {
    padding: 12px 25px;
    background-color: #f1c40f;
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e1b10f;
}
/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.contact-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-section .section-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-info {
    width: 45%;
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style-type: none;
    line-height: 1.6;
}

.contact-info ul li {
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-info a {
    color: #f1c40f;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    width: 45%;
    background-color: #fafafa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.contact-form form label {
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form form button {
    background-color: #f1c40f;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form form button:hover {
    background-color: #e1b10f;
}

/* General styling for the contact section */
.contact-section {
    background-color: #f4f4f9;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

/* Section title */
.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    text-transform: capitalize;
    letter-spacing: 2px;
}

/* Section description */
.section-description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-weight: 300;
}

/* Contact content layout */
.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Contact info section */
.contact-info {
    flex: 1;
    background-color: #031740;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.contact-info:hover {
    transform: translateY(-10px);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-info ul {
    list-style-type: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info a {
    color: #f2b634;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact form section */
.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.contact-form:hover {
    transform: translateY(-10px);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

/* Input & textarea styling */
.contact-form label {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f2b634;
    box-shadow: 0 0 8px rgba(242, 182, 52, 0.6);
    outline: none;
}

/* Submit button styling */
.contact-form .submit-btn {
    background-color: #ff9800;
    color: #fff;
    padding: 14px 30px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.contact-form .submit-btn:hover {
    background-color: #d19b2f;
    transform: translateY(-5px);
}
.about-banner {
    padding: 50px 20px;
}
.map {
    width: 100%;
}
.map iframe {
    width: 100%;
}
.washing-machine-repair1 {
    padding: 40px;
    text-align: center;
    background-color: #ffffff;
}
.brands {
    display: flex;
    justify-content: left;
    gap: 5px;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 30px;
}

.brand {
    background-color: #fff;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-bottom: 0;
}
ul.brands li {
    list-style-type: none;
}
.brand h3 {
    font-size: 12px;
    color: #000000;
    margin-top: 0;
    line-height: 20px;
    margin-bottom: 0;
    font-weight: 300;
}

.cta {
    margin-top: 40px;
    background-color: #004d99;
    color: white;
    padding: 20px;
    border-radius: 5px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.cta-btn {
    background-color: #ff9800;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #ff4c39;
}
#services1 {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.section {
    margin-bottom: 30px;
}

.section ul {
    list-style-type: none;
    padding: 0;
}

.section ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

#services1 p strong {
    color: #2980b9;
}
#services1 header {
    background-color: #fff;
    color: white;
    padding: 10px 0;
    text-align: center;
    display: block;
    justify-content: space-between;
    align-items: self-start;
    padding: 10px 0;
    text-align: left;
    padding-bottom: 0;
}
#services1 header h1 {
    margin: 0;
    font-size: 28px;
    color: #000;
    text-align: left;
}
#services1 header p {
    color: #000;
}

.slick-slide .inner {
    margin: 0 15px;
  }

  /* Adjust the slick container if needed */
  .slick-marquee-container {
    width: 100%;
    max-width: 100%;
  }
  
  .slick-slide img {
    width: 100%;
    height: auto;
  }
  .slick-list.draggable {
    background: #ffffff;
    border: 1px solid #d5d5d5;
    padding: 25px 0 !important;
}
.tech {
    width: 100%;
    margin: 0;
    overflow: hidden;
}
.tech img {
    width: 100%;
    height: auto;
}
    /* Media Queries for Responsive Design */
@media screen and (max-width: 1200px) {
    .container {
        width: 90%;
    }

    .about-us {
        flex-direction: column;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 0;
        margin-top: 15px;
    }

    .about-us .text {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-us img {
        width: 120%;
    }
}

@media screen and (max-width: 768px) {
    header {
        flex-direction: row;
        text-align: center;
        padding: 20px 20px;
        background-color: #000;
    }
    .logo img {
        height: 110px;
    }
    nav {
        flex-direction: column;
        gap: 10px;
        display: none;
    }
    .mobile-menu {
        display: block;
    }

    .service-boxes {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .service-box {
        padding: 20px;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form button[type="submit"] {
        width: 100%;
    }
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 20px;
    }
    .service-cards {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        padding: 0;
    }

    .service-card {
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-links, .footer-contact {
        width: 100%;
        margin-top: 30px;
        text-align: center;
    }

    .footer-logo img {
        height: 40px;
        margin-bottom: 20px;
    }
    .footer-logo {
        border-radius: 50%;
        display: inline-block;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 0;
        background: #000;
        padding: 20px;
    }
    .footer-logo img {
        height: auto;
        margin-bottom: 0;
        width: 110px;
        border-radius: 87px;
    }
    .mobile-menu ul {
        position: absolute;
        right: 0;
        z-index: 9999;
        width: 100%;
        background: #fff;
        padding: 10px 0;
    }
    .mobile-menu ul li {
        background: #0a0909;
        padding: 13px 0;
        border-bottom: 1px solid #cccccc54;
    }
    .mobile-menu ul li:hover {
        background-color: #d5830a;
    }
    .mobile-menu ul li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
    }
    .mobile-menu svg rect {
        fill: #c7263c;
        width: 100px;
    }
    #mobile-nav.active {
        display: block;
        margin-top: 30px;
    }
    .service-details {
        flex-direction: column;
        align-items: center;
      }
    
      .service-item {
        width: 80%;
        margin-bottom: 30px;
      }
      .stat-box {
        width: 45%;
    }
    footer {
        margin-top: 0;
    }
    .contact-info p {
        font-size: 16px;
        margin: 12px 0;
    }
    .washine-machine-sec {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 35px;
    }
    .washing-machine-repair {
        background-color: #031740;
        padding: 20px 0;
        color: #fff;
    }
    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .stat-box {
        width: auto;
    }
    .stat-box h3 {
        font-size: 16px;
        margin-bottom: 20px;
        font-weight: 600;
        padding: 0;
        margin: 0;
    }
    .stat-value {
        font-size: 26px;
    }
    #statistics {
        padding: 0 0;
        background: linear-gradient(135deg, #4CAF50, #64b5f6);
        color: #fff;
        text-align: center;
        padding-bottom: 30px;
    }
    .pricing-cards {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .contact-info {
        text-align: left;
    }
    .washing-machine-repair::after {
        background-color: #0f0f0fd6;
    }
    .washine-machine-sec p {
        line-height: 22px;
        padding: 0;
        margin: 10px 0;
        font-size: 14px;
    }
    .banner::after {
        content: '';
        position: absolute;
        background: #0000008c;
    }
    #mob-icon svg {
        width: auto;
        height: 30px;
    }
    .washine-machine-sec h3 {
        padding-top: 0;
        margin-top: 0;
        font-family: 'Rubik', sans-serif;
        font-weight: 500;
        line-height: 22px;
        font-size: 16px;
        margin-bottom: 0;
        color: #e4350f;
    }
    #services1 .section ul li {
        margin-bottom: 10px;
        font-size: 16px;
    }
    .footer-contact p {
        font-size: 14px;
        margin-bottom: 0;
        line-height: 24px;
    }
    .footer-links ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
    }
    .footer-links, .footer-contact {
        margin-top: 5px;
    }
    .map iframe {
        width: 100%;
        height: 240px;
    }
    #contact {
        padding: 50px 0;
        background-color: #fff;
        text-align: center;
        padding-top: 0;
    }
    .contact-info h3 {
        font-size: 22px;
        margin-bottom: 20px;
        font-weight: 500;
        margin-top: 0;
    }
    .contact-info ul li {
        margin-bottom: 5px;
        font-size: 15px;
        line-height: 26px;
    }
    .contact-info ul {
        list-style-type: none;
        padding: 0;
        margin-bottom: 0;
    }
    .washing-machine-repair1 {
        padding: 20px;
        text-align: center;
        background-color: #ffffff;
    }
    .cta-btn {
        margin-top: 5px;
        display: inline-block;
    }
    .contact-form {
        width: 100%;
        padding-left: 15px;
    }
    section#services .service-box img {
        margin-bottom: 0;
    }
    .service-box h3 {
        font-size: 20px;
        margin-bottom: 15px;
        font-weight: 600;
        margin-top: 10px;
    }
    #services1 {
        background-color: #ffffff;
        padding: 40px 0;
    }
    .slick-list.draggable {
        background: #ffffff;
        border: 1px solid #d5d5d5;
        padding: 20px 0 !important;
    }
    #services1 p strong {
        color: #2b2525;
        font-weight: 500;
    }
    header {
        flex-direction: row;
        text-align: center;
        padding: 10px 20px;
        background-color: #000;
    }
    .mobile-menu svg rect {
        fill: #ffa014;
        width: 100px;
    }
    .washine-machine-sec h3 {
        color: #ff9a05;
    }
    .ac-repair-sec-rght {
        width: 100%;
    }
    .ac-repair-sec-rght img {
        width: 100%;
    }
    .service-btn {
        background-color: #c6a200;
        color: white;
        padding: 12px 20px;
        font-size: 16px;
        text-transform: capitalize;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        transition: background-color 0.3s ease;
    }
    .service-btn:hover {
        background-color: #e9900c;
    }
}

@media screen and (max-width: 480px) {
    .banner {
        height: 380px;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .banner h2 {
        font-size: 28px;
        margin-bottom: 0;
        margin-top: 0;
    }

    .banner p {
        font-size: 15px;
        margin-bottom: 20px;
        padding: 0 20px;
        line-height: 21px;
    }

    .banner .appointment-btn {
        padding: 12px 24px;
        font-size: 18px;
    }

    header h1 {
        font-size: 24px;
    }

    nav a {
        font-size: 16px;
    }

    .service-boxes {
        gap: 20px;
    }

    .contact-form button[type="submit"] {
        padding: 14px 18px;
    }
    .service-card img {
        width: 50px;
        height: 50px;
    }

    .service-btn {
        font-size: 14px;
        padding: 10px 15px;
    }
    .stat-box {
        width: auto;
    }
}