body {
            font-family: 'Rubik', sans-serif; /* Apply Rubik font to body */
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }

header {
    background-color: transparent;
    color: white;
    padding: 10px 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 3%;
    position: absolute;
    width: 94%;
    z-index: 999;
}

        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: #fe9101;
            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: #fe9101;
        }

        /* Banner Section */
        .banner {
            background: url('../images/banner.jpg') no-repeat center center/cover;
            color: white;
            padding: 0 4%;
            text-align: center;
            position: relative;
            height: calc(100vh - 0px);
            background-position: 0 0;
        }
        .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-content-txt {
    position: relative;
    padding-top: 250px;
    text-align: left;
    width: 600px;
}
        .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-section{
    padding:50px 0;
    background:#f8fafc;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:0;
    display:block;
    box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.experience-box{
    position:absolute;
    bottom:-20px;
    right:-20px;
    background:#ff9800;
    color:#fff;
    width:150px;
    height:150px;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 15px 40px rgba(255,152,0,.3);
    display: none;
}

.experience-box h3{
    font-size:42px;
    margin:0;
    line-height:1;
}

.experience-box span{
    font-size:14px;
    text-align:center;
}

.section-tag{
    display:inline-block;
    background:#eaf3ff;
    color:#0a4db8;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h2{
    font-size:42px;
    color:#032b67;
    line-height:1.3;
    margin-bottom:20px;
    margin-top: 0;
}

.about-content p{
    font-size:17px;
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.feature{
    background:#fff;
    padding:15px 20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
    font-weight:500;
}

.about-btn{
    display:inline-block;
    background:#032b67;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border-radius:10px;
    transition:.3s;
}

.about-btn:hover{
    background:#ff9800;
}



        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;
    padding-bottom: 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: 170px;
    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, #00194a, #3a91d6);
    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: #fd9001;
    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 4%;
}
.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;
}
.banner h1 {
    color: #fff;
    position: relative;
    z-index: 99;
}
.banner a {
    color: #fff;
}
.banner a {
    color: #fff;
    position: relative;
    z-index: 99;
    text-decoration: none;
    margin-right: 10px;
}
.trust-signals{
    padding:80px 0;
    background:#f8fbff;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#0d6efd;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:38px;
    margin:15px 0;
    color:#222;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
}

/* .trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.trust-card{
    background:#fff;
    padding:35px 20px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.trust-card:hover{
    transform:translateY(-8px);
}

.trust-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    background:#3F51B5;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.trust-card h3{
    font-size:32px;
    color:#3F51B5;
    margin-bottom:10px;
}

.trust-card p{
    color:#555;
    font-size:16px;
    margin:0;
} */
/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.floating-whatsapp a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
  font-size: 1.5rem;
}
/* Floating Call Button */
.call-btn1 {
    position: fixed;
    bottom: 15%;
    right: 31px;
    background: #197fff;
    color: #fff;
    padding: 14px 18px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: pulse 1.5s infinite;
    transition: transform 0.2s;
}

.call-btn1:hover {
  transform: scale(1.1);
  background: #197fff;
}

/* Phone Icon Styling */
.call-btn1 i {
  font-size: 18px;
}
.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:35px 0;
}

.feature-card{
    display:flex;
    align-items:flex-start;
    gap:15px;
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    border:1px solid #eee;
}

.feature-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.feature-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:12px;
    background:linear-gradient(135deg,#0057ff,#00b4ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.feature-card h4{
    margin:0 0 8px;
    font-size:18px;
    font-weight:600;
    color:#111;
}

