* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
:root {
    --blue: #004067;
    --sky-blue: #61bcda;
}


body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    color: #040f16;
    text-align: left;
    background-color: #fff;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

p {
    margin: 0 0 20px 0;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-size: 72px;
    font-weight: 600;
    font-style: normal;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    font-style: normal;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1240px;
}


/* BUTTONS */
a {
    padding: 15px 35px;
    font-size: 16px;
    text-transform: capitalize;
    color: #f8f8f8 !important;
    background: var(--blue);
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    -webkit-transition: 240ms linear;
    -khtml-transition: all 240ms linear 0ms;
    -moz-transition: 240ms linear;
    -ms-transition: 240ms linear;
    -o-transition: 240ms linear;
    transition: all 240ms linear 0s;
}

a:hover {
    background: #fff;
    color: var(--sky-blue) !important;
}

.subtitle {
    font-size: 18px;
    color: var(--sky-blue);
    font-weight: 500;
}


.buttons .white {
    background: #fff;
    color: var(--sky-blue) !important;
}

.buttons .white:hover {
    background: var(--blue) !important;
    color: #fff !important;
}


.fa-angle-right {
    font-size: 14px;
}


/* HERO IMAGE */
.hero-banner {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url(../images/bbq-hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative; 
    z-index: 1;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    z-index: -1; 
}

.hero-details .details {
    color: #fff;
    width: 100%;
}

.hero-details .details h1 {
    font-size: 80px;
}

.hero-banner .services ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 20px;
    flex-direction: column;
}

.hero-banner .services li {
    list-style-type: none;
}

.hero-banner .services li i{
    margin-right: 5px;
}

.hero-details .details p {
    margin-top: 20px;
}

.hero-details .buttons {
    display: flex;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 20px;
}


.hero-details .buttons a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-details .buttons i {
    font-size: 14px;
}

.hero-details .logos {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.hero-details .logos img {
    width: 150px;
    object-fit: contain;
}


/* REVIEW CONTAINER */
.review-container {
    min-height: 20vh;
    display: flex;
    align-items: center;
    position: relative; 
}

.review-container .container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: absolute;
    right: 0;
    left: 0;
    top: -100px;
    z-index: 99;
}

.review-container .review-details {
    display: flex;
    width: 400px;
    background: #fff;
    padding: 60px 25px 55px 25px;
    box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 8%);
    align-items: center;
    gap: 20px;
    border-radius: 5px;
    transition: 0.5s ease;
    flex-direction: column;
    justify-content: center;
}

.review-container .review-details i {
    font-size: 54px;
    color: var(--sky-blue);
}



.review-container .review-details:hover {
    transform: translateY(-10px);
    background-color: var(--sky-blue);
}

.review-container .review-details:hover i,
.review-container .review-details:hover h3 {
    color: #fff;
}

.review-container .review-details:hover:before {
    width: 100%;
    opacity: 1;
}



.review-container .review-details h3 {
    color: var(--blue);
    margin-bottom: 5px;
    font-size: 22px;
    text-align: center;
    line-height: 34px;
    font-weight: 600;
}





/* ABOUT CONTAINER */
.about-container {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative; 
    padding: 80px 0 100px 0;
}

.about-container .about-details {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-container .about-details h2{
    color: var(--blue);
    margin-bottom: 20px;
    margin-top: 15px;
}

.about-container .about-details .buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-details .buttons a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-details .buttons .white {
    background: #F7F7F7;
}

.about-details .services ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.about-details .services li {
    list-style-type: none;
}

.about-details .services li i{
    margin-right: 5px;
    color: var(--blue);
}

.about-container .about-details .details, .about-container .about-details .image {
    flex: 1;
}

.about-container .about-details .image img {
    width: 550px;
    border-radius: 20px 20px 20px 20px;
    object-fit: cover;
}

.commercial-services {
    padding-top: 100px;
}

.commercial-services h2 {
    font-size: 54px;
    color: var(--blue);
    text-align: center;
}

.commercial-services .details {
    text-align: center;
}

.commercial-services .services-container {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 20px 0;
    /* gap: 20px; */
}

.services-container .services-row {
    height: 100%;
    padding: 29px 40px 0px 40px;
}

.services-container .services-row h2 {
    font-size: 28px;
    text-align: center;
    line-height: 36px;
}

.services-container .services-row img {
    width: 100%;
    height: 210px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.services-container .services-row img:hover {
    transform: scale(1.1);
}

/* QUOTE CONTAINER */
.quote-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: #f8f8f8;
    padding: 75px 0;
    background: url(../images/carpet-cleaning.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative; 
    z-index: 1;
}


.quote-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 64, 103, 0.8); 
    z-index: -1;
}

.quote-container .row-details {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.quote-container .quote-row h2,  .quote-container .quote-row h3{
    text-align: center;
    color: #fff;
    position: relative;
}

.quote-container .quote-row h3 {
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-weight: 600;
}



.quote-container .quote-row p {
    margin-top: 15px;
    font-size: 16px;
    color: #fff;
    width: 280px;
}

.quote-container .quote-details {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    width: 300px;
}


.quote-container .icon {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: 0.45s ease;
}

.quote-container .icon i {
    font-size: 48px;
    color: var(--sky-blue);
    transition: 0.45s ease;
}

.quote-container .icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Background color of the circle */
    border-radius: 50%;
    box-shadow: 0px 13px 14px 0px rgba(230, 230, 230, 0.52);
    z-index: -1;
    transition: 0.45s ease;
}

.quote-container .quote-details:hover .icon::before {
    background-color: var(--sky-blue); /* Change to red on hover */
    z-index: -1;
}


