/* Prevent overflow on all screens */
body {
    margin: 0;
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
    box-sizing: border-box;
    /* Include padding and border in element width calculations */
}

.header {
    background: #fff;
    padding: 15px 5%;
    width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Default alignment for larger screens */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        /* Stack elements vertically */
        text-align: center;
        /* Center text elements */
        justify-content: center;
        /* Center content */
        padding: 10px 3%;
    }
}

/* Navbar Container */
.navbar {
    background-color: #c32a2c;
    padding: 15px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Navigation List Items */
.nav-links li {
    position: relative;
    padding: 10px 15px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

/* Remove default link styles */
.nav-links li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease-in-out;
}

.nav-links li a:hover {
    color: black;
}

/* Hide menu icon on desktop */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Responsive: Mobile View */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        /* Show menu icon */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hide menu initially */
        width: 250px;
        height: 100%;
        background: #c32a2c;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease-in-out;
        z-index: 99;
    }

    .nav-links li {
        display: block;
        width: 100%;
        text-align: left;
        padding: 15px;
    }

    .nav-links li a {
        font-size: 18px;
        display: block;
    }

    .nav-links.show {
        right: 0;
        /* Slide in the menu */
    }
}

.logo {
    display: flex;
    align-items: left;
    /* Aligns items vertically */
    gap: 10px;
    /* Adds space between logo and text */
}

.ef {
    font-size: 16px;
}

.text {
    display: flex;
    flex-direction: column;
    /* Stacks text elements vertically */
}

.pickup-btn {
    background: #c32a2c;
    color: #fff;
    border: none;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    align-items: end;
    border-radius: 15px;
    height: 40px;
    width: 250px;
    text-align: center;
    display: block;
}

.pickup-btn1 {
    position: fixed;
    bottom: 20px;
    right: 18%;
    border-radius: 50px;
    text-align: center;
    z-index: 100;
    background: #fff;
    border: 2px solid #c32a2c;
    color: #c32a2c;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    align-items: end;
    border-radius: 15px;
    height: 50px;
    width: 250px;
    text-align: center;
    display: none;
}

.pickup-btn:hover {
    background-color: black;
    color: white;
    transition: all .3s linear;
}

.eg {
    margin-top: 10px;
}

.logo img {
    height: 80px;
}

.glyphicon,
.fab {
    color: black;
    font-size: 20px;
}

.adc {
    color: black;
    font-size: 14px;
}

.abc {
    background-color: #000;
    color: white;
    width: 1385px;
}

.al {
    font-size: 16px;
}

.am {
    font-size: 20px;
}

.aef {
    margin-top: 30px;
    margin-left: 10px;
}

.an {
    text-align: center;
}

.footer {
    padding: 60px 10px;
    background: #000;
}

.left p {
    font-size: 16px;
    line-height: 22px;
    padding-top: 20px;
    color: #fff;
}

.left ul {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}

.left ul li:first-child {
    font-size: 16px;
    font-weight: 700;
    color: #c32a2c;
    padding-bottom: 20px;
}

.left ul li {
    color: #fff;
    font-size: 14px;
}

.left ul li .fa-solid,
.fa-brands {
    color: #c32a2c;
    padding-right: 10px;
}

.footer-address-desc {
    font-weight: 600;
}

.fa-brands {
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.left ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: start;
}

.social-icons .fa-brands:hover {
    color: #fff;
}

.info-box {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}

.info-box i {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Call Section */
.call-section {
    margin-top: 20px;
}

.call-section a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        text-align: center;
    }
}

.edf {
    font-size: 34px;
}

.asd {
    font-size: 30px;
}

.you {
    margin-top: 10px;
    font-size: 20px;
}

.about {
    position: relative;
    background: url('Images/56.jpeg') center/cover no-repeat;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.about .overlay3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 0, 0, 0.8);
    /* Dark Red Overlay */
}

.about-content {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: auto;
}

.about-us {
    padding: 60px 0;
}

.about-us img {
    width: 90%;
    box-shadow: 1px 1px 10px #a5a5a5;
    border-radius: 10px;
}

.aboutus-head {
    padding: 10px 0;
}

.aboutus-head h1 {
    font-size: 30px;
    font-weight: 700;
    color: #c32a2c;
    position: relative;
    padding-bottom: 20px;
}

.aboutus-head h1::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    left: 0;
    bottom: 0;
    background: #c32a2c;
    border-radius: 20px;
}

.aboutus-head p {
    font-size: 16px;
    color: #666;
    padding-right: 30px;
    padding-top: 20px;
    text-align: justify;
}

.counters {
    background-color: #c32a2c;
    padding: 50px 0px;
    text-align: center;
}

.new-counter {
    border: 1px solid #fff;
    padding: 20px 40px;
    background: #fff;
    /* border-radius: 20px; */
    /* box-shadow: 1px 1px 10px black; */
}

.counters .counter {
    color: #c32a2c;
    font-size: 40px;
    font-weight: 600;

}

.counters h3 {
    color: #c32a2c;
    font-size: 30px;
    font-weight: 700;
}

.washable-list {
    padding: 60px 10px;
}

.list-head {
    text-align: center;
}

.list-head h1 {
    font-size: 30px;
    color: #c32a2c;
    font-weight: 700;
}

.list-btn {
    padding: 20px 50px;
}