.feature-card p{
    margin:0;
    font-size:14px;
    color:#666;
    line-height:1.6;
}
.service-section{
    padding:40px 0;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-title span{
    display:inline-block;
    color:#0d6efd;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
    color:#111;
}

.section-title p{
    color:#666;
    line-height:1.8;
}

.service-boxes{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-box{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.service-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.service-image{
    position:relative;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.4s;
}

.service-box:hover img{
    transform:scale(1.08);
}

.service-icon{
    position:absolute;
    bottom:-25px;
    right:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#0057ff,#00b4ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    box-shadow:0 10px 30px rgba(0,87,255,.3);
}

.service-content{
    padding:35px 25px 25px;
}

.service-content h3{
    margin-bottom:15px;
    font-size:22px;
    color:#111;
}

.service-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.service-content a{
    color:#0d6efd;
    font-weight:600;
    text-decoration:none;
}

.service-content a i{
    margin-left:5px;
    transition:.3s;
}

.service-content a:hover i{
    margin-left:10px;
}



/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 127, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}
    /* Media Queries for Responsive Design */
@media screen and (max-width: 1200px) {
    .container {
        width: 90%;
    }


}

@media screen and (max-width: 768px) {
    header {
        flex-direction: row;
        text-align: center;
        padding: 20px 20px;
        background-color: #fff;
    }
   .logo img {
        height: 85px;
    }
    nav {
        flex-direction: column;
        gap: 10px;
        display: none;
    }
    .mobile-menu {
        display: block;
    }

    .service-boxes {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .service-box {
        padding: 20px;
    }
    .service-box {
        background: #122347;
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
        transition: .4s;
        background: linear-gradient(to bottom, #0e1b35, #3256a2);
        padding: 0;
        background: linear-gradient(to bottom, #00153d, #002c73, #0046ad);
    }
    .contact-form {
        width: 100%;
    }
.feature-card h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #e14d1f;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 2px;
    margin-bottom: 0;
}
.ac-repair-installation-amc h3 {
    color: #197fff;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 3px;
    font-size: 20px;
}
.brand {
    background-color: #012353;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-bottom: 0;
}
/* .trust-card {
    background: #25417b;
    padding: 35px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    background: linear-gradient(to bottom, #0e1b35, #3256a2);
}
.trust-card {
    background: #25417b;
    padding: 35px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    background: linear-gradient(to bottom, #0e1b35, #3256a2);
}
.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #FF5722;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, #0057ff, #00b4ff);
}
    .trust-card h3 {
        font-size: 25px;
        color: #ffffff;
        margin-bottom: 10px;
    }
    .trust-card p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
} */
.brand h3 {
    font-size: 12px;
    color: #ffffff;
    margin-top: 0;
    line-height: 20px;
    margin-bottom: 0;
    font-weight: 300;
}
.appliance-keywords h2 {
    color: #197fff;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 3px;
    font-size: 25px;
}
.about-btn {
    display: inline-block;
    background: #0a4db8;
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 0;
    transition: .3s;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 2px;
}
    .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: #0d3068;
        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: 15px;
        display: block;
        width: 100%;
        padding: 5px 20px;
        color: #fff;
        text-decoration: none;
        box-sizing: border-box;
    }
    .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;
        background: #3F51B5;
    }
    .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, #00194a, #052457);
        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: 24px;
        margin-bottom: 10px;
        font-weight: 600;
        margin-top: 10px;
        color: #fff;
        font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 2px;
    }
    #services1 {
        background-color: #ffffff;
        padding: 40px 0;
    }
    .service-content p {
        color: #fbfbfb;
        line-height: 24px;
        margin-bottom: 20px;
        margin-top: 0;
        font-weight: 300;
        font-size: 15px;
    }
    .service-content a {
        color: #ffffff;
        font-weight: 300;
        text-decoration: none;
        font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 2px;
        background: #ff9100;
        padding: 10px 15px;
    }
.service-icon {
    position: absolute;
    bottom: 10px;
    right: 25px;
}
    .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 4%;
        background-color: transparent;
        width: 92%;
        padding-left: 2%;
    }
    .mobile-menu svg rect {
        fill: #fff;
        width: 100px;
    }
    .washine-machine-sec h3 {
        color: #ff9a05;
    }
    .ac-repair-sec-rght {
        width: 100%;
    }
    .ac-repair-sec-rght img {
        width: 100%;
    }
    .banner-content-txt {
        position: relative;
        margin-top: 152px;
        text-align: left;
        width: 87%;
        background: #00000025;
        padding-top: 0;
        padding: 0 7%;
    }
        .banner p {
        font-size: 15px;
        margin-bottom: 20px;
        padding: 0 0;
        line-height: 21px;
    }
    .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;
    }