.quote-container .quote-details:hover .icon i {
   color: #fff;
   font-size: 54px;
}


.quote-container .buttons {
    display: flex;
    gap: 20px;
    padding-top: 50px;
    justify-content: center;
    flex-wrap: wrap;
}




/* SERVICES CONTAINER */

.services-container {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative; 
    padding: 50px 0;
}

.services-container .details h2{
    color: var(--blue);
    position: relative;
    margin-bottom: 15px;
}

.services-details .services ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    flex-direction: column;
}

.services-details .services li {
    list-style-type: none;
    display: flex;
    align-items: flex-start;
    font-size: 18px;
}

.services-details .services li i {
    margin-right: 10px;
    color: var(--blue);
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
}


.services-details .buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


/* CLIENTS CONTAINER */
.clients-container {
    min-height: 35vh;
    display: flex;
    align-items: center;
    position: relative; 
    padding: 20px 0;
    background: url(../images/cta.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative; 
    z-index: 1;
}


.clients-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 64, 103, 0.8); 
    z-index: -1;
}

.clients-container .counter-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.clients-container .details h2 {
    color: var(--purple);
}

.clients-container .details {
    text-align: center;
}

.counter-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 30px 50px;
    gap: 30px;
  }
  
  .counter {
    font-size: 72px;
    font-family: 'Roboto', sans-serif;
    margin-top: 10px;
    font-weight: bold;
    color: #fff;
  }

.counter-details .counter-container span {
    font-weight: normal;
    font-size: 19px;
    text-align: center;
    color: #fff;
}


/* LOGO CONTAINER */
.logo-container {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative; 
    padding: 75px 0;
    background: #fdfdfd;
}

.logo-container .details h2 {
    color: var(--blue);
    text-align: center;
}

.logo-container .logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;

}

.logo-container .logos img:hover {
    margin-top: -10px;
}

.logo-container .logos img {
    height: 180px;
    object-fit: contain;
    box-shadow: 0 0 15px rgba(10, 50, 229, .19);
    transition: .5s ease;
}



/* TESTIMONIALS */
.testimonial-section {
    margin: auto;
    text-align: center;
}

.testimonial-heading {
    color: var(--blue);
    font-size: 36px;
   
}

.testimonial-box {
    background: #F6F9FE;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    position: relative;
    z-index: 1;
    margin-top: 80px;
    padding: 80px 72px 35px;
    text-align: center;
    border-radius: 4px;
    box-shadow: rgba(222, 222, 222, 0.3) 0px 0px 5px 0px;
}


.quote-icon {
    font-size: 40px;
    color: #0a3354;
    background: var(--sky-blue);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: auto;
    line-height: 82px;
}

.testimonial-text {
    font-size: 16px;
    color: #040f16;
    margin: 15px 0;
}

.testimonial-name h4{
    font-weight: 600;
    color: var(--blue);
    margin-top: 10px;
    font-size: 22px;
}

.stars {
    color: #ff6f00;
    font-size: 16px;
    margin-top: 8px;
}


.slick-dots {
    text-align: center;
    margin-top: 20px; /* Space between slider and dots */
    list-style: none;
    padding: 0;
}


.custom-dots {
    text-align: center;
    margin-top: 20px; 
}


.custom-dots span {
    display: inline-block;
    width: 18px; 
    height: 8px; 
    margin: 0 5px;
    background-color: #cfd6e4; 
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.custom-dots span.active {
    background-color: var(--sky-blue); 
    width: 22px; 
}








  /* CTA CONTAINER */

  .faq-container {
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative; 
    padding: 75px 0;

    
}

.faq-container .details h2 {
    color: var(--blue);

}

.faq-container .faq-details .buttons{
    display: flex;
    gap: 20px;
}
.faq-container .faq-details .buttons .white {
    background: #F7F7F7;
}

/* FAQ Accordion Container */
.faq-accordion {
    margin: 30px 0;
}

/* Accordion Item */
.accordion-item {
    border-bottom: 1px solid #ddd;
}

/* Accordion Title */
.accordion-title {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.accordion-title i {
    font-size: 18px;
    margin-right: 10px; /* Space between caret and title */
    transition: transform 0.3s ease;
}

.accordion-title span {
    font-size: 16px;
    font-weight: bold;
}

/* Rotate caret when active */
.accordion-item.active .accordion-title i {
    transform: rotate(90deg);
}

/* Accordion Content */
.accordion-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Adjust based on content */
    padding: 15px;
}

.cta-container .buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}



/* RESIDENTIAL AND COMMERCIAL */
.bbq-cleaning-process {
    min-height: 30vh;
    padding: 50px 0;
}



/* RESPONSIVENESS */
@media (max-width: 1200px) {
    .container {
        padding: 15px;
    }

    .review-container {
        min-height: 40vh;
    }
}


@media (max-width: 992px) {
    .review-container {
        height: 100vh !important;
    }

    .review-container .container {
        top: 0;
        padding: 50px 0;
    }

    .about-container .about-details {
        flex-direction: column-reverse;
    }

    .commercial-services .services-container {
        grid-template-columns: 1fr 1fr;
     
    }
}


@media (max-width: 768px)  {
    .about-container .about-details .image img {
        width: 450px;
    }

    .services-details .services li {
        flex-basis: 100%;
    }

   

    .clients-container {
        min-height: 100vh;
    }

    .commercial-services .services-container {
        grid-template-columns: 1fr;
     
    }
}

@media (max-width: 480px) {
    .about-container .about-details .image img {
        width: 350px;

    }

    h1 {
        font-size: 50px !important;
    }

    h2 {
        font-size: 30px !important;
    }
}