.list-btn button {
    background: #c32a2c;
    color: white;
    border: none;
    padding: 7px 35px;
    font-size: 18px;
    margin-right: 20px;
    font-weight: 600;
}

.list-card {
    background: #fff;

    padding: 30px 50px;
    /* border: 1px solid rgb(231, 230, 230); */
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgb(231, 230, 230);
    text-align: center;
    min-height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.list-card p {
    font-size: 20px;
    padding-top: 10px;
    color: #333;
    font-weight: 600;
}

.choose {
    padding: 40px 10px;
}

.choose-head h1 {
    color: #c32a2c;
    font-size: 32px;
    font-weight: 700 !important;
    padding-top: 10px;
}

.choose-head p {
    color: #666;
    font-size: 18px;
    padding-top: 20px;
    line-height: 22px;
}

.choose-list {
    padding-top: 30px;

    display: flex;
    justify-content: space-between;
}

.choose-list ul {
    margin: 0 !important;
    padding: 0 !important;
}

.choose-list ul li {
    list-style: none;
}

.choose-icon {
    display: flex;
    align-items: center;
}

.fa-circle-check {
    color: #c32a2c;
    padding-right: 20px;
    font-size: 18px;
}

.choose-icon p {
    font-size: 16px;
    padding-top: 8px;
    font-weight: 500;
    color: #666;
}

.choose img {
    width: 90%;
    box-shadow: 1px 1px 10px #a5a5a5;
    border-radius: 10px;
}

.yr {
    text-align: center;
    font-size: 50px;
    font-weight: 800;
}

.section-title {
    text-align: center;
    color: #c32a2c;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-section {
    padding: 40px 0;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    padding-left: 30px;
}

.about-title {
    font-size: 28px;
    font-weight: bold;
    color: #c32a2c;
    margin-bottom: 15px;
    margin-top: 30px;
    text-align: center;

}

.image-container {
    text-align: center;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.services-title {
    font-weight: bold;
    margin-top: 30px;
    font-size: 20px;
}

.list-container ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 18px;

}

.adf {
    margin-left: 90px;
    align-items: center;
    justify-content: center;
}

.ads {
    margin-left: 160px;
    align-items: center;
    justify-content: center;
}

.service-title {
    margin-top: 30px;
    font-size: 18px;
    color: #c32a2c;

}

.efg {
    height: 600px;
    margin: 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    /* max-width: 95%; */
}

main#carousel {
    grid-row: 1 / 2;
    grid-column: 1 / 8;
    width: 100vw;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 600px;
    --items: 5;
    --middle: 3;
    --position: 1;
    pointer-events: none;
}

.item {
    position: absolute;
    width: 300px;
    height: 400px;
    --r: calc(var(--position) - var(--offset));
    --abs: max(calc(var(--r) * -1), var(--r));
    transition: all 0.25s linear;
    transform: rotateY(calc(-10deg * var(--r))) translateX(calc(-300px * var(--r)));
    z-index: calc((var(--position) - var(--abs)));
}

.item:nth-of-type(1) {
    --offset: 1;
}

.item:nth-of-type(2) {
    --offset: 2;
}

.item:nth-of-type(3) {
    --offset: 3;
}

.item:nth-of-type(4) {
    --offset: 4;
}

.item:nth-of-type(5) {
    --offset: 5;
}

input:nth-of-type(1) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

input:nth-of-type(1):checked~main#carousel {
    --position: 1;
}

input:nth-of-type(2) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

input:nth-of-type(2):checked~main#carousel {
    --position: 2;
}

input:nth-of-type(3) {
    grid-column: 4 /5;
    grid-row: 2 / 3;
}

input:nth-of-type(3):checked~main#carousel {
    --position: 3;
}

input:nth-of-type(4) {
    grid-column: 5 / 6;
    grid-row: 2 / 3;
}

input:nth-of-type(4):checked~main#carousel {
    --position: 4;
}

input:nth-of-type(5) {
    grid-column: 6 / 7;
    grid-row: 2 / 3;
}

input:nth-of-type(5):checked~main#carousel {
    --position: 5;
}

.whats-app {
    position: fixed;
    bottom: 20px;
    right: 15px;
    border-radius: 50px;
    text-align: center;
    z-index: 100;
}

.whats-app img {
    width: 50px;
}

.phone {
    position: fixed;
    bottom: 20px;
    left: 15px;
    border-radius: 50px;
    text-align: center;
    z-index: 100;
    display: none;
}

.phone img {
    width: 50px;
}

.my-float {
    margin-top: 16px;
}

@media (max-width: 767px) {
    .whats-app {
        display: block;
    }

    .pickup-btn {
        display: none;
    }

    .pickup-btn1 {
        display: flex;
        justify-content:center;
        align-items:center;
    }

    .phone {
        display: block !important;

    }

    .hut {
        display: none;
    }

    .text {
        display: none;
    }

    .bad {
        width: 90%;
    }

    .logo {
        text-align: center;
        justify-content: center;
    }

    .list-btn button {
        width: 100%;
        background: #c32a2c;
        color: white;
        border: none;
        padding: 7px 35px;
        font-size: 18px;
        margin-right: 20px;
        font-weight: 600;
    }

    .choose-list {
        padding-top: 30px;
        display: block;
        padding-bottom: 30px;
    }
}