.about-section {
        padding: 25px 0;
        background: #eff5ff;
        padding-bottom: 25px;
    }
    .service_bg {
        background: #eff5ff; 
    }
    .section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    background: #eff5ff;
}
.service-content {
    padding: 20px 25px 25px;
}
            .footer-logo {
        border-radius: 15px;
        display: inline-block;
        box-shadow: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 0;
        background: #ffffffcc;
        padding: 15px 20px;
    }
    .footer-logo img {
        height: auto;
        margin-bottom: 0;
        width: 245px;
        border-radius: 87px;
    }
    .footer-social h3 {
    color: #ffffff;
    }
    .social-icon {
    color: #ffffff;
    }
    .floating-whatsapp {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
      .call-btn1 {
        bottom: 12%;
        right: 18px;
    }
    .mobile-menu ul li a.sltd {
        color: #fe9101;
    }
        .about-features{
        grid-template-columns:1fr;
    }
    section#services .service-box img {
    height: 290px;
    object-fit: fill;
    border-radius: 0;
}
}
@media(max-width:991px){

    .about-wrapper{
        grid-template-columns:1fr;
        display: flex;
        flex-direction: column-reverse;
    }

     .about-content h2 {
        font-size: 32px;
        font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 1.5px;
    }
    .section-tag {
        font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 1.5px;
        font-size: 23px;
        border-radius: 0;
        background: #d2e5ff;
    }
.about-content h2 span {
        color: #ff9100;
    }
       .experience-box {
        width: 90px;
        height: 95px;
        bottom: 130px;
        background: #1549a9;
        padding: 5px 10px;
    }
    #about img {
    width: 100%;
}
}
@media screen and (max-width: 480px) {
       .banner {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: calc(100vh - 0px);
        background-position: 75% 0;
    }
.trust-signals {
        padding: 35px 0;
        background: #f8fbff;
        background: #eff5ff;
    }
    section.ac-repair-installation-amc {
    background: #eff5ff;
}
    .banner h2 {
        font-size: 28px;
        margin-bottom: 0;
        margin-top: 0;
    }
.washing-machine-repair1 {
        padding: 20px;
        text-align: center;
        background-color: #ecf2fb;
    }
    .service-section {
    padding: 0;
    background: transparent;
}
    #services1 {
        background-color: #ecf2fb;
        padding: 40px 0;
        box-shadow: none;
    }
    section.faq-section {
    background: #ecf2fb;
}
    .banner p {
        font-size: 15px;
        margin-bottom: 20px;
        padding: 0 0;
        line-height: 21px;
    }

        .banner .appointment-btn {
        padding: 12px 24px;
        font-size: 18px;
        margin-top: 10px;
        border-radius: 0;
        font-family: "Bebas Neue", system-ui, sans-serif;
    }
       .banner h1 {
        color: #fff;
        position: relative;
        z-index: 99;
        font-size: 40px;
        font-family: "Bebas Neue", system-ui, sans-serif;
        text-transform: uppercase;
        font-weight: bold;
        line-height: 43px;
        margin-bottom: 0;
    }
    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;
    }
   .banner h1 span {
        color: #ff9e1d;
    }
       /* .trust-card h3 {
        font-size: 25px;
        color: #ffffff;
        margin-bottom: 10px;
    } */
}
.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;
}
.slick-initialized .slick-slide {
    display: block;
    height: 65px;
}
.service-list h1 {
    font-size: 32px;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 1.5px;
    background: transparent;
    color: #032b67;
}
.service-btn {
        font-size: 14px;
        padding: 10px 15px;
        color: #ffffff;
        font-weight: 300;
        text-decoration: none;
        font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 2px;
        background: #ff9100;
        padding: 10px 15px;
        border-radius: 0;
    }
    .service-card h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #333;
    font-size: 32px;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 1.5px;
    background: transparent;
    color: #032b67;
}
.about-us h2 {
        font-size: 32px;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 1.5px;
    background: transparent;
    color: #032b67;
}
.service-list .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 20px 0;
}
.banner.about-banner {
    z-index: 0;
}
@media(max-width:768px){

.trust-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:28px;
}
    .cta {
        margin-top: 40px;
        background-color: #004d99;
        color: white;
        padding: 20px;
        border-radius: 16px;
    }
