:root {
    --_size: 1.6rem;
    --_font-default: "Poppins", sans-serif;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

button:active,
button:focus {
    outline: none !important;
}

button::-moz-focus-inner {
    border: 0 !important;
}

input::-moz-focus-inner {
    border: 0 !important;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    -webkit-tap-highlight-color: #ff8159;
}

/* input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: #ff8159;
} */

::-moz-selection {
    background-color: #e93765;
    color: var(--t-medium);
    /* text-shadow: none; */
}

::selection {
    background-color: #e93765;
    color: var(--t-medium);
    /* text-shadow: none; */
}

html {
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    position: relative;
    width: 100%;
    min-width: 360px;
    overflow-x: unset !important;
    font: normal 400 var(--_size) / 1.4 var(--_font-default);
    text-rendering: optimizeLegibility;
    background-color: #f5f7fa;
}

section {
    position: relative;
    min-width: 360px;
}

a {
    text-decoration: none;
    outline: 0;
    color: unset;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

.overflow-hidden {
    overflow: hidden !important;
}

.components {
    position: relative;
}

.components__item {
    position: relative;
    padding: 8rem 10%;
    border-bottom: 1px solid var(--stroke-elements);
}

.components__caption {
    display: block;
    font: normal 400 1.3rem/1 var(--_font-default);
    color: var(--t-medium);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
}

.spacer {
    height: 2.6rem;
}

.spacer-xl {
    height: 100px;
}

ul {
    margin-bottom: unset;
    padding-left: unset;
}

header {
    background-color: #f5f7fa;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    padding-left: 3rem;
    padding-right: 3rem;
}

@media only screen and (max-width: 800px) {
    nav {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.nav-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    /* border: 1px solid black; */
}

@media only screen and (max-width: 800px) {
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

#burger-icon {
    width: 60px; /* Adjust size as needed */
    height: 60px; /* Adjust size as needed */
    border-radius: 50%; /* Makes the element circular */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px); /* Adjust the blur intensity as needed */
    background-color: rgba(
        255,
        255,
        255,
        0.3
    ); /* Semi-transparent background */
    border: none; /* Remove border */
    cursor: pointer;
    transition: background-color 0.3s ease;
    /* border: 1px solid black; */
    position: fixed;
    z-index: 1000;
    right: 1rem;
    display: none;
}

@media only screen and (max-width: 800px) {
    #burger-icon {
        display: flex;
        -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.096);
        -moz-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.11);
        box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.096);
    }
}

#burger-icon:hover {
    background-color: rgba(
        255,
        255,
        255,
        0.5
    ); /* Change background color on hover */
}

#burger-icon i {
    font-size: 2.6rem;
    color: #ff8159;
}

.logo img {
    width: 300px;
}

@media only screen and (max-width: 800px) {
    .logo img {
        width: 200px;
    }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.large-menu {
    display: flex;
    justify-content: center;
}

.nav-phone {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f5f7fa;
    height: 100vh;
    width: 100%;
    z-index: 1;
    display: none;
}

.nav-phone-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-out;
    transform: translateY(-100%);
}

.nav-phone ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.6rem;
}

a {
    text-decoration: none;
    outline: 0;
    color: unset;
}

ul {
    margin-bottom: unset;
    padding-left: unset;
}

.phone-menu {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10rem;
    font-size: 2rem;
    font-weight: 500;
}

.phone-menu .button1 {
    font-size: 1.6rem;
    /* background-color: #e93765; */
    color: #ffff;
    /* border-color: #e93765; */
}

.nav-phone.active {
    display: block;
}

.nav-phone.active .nav-phone-wrapper {
    transform: translateY(0);
}

@media only screen and (max-width: 800px) {
    .large-menu {
        display: none;
    }

    nav .button1 {
        display: none;
    }
}

.large-menu a {
    font-size: 1.4rem;
    font-weight: 500;
}

.nav-action {
    display: flex;
    justify-content: flex-end;
}

.button1 {
    color: #fff;
    background-color: #ff8159;
    padding: 1.1rem 2.4rem;
    border-radius: 10px;
    width: fit-content;
    font-size: 1.4rem;
}

.button1:hover {
    background-color: #0c1524;
    color: #fff;
    transition: 0.2s ease-in-out;
}

.button2 {
    border: 1px solid transparent;
    background-color: #e93765;
    color: #fff;
    padding: 1rem 2.8rem;
    border-radius: 200px;
    width: fit-content;
    font-size: 1.4rem;
}

.button2:hover {
    background-color: transparent;
    border: 1px solid #e93765;
    color: #e93765;
    transition: 0.2s ease-in-out;
}

