* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.contact-us-hero-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-us-hero-section .page-details {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.page-details h1 {
    margin: 0;
    color: var(--secondary-color);
    justify-self: center;
    font-size: 2.5rem;
    text-align: center;
}

.page-details p {
    width: 60vw;
    text-align: center;
}

.page-details a {
    border: none;
    padding: 1rem 1.8rem;
    background-color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 500;

}

.page-details a {
    text-decoration: none;
    color: inherit;
}

.page-details a:hover {
    background-color: var(--clr-1);
    cursor: pointer;
}

/* Slider Container */
.rotate-services-card {
    overflow: hidden;
    position: relative;
    /* border-radius: 1rem; */
    margin-top: -7rem;
}


@keyframes rotate-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.rotate-service-item {

    background-color: #e5d0c8;
    text-align: center;
    border: 1px solid white;
}

.rotate-service-item h2 {
    color: #9c7883;
    font-size: 44px;
    font-weight: 500;
}

.rotate-service-item i {
    font-size: 40px;
    color: #7a5676;
    margin-top: 1.6rem;
    margin-bottom: 0.6rem;
}

.rotate-service-item h3 {
    color: black;
    font-size: 1.6rem;
    font-weight: 400;
}

/* About Us Section */
.about-us {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
}

.about-us h3 {
    font-size: 2.4rem;
    font-weight: 500;
    border-bottom: 2px solid var(--primary-color);
}

.about-us .about-us-column {
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.about-us-column p {
    text-align: center;
    color: rgb(68, 68, 68);
}

.about-us-column .list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.list .list-item {
    width: 40%;
    padding: .4rem .6rem;
    display: flex;
    align-items: center;
    color: black;
    gap: .6rem;
    background-color: rgb(238, 236, 236);
}

.list-item img {
    width: 1.6rem;
}

/* Service Section */
.services-section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.services-section .row {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 33;
}

.services-section .row::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-lighter-color);
    z-index: -33;
}

.services-section .tinting {
    background-image: url('../images/car-tinting-1.jpg');
}

.services-section .protection {
    background-image: url('../images/car\ ppf.jpg');
}

.services-section .wrapping {
    background-image: url('../images/car-wrap.avif');
}

.row .rounded-shape {
    width: 24rem;
    border: 4px solid white;
    border-top-left-radius: 8rem;
    border-top-right-radius: 3rem;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 4rem;
    transform: rotateZ('30');
}

.row .info {
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.row .info h4 {
    font-size: 2.4rem;
    text-transform: uppercase;
    color: white;
}

.row .info p {
    color: var(--clr-1);
}

.row .info a {
    color: white;
    text-decoration: none;
}


/* Responsive Styles */
@media (max-width: 1200px) {
    .services-section .row {
        flex-direction: column;
        gap: 2rem;
    }



    .row .info {
        width: 100%;
        order: 3;
        padding: 32px 0;
    }

    .row .rounded-shape {
        order: 2;
        margin: 20px 0px;
    }
}

@media (max-width: 768px) {
    .services-section .row {
        padding: 2rem 1rem;
        gap: 1rem;
    }



    .row .info h4 {
        font-size: 2rem;
    }

    .row .info p {
        font-size: 1rem;
    }

    .row .info a {
        font-size: 1rem;
    }


}

@media (max-width: 480px) {
    .services-section {
        width: 100%;
    }

    .services-section .row {
        padding: 1rem;
        gap: 1rem;
    }

    .row .info {
        width: 100%;
        text-align: center;
    }

    .row .info h4 {
        font-size: 1.8rem;
    }

    .row .info p {
        font-size: 0.9rem;
    }

    .row .info a {
        font-size: 0.9rem;
    }


}

/* Who We Are Section */
.who-we-are-section {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: var(--secondary-color);
}

.who-we-are-section h3 {
    font-size: 1.6rem;
    font-weight: 500;
    border-bottom: 2px solid var(--primary-color);
}

.who-we-are-section .row {
    display: flex;
    justify-content: center;
    gap: 8rem;
}

.content .skill-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0px;
}