.cta p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 3px;
    font-size: 25px;
}
.cta-btn {
    background-color: #ff9800;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    color: #ffffff;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 3px;
    font-size: 25px;
}
.why-us-section h2 {
        font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 3px;
    font-size: 25px;
    color: #197fff;
}
.why-us-section h3 {
        font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 3px;
    font-size: 18px;
    color: #197fff;
}
section#statistics h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 3px;
    color: #ffffff;
}
    .stat-box h3 {
        font-size: 18px;
        margin-bottom: 20px;
        font-weight: 600;
        padding: 0;
        margin: 0;
        font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 3px;
        color: #197fff;
    }
    .stat-value {
        font-size: 34px;
        font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 3px;
    }
    .faq-section h2 {
                font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 3px;
        font-size: 25px;
        color: #197fff;
    }
    .faq-section h3 {
                font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 3px;
        font-size: 18px;
        color: #197fff;
    }
        /* .trust-card h3 {
        font-size: 25px;
        color: #ffffff;
        margin-bottom: 10px;
        font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 3px;
    } */
     #services1 {
        background-color: #ecf2fb;
        padding: 10px 0;
        box-shadow: none;
    }
    .why-us-section .call-btn {
    color: #ffffff;
    font-weight: 300;
    text-decoration: none;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 2px;
    background: #ff9100;
    padding: 10px 15px;
    margin-top: 5px;
    display: inline-block;
}
.stat-box {
        width: auto;
        padding: 30px 13px;
    }
    .stat-box {
        width: auto;
        padding: 20px 13px;
        gap: 5px;
        padding-bottom: 10px;
    }
        .banner::after {
        content: '';
        position: absolute;
        background: #00000000;
    }
        footer {
        margin-top: 0;
        background: #05286f;
        border-top: 5px solid #ff9100;
    }
        .footer-logo {
        background: transparent;
        padding: 15px 20px;
    }
        footer {
        padding-top: 25px;
    }
}

@media(max-width:480px){

/* .trust-grid{
    grid-template-columns:1fr;
}
.trust-card h3 {
    font-size: 25px;
    color: #3F51B5;
    margin-bottom: 10px;
} */
    .section-title p {
        max-width: 700px;
        margin: auto;
        color: #197fff;
        font-size: 30px;
        font-family: "Bebas Neue", system-ui, sans-serif;
        line-height: 40px;
    }
    .section-title h2 {
        font-size: 32px;
        font-family: "Bebas Neue", system-ui, sans-serif;
    }
       /* .trust-card h3 {
        font-size: 25px;
        color: #ffffff;
        margin-bottom: 10px;
    } */
}
@media(max-width:992px){
    .service-boxes{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .service-boxes{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:32px;
    }
}
.typing-text {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    border-right: 4px solid #ff9900;
    width: 0;
    animation: typing 4s steps(45, end) forwards,
               blink 0.8s infinite;
}

.typing-text span {
    color: #ff9900;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}
@media (max-width:768px){
    .typing-text{
        font-size:32px;
        white-space: normal;
        border-right:none;
        width:100%;
        animation:none;
    }
}
.mobile-typing{
    color:#fff;
    font-size:34px;
    font-weight:700;
    line-height:1.2;
}

.mobile-typing span{
    color:#ff9f1c;
}

@media (max-width:768px){

    .mobile-typing{
        /* overflow:hidden;
        white-space:nowrap; */
        width:0;
        border-right:3px solid #ff9f1c;
        animation:
            typing 3s steps(40,end) forwards,
            cursor .8s infinite;
    }

    @keyframes typing{
        from{
            width:0;
        }
        to{
            width:100%;
        }
    }

    @keyframes cursor{
        50%{
            border-color:transparent;
        }
    }
    .feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgb(179 194 218);
    transition: .3s;
    border: 1px solid #eee;
    padding-top: 15px;
    padding-bottom: 10px;
}
}
/* Trust Grid */

.trust-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    max-width:900px;
    margin:40px auto;
    padding:15px;
}