/* ------------------------------------------------*/
/* Banner Styles Start */
/* ------------------------------------------------*/
.banner {
    padding-top: 200px;
}

@media only screen and (max-width: 800px) {
    .banner {
        padding-top: 140px;
    }
}

.banner button {
    border: none;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 500;
}

.banner-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

@media only screen and (max-width: 800px) {
    .banner-wrapper {
        flex-direction: column;
    }
}

.banner .badge {
    background-color: #fff1ec;
    padding: 1rem 1.4rem;
    font-size: 1.4rem;
    width: fit-content;
    font-weight: 500;
}

.banner-btns {
    display: flex;
    gap: 10px;
}

.banner-btns button:nth-child(2) {
    background-color: #fff;
    color: #000;
    border: 1px solid rgb(226, 225, 225);
}

.banner-left h1 {
    font-size: 7.6rem;
    max-width: 700px;
}

@media only screen and (max-width: 800px) {
    .banner-left h1 {
        font-size: 2.6rem;
        max-width: unset;
    }
}

.banner-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.banner img {
    width: 600px;
    margin-top: -60px;
}

@media only screen and (max-width: 800px) {
    .banner img {
        width: 100%;
    }
}

.banner p {
    font-size: 1.8rem;
    max-width: 580px;
}

@media only screen and (max-width: 800px) {
    .banner-left p {
        font-size: 1.4rem;
        max-width: unset;
    }
}

/* ------------------------------------------------*/
/* Banner Styles ends */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* services Styles Start */
/* ------------------------------------------------*/
.services {
    background-color: #0c1524;
    color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

.services-box {
    background-color: #ff8159;
    color: #fff;
    border-radius: 10px;
    padding: 3rem;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.services-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}

@media only screen and (max-width: 800px) {
    .services-header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 100px;
    }
}

.services-header i {
    font-size: 3.6rem;
}

.services-header h2 {
    font-size: 2.6rem;
    font-weight: 500;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 40px;
    justify-content: center; /* Center the grid container */
    text-align: center; /* Center text content */
    margin-top: 80px;
}

@media only screen and (max-width: 800px) {
    .service-list {
        grid-template-columns: 1fr;
        margin-top: 80px;
        padding-bottom: 40px;
    }
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content within each item */
    text-align: center;
}

.service-list-header {
    font-size: 4.6rem;
    max-width: 800px;
    margin: auto;
    font-weight: 500;
}

.service-item p {
    color: #d4dbe5;
    font-size: 1.4rem;
}

.service-item i {
    font-size: 3.4rem;
}

.services .badge {
    background-color: #232b39;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1rem 1.4rem;
    margin-bottom: 20px;
}
/* ------------------------------------------------*/
/*  services Styles ends */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/*  about Styles starts */
/* ------------------------------------------------*/
.about {
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
}
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 800px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}

.about h1 {
    font-size: 4.6rem;
}

@media only screen and (max-width: 800px) {
    .about h1 {
        font-size: 2.6rem;
    }
}

.about .badge {
    background-color: #ffefea;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1rem 1.4rem;
    width: fit-content;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about img {
    border-radius: 10px;
}

.about ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about ul li {
    font-size: 2rem;
    font-weight: 500;
}

.about p {
    max-width: 550px;
}

.about i {
    margin-right: 10px;
}

.about button {
    border: none;
}

/* ------------------------------------------------*/
/*  about Styles ends */
/* ------------------------------------------------*/

.nav-link.btn {
    margin-left: 10px;
}

.accordion-button {
    /* background-color: #81c784; */
    background-color: #ffff;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    padding-top: 20px;
    padding-bottom: 20px;
}

.accordion-button:not(.collapsed) {
    /* background-color: #81c784; */
    background-color: #f5f7fa;
    color: #000;
}

.accordion-button:hover,
.accordion-button:focus {
    background-color: #ffff;
    color: #000;
}

.accordion-body {
    background-color: #ffff;
    padding-top: 20px;
    padding-bottom: 20px;
}

.faqs {
    margin-top: 200px;
    margin-bottom: 100px;
}

.faqs h1 {
    font-size: 4.6rem;
    color: #000;
    font-weight: 500;
    margin-bottom: 50px;
}

.about-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.accordion-button::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23000000' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px; /* Adjust the size of the icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    position: absolute;
    right: 1rem; /* Position the icon */
    width: 24px; /* Increase the width */
    height: 24px; /* Increase the height */
}

.accordion-button:not(.collapsed)::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23000000' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px; /* Adjust the size of the icon */
}