.skill-list .skill {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skill>img {
    width: 1.6rem;
}

.content a>button {
    border: none;
    color: white;
    background-color: var(--primary-color);
    padding: .6rem 1.6rem;
}

.content a>button:hover {
    background-color: var(--primary-light-color);
}





/* Responsive breakpoints */
@media (max-width: 1024px) {
    .who-we-are-section .row {
        gap: 4rem;
        /* Reduce gap on medium screens */
    }
}

@media (max-width: 768px) {
    .who-we-are-section .row {
        flex-direction: column;
        /* Stack items vertically */
        gap: 2rem;
    }

    .row .img-container {
        width: 100%;
    }

    .row .content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .who-we-are-section {
        padding: 2rem;
    }

    .who-we-are-section h3 {
        font-size: 1.4rem;
        /* Smaller font size on small screens */
    }

    .row .content {
        width: 100%;
    }

    .row .img-container img {
        max-width: 100%;
        /* Full width on mobile */
    }

    .content a>button {
        padding: .4rem 1.2rem;
        /* Smaller padding on mobile */
    }
}


/* Client Review Section */
.reviews-section {
    position: relative;
    margin: 4rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.reviews-section h3 {
    font-size: 2.4rem;
    font-weight: 500;
}

.reviews-section .review-slider {
    width: 70vw;
    overflow: hidden;
}

.reviews-section .reviews {
    display: flex;
    width: 500%;
    transition: transform 0.5s ease;
}

.reviews .review {
    width: 20%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review .quote-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
}

.review .quote-row svg {
    width: 3.2rem;
    fill: var(--primary-color);
    align-self: flex-end;
}

.quote-row svg:first-child {
    align-self: flex-start;
}

.quote-row p {
    text-align: center;
}

.reviews-section .client-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
}

.client-details img:first-child {
    width: 6rem;
    height: 6rem;
    margin-bottom: .4rem;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}

/* Review Slider Navigation */
.reviews-section .navigations {
    position: absolute;
    top: 50%;
    width: 90%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.reviews-section .navigations>img {
    width: 6rem;
    opacity: 0.7;
    cursor: pointer;
    transition: all 200ms ease-in;
}

.reviews-section .navigations>img:hover {
    transform: scale(1.2);
}

/* /////// why choose us */
/* /////// why choose us */
.why-choose-us-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    background-color: #e0e0e0;
    padding: 30px 10%;
    gap: 30px;
    color: var(--primary-color);
}

.circle-section {

    width: 375px;
    /* Fixed circle width */
    height: 375px;
    /* Same height as width to maintain a circle shape */
    border-radius: 50%;
    background: radial-gradient(circle at top left, #552157, #bb4c70, #c2649a);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

.circle-section h2 {
    font-size: 2em;
    margin: 0;
    font-weight: 700;
}

.circle-section p {
    font-size: 1em;
    margin: 15px 30px;
}

.info-items-container {
    flex: 2;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--primary-color);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 66px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0e0e0;
    color: var(--primary-color);
    /* font-size: 1.8em; */
    transition: background-color 0.3s, color 0.3s;
}

.info-item:hover .info-icon {
    background-color: var(--primary-color);
    color: white;
}

.info-item h3 {
    margin: 0;
    font-size: 1.3em;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    color: #666;
    font-size: 0.95em;
}

.page-details p {
    width: 81%;
    text-align: center;
    font-size: 16px;
    line-height: 21px;
}

@media (max-width: 1037px) {
    .contact-us-hero-section .page-details {
        color: white;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        margin-top: 85px;
    }

    .contact-us-hero-section .page-details a {
        color: #522157;
    }
}


@media (max-width: 940px) {
    .page-details span {
        display: none;
    }

    .page-details h1 {
        text-align: center;
        font-size: 34px;
    }

    .contact-us-hero-section .page-details {

        margin-top: 147px;
    }
}

@media screen and (max-width: 840px) {
    .contact-us-hero-section .page-details {
        margin-top: -52px;
    }

    .contact-us-hero-section {

        height: 80vh;

    }
}


@media (max-width: 768px) {
    .why-choose-us-container {
        flex-direction: column;
        align-items: center;
    }

    .circle-section {
        width: 325px;
        height: 325px;
    }


    .info-items-container {
        width: 100%;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-item h3 {
        font-size: 1.2em;
    }

    .info-item p {
        font-size: 0.9em;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
}


@media (max-width: 585px) {
    .page-details h1 {
        font-size: 1.5em;
        margin: 0px 22px;
    }

    .reviews-section .navigations>img {
        width: 3rem;

    }

    .page-details p {
        width: 81%;
        text-align: center;
        font-size: 14px;
        line-height: 21px;
    }

    .reviews-section .review-slider {
        width: 90vw;
        overflow: hidden;
    }

    .reviews-section .navigations {

        width: 100%;
    }
}

@media (max-width: 487px) {
    .contact-us-hero-section .page-details {
        margin-top: -85px;
    }

    .contact-us-hero-section {
        height: 83vh;
    }
}

@media (max-width: 480px) {
    .circle-section h2 {
        font-size: 1.5em;
    }

    .circle-section p {
        font-size: 0.8em;
    }

    .info-item h3 {
        font-size: 1.1em;
    }

    .info-item p {
        font-size: 0.85em;
    }

    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }
}


@media (max-width: 429px) {
    .row .rounded-shape {
        width: 19rem;

    }

}

@media (max-width: 391px) {
    .row .rounded-shape {
        width: 19rem;

    }

}

@media (max-width: 394px) {
    .circle-section {
        width: 270px;
        height: 270px;
    }

}

@media (max-width: 349px) {
    .circle-section {
        width: 270px;
        height: 270px;
    }

    .reviews-section h3 {
        font-size: 1.4rem;
        font-weight: 500;
    }

    .row .rounded-shape {
        width: 15rem;

    }

    .reviews-section .review-slider {
        width: 73vw;
        overflow: hidden;
    }

}


#hero-section {
    animation: scaleDown 1.5s ease-in-out forwards;
}

#header {
    animation: fadeTop 1.5s ease-in-out forwards;
}

#footer {
    animation: fadeTop 1.5s ease-in-out forwards;
}

#rotate-silder-animation {
    animation: fadeDown 1.5s ease-in-out forwards;
}

#about-us-section {
    animation: fadeLeft 1.5s ease-in-out forwards;
}

#services-section {
    animation: fadeRight 1.5s ease-in-out forwards;
}

#who-we-are-section {
    animation: fadeLeft 1.5s ease-in-out forwards;
}

#why-choose-us-container {
    animation: fadeRight 1.5s ease-in-out forwards;
}

#reviews-section {
    animation: fadeLeft 1.5s ease-in-out forwards;
}