* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
:root {
    --purple: #92278f;
    --orange: #f9921e;
}


body {
    margin: 0;
    font-size: 1rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

h1 {
    font-size: 72px;
    font-weight: 700;
    font-style: normal;
}

h2 {
    font-size: 42px;
    font-weight: 600;
    font-style: normal;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;

}


/* BUTTONS */
a {
    padding: 15px 35px;
    font-size: 14px;
    text-transform: uppercase;
    color: #f8f8f8 !important;
    background: var(--purple);
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
    -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: var(--orange);
}

.buttons .orange {
    -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;
    background: var(--orange);
}
.buttons .orange:hover {
    background: var(--purple) !important;
}




/* HERO IMAGE */
.hero-banner {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url(../images/sydney-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.6); 
    z-index: -1; 
}

.hero-details .details {
    color: #fff;
    width: 60%;
}

.hero-details .details h1 {
    font-size: 72px;
}

.hero-details .details .orange{
    color: var(--orange);
}

.hero-details .details p {
    margin-top: 20px;
}

.hero-details .buttons {
    display: flex;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}


.hero-details .buttons img {
    width: 200px;
}

.hero-details .buttons a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-details .buttons svg {
    font-size: 16px;
    font-weight: bold;
}


/* 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: -60px;
    z-index: 99;
}

.review-container .review-details {
    display: flex;
    width: 380px;
    background: #fff;
    padding: 30px;
    border: 1px solid #eaebf0;
    align-items: center;
    gap: 20px;
    border-radius: 3px;
    transition: .3s cubic-bezier(.24, .74, .58, 1);
}



.review-container .review-details:hover {
    -webkit-transform: translateY(-17px);
    -khtml-transform: translateY(-17px);
    -moz-transform: translateY(-17px);
    -ms-transform: translateY(-17px);
    -o-transform: translateY(-17px);
    transform: translateY(-17px);
    -webkit-box-shadow: 0 0 36px rgba(12,12,12,.12);
    -khtml-box-shadow: 0 0 36px rgba(12,12,12,.12);
    -moz-box-shadow: 0 0 36px rgba(12,12,12,.12);
    -ms-box-shadow: 0 0 36px rgba(12,12,12,.12);
    -o-box-shadow: 0 0 36px rgba(12,12,12,.12);
    box-shadow: 0 0 36px rgba(12,12,12,.12);
}

.review-container .review-details:hover:before {
    width: 100%;
    opacity: 1;
}

.review-container .review-details:before {
    content: '';
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    height: 4px;
    width: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: 0.3s cubic-bezier(0.24,0.74,0.58,1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1);
    background-color: var(--purple);
    position: absolute;
    bottom: 0;
}

.review-container .review-details h3 {
    color: var(--orange);
    margin-bottom: 5px;
}

.review-details .icon svg{
    font-size: 60px;
    color: var(--purple);
}



/* ABOUT CONTAINER */
.about-container {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative; 
    padding: 50px 0;
}

.about-container .about-details {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-container .about-details h2{
    color: var(--purple);
    margin-bottom: 20px;
}

.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 .orange {
    background: var(--orange);
}

.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;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
    object-fit: cover;
}




/* QUOTE CONTAINER */
.quote-container {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative; 
    background: #f8f8f8;
    padding: 75px 0;
}

.quote-container .row-details {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.quote-container .quote-row h2,  .quote-container .quote-row h3{
    text-align: center;
    color: var(--purple);
    position: relative;
}

.quote-container .quote-row h3 {
    padding-bottom: 15px;
}

.quote-container .quote-row h3:before {
    content: '';
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: var(--orange);
}

.quote-container .quote-row p {
    margin-top: 15px;
    font-size: 14px;
}

.quote-container .quote-details {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    width: 300px;
}


.quote-container .icon {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.quote-container .icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Background color of the circle */
    border-radius: 50%;
    box-shadow: 0 13px 25px rgba(46, 105, 255, .2);
    z-index: -1;
}

.quote-container .icon svg {
    font-size: 45px; /* Adjust icon size */
    color: var(--orange);
}

.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: 75px 0;
}

.services-container .details h2{
    color: var(--purple);
    position: relative;
    margin-bottom: 15px;
}

.services-details .services ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.services-details .services li {
    list-style-type: none;
    flex-basis: 45%;
}

.services-details .services li i {
    margin-right: 10px;
    color: var(--orange);
    font-weight: bold;
    font-size: 18px;
}


.services-details .buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


/* CLIENTS CONTAINER */
.clients-container {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative; 
    padding: 75px 0;
    background: #f8f8f8;
}

.clients-container .counter-details {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background: url(../images/map-gray.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center 80%;
    height: 400px;
    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;
  }
  
  .counter {
    font-size: 80px;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
    font-weight: 700;
    color: var(--purple);
  }

.counter-details .counter-container span {
    font-weight: normal;
    font-size: 20px;
    text-align: left;
    color: #000;
}


/* LOGO CONTAINER */
.logo-container {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative; 
    padding: 75px 0;
}

.logo-container .details h2 {
    color: var(--purple);
    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 {
    width: 100%;
    /* height: 100vh; */
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #14213d;
  }
  .testimonial-slide {
    padding: 20px;
  }
  .testimonial_box-top {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    position: relative;
    box-shadow: 5px 5px 20px rgba(229, 229, 229, 0.301);
  }
  .testimonial_box-icon {
    margin-top: -12px;
    padding-right: 20px;
  }
  .testimonial_box-icon i {
    font-size: 25px;
    color: #14213d;
  }
  .testimonial_box-text p {
    color: #707070;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
  }
  .testimonial_box-shape {
    position: absolute;
    bottom: -10px;
    left: 50px;
    width: 20px;
    height: 20px;
    background-color: #f8f8f8;
    -webkit-transform: rotateZ(50deg);
    transform: rotateZ(45deg);
  }
  .testimonial_box-bottom {
    padding-top: 35px;
    padding-left: 25px;
  }
  .testimonial_box-profile {
    display: flex;
  }
  .testimonial_box-img {
    display: flex;
    justify-content: center;
  }
  .testimonial_box-img img {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    border: 2px solid #e5e5e5;
    object-fit: contain;
  }
  .testimonial_box-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 20px;
  }
  .testimonial_box-name h4 {
    font-size: 20px;
    line-height: 25px;
    color: var(--purple);
    margin-bottom: 0;
  }
  .testimonial_box-job p {
    color: #000;
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 0;
    font-family: "Open Sans", Sans-serif;
    font-size: 14px;
    font-weight: 400;
  }
  
  .slick-dots li button:before {
    font-size: 10px !important;
    color: var(--purple) !important;
  }



  /* CTA CONTAINER */

  .cta-container {
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative; 
    padding: 75px 0;
    background: url(../images/sydney-cta.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    z-index: 1;
    
}

.cta-container .details {
    color: #fff;
  

}

.cta-container .cta-details {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    gap: 50px;

}


.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: -1; 
}

.cta-container:after {
    content: '';
    clip-path: polygon(44% 0, 100% 0, 100% 100%, 37% 100%);


    position: absolute;
    width: 90%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.cta-container .buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}



/* RESIDENTIAL AND COMMERCIAL */
.residential, .commercial {
    min-height: 40vh;
    padding: 50px 0;
}



/* RESPONSIVENESS */
@media (max-width: 1200px) {
    .container {
        padding: 15px;
    }

    .review-container {
        min-height: 40vh;
    }
}


@media (max-width: 992px) {
    .review-container {
        height: 60vh !important;
    }

    .about-container .about-details {
        flex-direction: column-reverse;
    }
}


@media (max-width: 768px)  {
    .about-container .about-details .image img {
        width: 450px;
    }

    .services-details .services li {
        flex-basis: 100%;
    }

    .counter {
        font-size: 40px;
    }

    .clients-container {
        min-height: 100vh;
    }
}

@media (max-width: 480px) {
    .about-container .about-details .image img {
        width: 350px;

    }

    h1 {
        font-size: 50px !important;
    }

    h2 {
        font-size: 30px !important;
    }
}