/* Card */

.trust-card{

    background:linear-gradient(135deg,#ffffff,#f5f9ff);

    border:1px solid #e4edff;
    border-left:5px solid #0868ff;

    border-radius:22px;

    padding:25px;

    display:flex;
    align-items:center;
    gap:25px;

    position:relative;
    overflow:hidden;

    box-shadow:
    0 12px 35px rgba(0,80,200,.10);

    transition:.35s ease;

    cursor:pointer;
}


.trust-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 45px rgba(0,80,200,.18);

}



/* Main Icon */

.trust-icon{

    width:85px;
    height:85px;

    min-width:85px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(135deg,#006cff,#00b5ff);

    color:#fff;

    font-size:34px;

    box-shadow:
    0 12px 25px rgba(0,108,255,.35);

    position:relative;
    z-index:2;
}



/* Content */

.trust-content{
    position:relative;
    z-index:2;
}


.trust-content h3{

    margin:0;

    font-family:'Bebas Neue',sans-serif;

    font-size:38px;

    letter-spacing:1px;

    color:#075de8;

    line-height:1;

}


.trust-content p{

    margin:8px 0 0;

    color:#16213e;

    font-size:18px;

    font-weight:600;

}



/* Decorative Background */

.trust-bg{

    position:absolute;

    right:15px;

    bottom:0;

    width:150px;

    height:120px;

    color:#0868ff;

    opacity:.08;

    z-index:1;

}


.trust-bg .fa-user-group,
.trust-bg .fa-shield-halved,
.trust-bg .fa-user-tie,
.trust-bg .fa-truck-fast{

    position:absolute;

    right:20px;

    bottom:-5px;

    font-size:90px;

}


.trust-bg .star1{

    position:absolute;

    top:5px;

    right:80px;

    font-size:35px;

}


.trust-bg .star2{

    position:absolute;

    top:35px;

    right:10px;

    font-size:30px;

}



/* Mobile */

@media(max-width:768px){
    .trust-grid {
        grid-template-columns: 1fr;
        padding: 10px;
        margin-top: 0;
        margin-bottom: 0;
    }
    .trust-card{
        padding:20px;
        gap:18px;
    }

       .trust-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
        font-size: 26px;
        border: 4px solid #fff;
    }
    .trust-content h3{
        font-size:24px;
    }
    .trust-content p{
        font-size:15px;
    }
    .trust-bg{
        right:-10px;
        transform:scale(.8);
    }
       .trust-signals .container {
        width: 100%;
        padding: 20px 0;
    }
    .trust-content p {
        font-size: 16px;
        font-family: system-ui;
        margin-top: 5px;
    }
.trust-signals {
        padding: 15px 0;
        background: #f8fbff;
        background: #eff5ff;
        padding-bottom: 0;
    }
        .brand {
        background-color: #197fff;
    }
        .cta p {
        margin-top: 0;
    }
    .why-us-section .section-heading span {
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 1.5px;
    font-size: 18px;
    border-radius: 0;
    background: #d2e5ff;
    color: #197fff;
    display: inline-block;
    color: #0a4db8;
    padding: 8px 18px;
    font-weight: 600;
    margin-bottom: 0;
    }
    .section-box ul li {
    line-height: 27px;
}
.banner.about-banner .banner-content-txt {
    margin-top: 45px;
}
.service-cards .service-card {
    width: auto;
    background: linear-gradient(to bottom, #00153d, #002c73, #0046ad);
}
.about-us h2 {
    font-size: 32px;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 1.5px;
    background: transparent;
    color: #032b67;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 1.5px;
    font-size: 23px;
    border-radius: 0;
    background: #d2e5ff;
    color: #0a4db8;
    display: inline-block;
    background: #d2e5ff;
    color: #0a4db8;
    padding: 8px 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.back-bg {
        background: #eff5ff;
}
section.services.service-list .service-card h2 {
        color: #fff;
        font-size: 24px;
        margin-bottom: 0;
        padding-bottom: 0;
    }
section.services.service-list .service-card p {
        color: #fff;
        font-size: 15px;
        padding-top: 0;
        margin-top: 15px;
        line-height: 22px;
    }
    .pricing-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 2px;
    background: #6c9cff1a;
    padding: 8px;
}
.pricing-card .price {
    font-size: 32px;
    color: #e78d08;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 2px;
    padding-top: 0;
    margin-top: 0;
}
.pricing-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 2px;
    color: #225ed8;
}
.service-section h2 {
        font-size: 32px;
        font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 1.5px;
        background: transparent;
        color: #032b67;
    }
    #services.service h2 {
        font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 1.5px;
        font-size: 23px;
        border-radius: 0;
        background: #d2e5ff;
        color: #0a4db8;
        display: inline-block;
        background: #d2e5ff;
        color: #0a4db8;
        padding: 8px 18px;
        font-weight: 600;
        margin-bottom: 20px;
    }
        .service-section {
        padding: 0;
        background: transparent;
        text-align: left;
    }
    .service-boxes {
        grid-template-columns: 1fr;
        text-align: center;
    }
        .section-title {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 30px;
        background: #eff5ff;
        font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 2px;
        margin-bottom: 0;
    }
    .appointment-btn {
    background-color: #fe9101;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    color: #ffffff;
    font-weight: 300;
    text-decoration: none;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 2px;
    background: #ff9100;
    padding: 10px 15px;
    margin-top: 0;
    display: inline-block;
}
.contact-info {
        text-align: left;
        /* font-family: "Bebas Neue", system-ui, sans-serif; */
        letter-spacing: 2px;
    }
        .contact-form {
        width: 100%;
        padding-left: 15px;
        font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 2px;
    }
    .contact-form .submit-btn {
    background-color: #ff9800;
    color: #fff;
    padding: 14px 30px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    color: #ffffff;
    font-weight: 300;
    text-decoration: none;
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: 2px;
    border-radius: 0;
    background: #ff9100;
    padding: 10px 15px;
    margin-top: 5px;
    display: inline-block;
}

    .footer-container {
        flex-direction: column;
        align-items: center;
        font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 2px;
    }
    .tech {
    width: fit-content;
    margin: 0;
    overflow: hidden;
    border: 4px solid #ff9100a8;
}
.ac-repair-sec-rght {
        width: fit-content;
        border: 4px solid #ff9100a8;
    }
   .trust-signals b {
        color: #ff9100;
    }
    .contact h2 {
        font-family: "Bebas Neue", system-ui, sans-serif;
        letter-spacing: 1.5px;
        font-size: 23px;
        border-radius: 0;
        background: #d2e5ff;
        color: #0a4db8;
        display: inline-block;
        background: #d2e5ff;
        color: #0a4db8;
        padding: 8px 18px;
        font-weight: 600;
        margin-bottom: 20px;
}
#contact h2 {
    font-size: 28px;
    margin-bottom: 0;
    font-weight: 700;
    color: #0a4db8;
}
}
@media(max-width:435px){
.banner-content-txt {
        position: relative;
        margin-top: 87px;
    }
    .banner.about-banner .banner-content-txt {
        margin-top: -22px;
    }
}
@media(max-width:415px){
.banner-content-txt {
        position: relative;
        margin-top: 87px;
    }
    .banner.about-banner .banner-content-txt {
        margin-top: -22px;
    }
}
@media(max-width:380px){
    .banner-content-txt {
        position: relative;
        margin-top: 152px;
    }
   .banner.about-banner .banner-content-txt {
        margin-top: 45px;
    }
    
}