/* ------------------------------------------------*/
/*  contact Styles starts */
/* ------------------------------------------------*/
.map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 20px;
    font-weight: 400;
    background-color: #f5f7fa;
    padding: 40px;
    border-radius: 10px;
}

@media only screen and (max-width: 900px) {
    form {
        background-color: #f5f7fa;
        padding: 20px 10px;
    }
}
.contact-us h1 {
    font-size: 4.6rem;
    font-weight: 500;
}

.contact-us input {
    padding: 10px;
    /* background: transparent !important; */
    border: 1px solid rgb(219, 219, 219);
    font-size: 1.6rem;
}

.contact-us textarea {
    padding: 10px;
    /* background: transparent !important; */
    border: 1px solid rgb(219, 219, 219);
    font-size: 1.6rem;
}

.contact-us label {
    margin-bottom: 5px;
    font-size: 1.6rem;
    font-weight: 500;
}

.contact-us {
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
}

iframe {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}
.contact-us button {
    background-color: #ff8159 !important;
    color: #fff !important;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 500;
    border: none;
}

.contact-us .badge {
    background-color: #ffefea;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1rem 1.4rem;
    width: fit-content;
    border-radius: 20px;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* ------------------------------------------------*/
/*  contact Styles ends */
/* ------------------------------------------------*/

footer {
    background-color: #0c1524;
}

footer img {
    width: 400px;
}

@media only screen and (max-width: 800px) {
    footer img {
        width: 300px;
        margin: auto;
    }
}

footer .container {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
}

footer ul a {
    text-decoration: none;
    color: unset;
    font-size: 14px;
}

/* ------------------------------------------------*/
/* Block testimonials Styles starts */
/* ------------------------------------------------*/
#testimonial {
    margin-bottom: 100px;
}

@media only screen and (max-width: 800px) {
    #testimonial {
        margin-bottom: 40px;
    }
}

.testimonial-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

@media only screen and (max-width: 800px) {
    .testimonial-name {
        align-items: unset;
        flex-direction: column;
    }
}

.testimonial {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #000;
    border-radius: 10px;
    background-color: transparent;
    margin-bottom: 20px;
    min-height: 320px;
}

@media only screen and (max-width: 800px) {
    .testimonial {
        min-height: 420px;
    }
}

.testimonial-text .quote-mark {
    font-size: 3rem;
    /* color: #1dbf73; */
    margin-bottom: 10px;
}

.testimonial-text p {
    font-size: 1.4rem;
    color: #333;
}

.testimonial-head h1 {
    text-align: center;
    margin-bottom: 7rem;
    font-size: 4.6rem;
}

@media only screen and (max-width: 800px) {
    .testimonial-head h1 {
        font-size: 2.6rem;
    }
}

.projects-nav i {
    font-size: 3rem;
    color: #000;
}

.projects-nav i:hover {
    color: #000000;
}

.projects-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.testimonial-wrapper {
    /* max-width: 800px; */
    width: 100%;
    overflow: hidden;
    margin: auto;
}

.testimonial-swiper-button-prev,
.testimonial-swiper-button-next {
    border: 1px solid #000;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: background-color 0.3s ease-out;
}
.testimonial-swiper-button-prev:hover,
.testimonial-swiper-button-next:hover {
    background-color: #ff8159;
}

/* ------------------------------------------------*/
/* Block testimonials Styles ends */
/* ------------------------------------------------*/

@media only screen and (max-width: 900px) {
    .solutions .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solutions h1 {
        margin-bottom: 20px;
        font-size: 32px;
        margin-top: 30px;
    }

    .about-us {
        margin-top: 50px;
    }

    .about-us h1 {
        font-size: 32px;
    }
    .about-us p {
        font-size: 16px;
    }
    .about-img {
        height: fit-content;
    }

    .faqs {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .faqs h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .services h1 {
        margin-bottom: 20px;
        font-size: 32px;
    }
    .services {
        padding-top: 50px;
        padding-bottom: 0;
    }

    .map-section {
        grid-template-columns: 1fr;
        gap: 30px;
        /* align-items: center; */
    }

    .contact-us h1 {
        font-size: 32px;

        margin-bottom: 20px;
    }
    iframe {
        height: 300px;
    }
    form {
        gap: 10px;
    }

    footer .container {
        flex-direction: column;
        gap: 20px;
    }

    .services-top {
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
    }
    .service-bottom {
        display: flex !important;
        flex-direction: column;
        gap: 30px;
    }

    .services-header h1 {
        font-size: 24px;
    }
    .services-header p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .about-us {
        display: flex;
        flex-direction: column-reverse;
    }

    .banner-img {
        background-position: unset;
    }

    footer {
        text-align: center;
    }
}
