/*
*
*
*
*
*
*/
:root {
    --font-title: "Barlow Condensed", sans-serif;
    --font-desc: "Inter", sans-serif;
    --primary-color: #8cc63f;
    --primary-color-dark: #73a335;
    --title-black: #0a102f;
    --desc-black: #3f3f46;
    --dark-bg: #0f172a;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #f9fbfc;
    /* background: #303030; */
    font-family: var(--font-desc);
    font-size: 18px;
    color: var(--desc-black);
}
/* h1,h2,h3,h4,h5,h6{
    font-family: var(--font-title);
} */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-size: 18px;
    font-family: var(--font-desc);
    font-weight: 600;
    color: var(--title-black);
    padding: 10px 25px;
    border-radius: 0px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.5s;
    font-weight: 800;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
}
h2.accordion-header {
    font-family: var(--font-desc);
}
.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary:hover {
    background: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
}

/* Nav and Top Bar*/

.top_bar {
    background: var(--dark-bg);
    text-align: end;
    padding: 10px 0px;
}
.social_media_cta {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}

.social_media_cta h4 {
    font-size: 18px;
    font-family: var(--font-title);
    line-height: 1;
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--white);
}

.social_media_cta .social_links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social_media_cta .social_links a {
    width: 30px;
    height: 30px;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50px;
    color: var(--dark-bg);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.social_media_cta .social_links a:hover {
    transform: scale(1.1);
}

.top_bar_wraper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top_bar_wraper .call_number a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.error {
    color: red;
    font-size: 14px;
}
.top_bar_wraper .call_number a .icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
    border-radius: 50px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
}

.top_bar_wraper .call_number a .text_number {
    font-size: 20px;
    font-family: var(--font-title);
    line-height: 1;
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
}
.loading {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* Nav Bar */
.navbar {
    background: rgba(0, 0, 0, 0.623);
    backdrop-filter: blur(10px);
}
.navbar .nav-link {
    color: var(--white);
}
.navbar .nav-link.active {
    color: var(--primary-color);
}
.form-control {
    border: 1px solid #d6d6d6;
    background: #f0f0f0 !important;
    border-radius: 0px;
    font-size: 16px;
    box-shadow: none !important;
    min-height: 50px;
}
.form-control:focus {
    border-color: var(--primary-color);
}
.navbar .nav-logo img {
    width: 170px;
}
/* Banner */
#banner {
    position: relative;
    background: #050409;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

#banner .banner-background::before {
    content: "";
    width: 100%;
    position: absolute;
    display: block;
    height: 100%;
    background: #050409c9;
    z-index: 0;
    pointer-events: none;
}

#banner .particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.banner_content {
    position: relative;
    z-index: 9;
}

.banner-background {
    position: absolute;
    top: 0;
    right: 0px;
    overflow: hidden;
    width: 100%;
    height: 90vh;
    background: #050409;
    text-align: right;
}

.banner-background > img {
    height: 100%;
}

.banner_content {
    text-align: center;
}
.banner_content h1 {
    font-family: var(--font-title);
    font-size: 60px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.banner_content p {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: var(--white);
}

.btn-banner {
    font-family: var(--font-desc);
    font-size: 20px;
    font-weight: 700;
    padding: 15px 32px;
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--title-black);
    text-align: center;
    border-radius: 10px;
    transition: 0.5s ease;
}

.btn-banner:hover {
    background: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    color: var(--title-black);
}

.scroll_bottom {
    position: absolute;
    bottom: -60px;
    opacity: 1;
    z-index: 9;
    left: calc(50% - 60px);
    animation: bobs infinite 3s;
    pointer-events: none;
}

.scroll_bottom img {
    width: 120px;
    height: 120px;
}

@keyframes bobs {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: var(--dark-bg);
    padding: 70px 0px;
}

footer p {
    font-size: 16px;
    color: var(--white);
}

footer .footer-logo {
    margin-bottom: 25px;
}
.footer-contact-wrap h4,
.footer-link-wrap h4 {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-desc);
    margin-bottom: 15px;
    color: var(--white);
}

.footer-contact-wrap p,
.footer-link-wrap a {
    font-size: 16px;
    display: block;
    color: var(--white);
    text-decoration: none;
}

.footer-link-wrap .link_wraper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact-wrap p {
    display: flex;
    gap: 10px;
}

.footer-contact-wrap p.contact-item .icons {
    font-size: 20px;
}

/* about Us */
#about_us {
    padding: 70px 0px;
}
.sec_text h2 {
    font-family: var(--font-title);
    font-size: 52px;
    font-weight: bold;
    color: var(--title-black);
    margin-bottom: 10px;
}
.sec_text p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--desc-black);
    margin-bottom: 10px;
}

.sec_text.text-white h2 {
    color: var(--white);
}
.sec_text.text-white p {
    color: var(--white);
}

.about_image {
    text-align: right;
}

#quality {
    background: linear-gradient(#0f172a8f, #0f172a8f),
        url(./../images/bg-square-lines.png), #0f172a;
    padding: 100px 0px;
    background-repeat: no-repeat;
    background-size: cover;
}

#our_services {
    padding: 90px 0px;
}
.services_wraper {
    margin-bottom: 25px;
}
.services_wraper .service_item {
    display: flex;
    gap: 10px;
    background: var(--white);
    height: 100%;
    padding: 25px 20px;
    border-radius: 10px;
}

.services_wraper .service_item .serv_icon {
    width: 100px;
    min-width: 100px;
}

.services_wraper .service_item .service_content h3 {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: bold;
    color: var(--title-black);
    margin-bottom: 5px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    cursor: pointer;
}

/*  Why Choose us */
#why_choose_us {
    padding: 100px 0px;
    background: url(./../images/why-choose-us-bg.png), #8bc63f1e;
    background-repeat: no-repeat;
    background-size: cover;
}

.card.card_type_3 {
    background: url(./../images/card-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    min-height: 350px;
    position: relative;
}
.card.card_type_3 .card-body {
    background: none;
    padding: 25px;
}
.card.card_type_3 .top_icon {
    position: absolute;
    width: 100px;
    height: 100px;
    font-size: 55px;
    background: #fff;
    right: 5px;
    top: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--primary-color) !important;
}
.card.card_type_3 h3 {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: bold;
    color: var(--title-black);
    margin-bottom: 20px;
}
.card.card_type_3 p {
    font-size: 16px;
    color: var(--desc-black);
    line-height: 150%;
}
.swiper-wrapper {
    padding: 30px 0px;
    padding-bottom: 0px;
}
.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -5px;
}
.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
}
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* FAQ */
#faq {
    padding: 100px 0px;
}

.faq__qna .faq_acc .accordion-item {
    margin-bottom: 15px;
    border: none;
    box-shadow: 0 0 10px #ececec;
    border-radius: 10px;
}
.faq__qna .faq_acc .accordion-button {
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: none;
}

.faq__qna .faq_acc .accordion-button:not(.collapsed) {
    border-radius: 10px 10px 0 0;
    background-color: #8bc63f67;
}

.faq__qna .faq_acc .accordion-body p {
    font-size: 14px;
    color: var(--desc-black);
    margin-bottom: 0px;
}

/*  Call To Action */
.callToAction .sec_text {
    background: url("./../images/cta-bg-item.png"), var(--primary-color);
    padding: 70px 0px;
    margin: 100px 0px;
    border-radius: 20px;
}

.callToAction .btn-dark {
    background: var(--dark-bg);
    color: var(--white);
}

/* About Us Page */

.get_called_mission {
    position: relative;
    top: -190px;
    padding-top: 70px;
    overflow: hidden;
}

#our_vision {
    margin-bottom: 120px;
}
#our_vision .sec_text {
    margin-bottom: 50px;
}

.card.card_type_4 .icon {
    width: 90px;
    height: 90px;
    background: #8bc63f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    border-radius: 90px;
    color: var(--primary-color);
    margin: 0 auto;
    margin-bottom: 10px;
}

.card.card_type_4 {
    text-align: center;
    border-radius: 0px;
    border: 1px solid #ddd;
    padding: 25px 10px;
    height: 100%;
}

.card.card_type_4 h3 {
    font-size: 24px;
    font-family: var(--font-title);
    color: var(--title-black);
    margin-bottom: 5px;
    font-weight: bold;
}

.card.card_type_4 p {
    font-size: 16px;
    color: var(--desc-black);
    line-height: 1.4;
}

/* Services Page */
#services_item {
    padding: 80px 0px;
}

#services_item.bg_white {
    background: var(--white);
}

#services_item.bg_white h2,
#services_item.bg_white ul li {
    color: var(--title-black);
}

#services_item.bg_dark {
    background: linear-gradient(#0f172a8f, #0f172a8f),
        url(./../images/bg-square-lines.png), #0f172a;
    padding: 100px 0px;
    background-repeat: no-repeat;
    background-size: cover;
}

#services_item.bg_dark h2,
#services_item.bg_dark ul li {
    color: var(--white);
}

#services_item ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#services_item h2 {
    font-size: 26px;
    font-weight: 700;
}

#services_item ul li {
    font-size: 20px;
    font-weight: 600;
}

#services_item ul li .arrow_icon {
    position: relative;
    top: 3px;
}
.bottom_txt {
    padding: 70px 0px;
    text-align: center;
}
.outCome {
    padding: 120px 0px;
}
#about_us_sec h2,
.outCome h2 {
    font-family: var(--font-title);
    font-size: 50px;
    font-weight: bold;
    color: var(--title-black);
    text-transform: uppercase;
}

/* Contact Us Page */
.contact_us {
    padding: 180px 0px;
}

.contact_us .lets_wor_title {
    font-family: var(--font-title);
    font-size: 52px;
    color: var(--title-black);
    font-weight: bold;
}
.contact_item {
    margin-bottom: 30px;
}
.contact_item h2 {
    font-family: var(--font-title);
    font-size: 48px;
    font-weight: 700;
    color: var(--title-black);
    text-transform: uppercase;
}

.contact_item p {
    font-size: 16px;
    color: var(--desc-black);
}

/* Blog Page */
#blogPage {
    padding: 180px 0px;
}

#blogPage .page_title {
    font-family: var(--font-title);
    font-size: 52px;
    color: var(--title-black);
    font-weight: bold;
}

#blogPage .page_pragraph {
    font-size: 16px;
    color: var(--desc-black);
}

#testimonials {
    padding: 100px 0px;
    background: var(--white);
}
.testimonialSlider {
    position: relative;
}
.testimonials_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-bottom: 10px;
}
.testimonials_item .company_logo img {
    width: 150px;
}
.testimonials_item .message {
    text-align: center;
}
.testimonials_item .message {
    position: relative;
}
.testimonials_item .message .icon {
    position: absolute;
    font-size: 150px;
    color: var(--primary-color);
    opacity: 0.2;
}
.testimonials_item .message .icon.left {
    left: 0px;
    top: -150px;
}
.testimonials_item .message .icon.right {
    right: 0px;
    bottom: -150px;
}
.testimonials_item .message p {
    width: 80%;
    margin: 0 auto;
    font-size: 22px;
}
.testimonials_item .ceo_info {
    text-align: center;
}
.testimonials_item .ceo_info .avatar img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    object-fit: cover;
    margin-bottom: 5px;
}
.testimonials_item .ceo_info .ceo_personal h4 {
    font-size: 22px;
    margin-bottom: 1px;
}
.testimonials_item .ceo_info .ceo_personal h6 {
    font-size: 16px;
    margin-bottom: 0;
}

.slider_btn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nextSlide,
.prevSlide {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 8;
}
/*
*
*
*
*Responsive Part 
*
*
*
*/
@media only screen and (max-width: 1440px) {
    .banner_content h1 {
        font-size: 52px;
    }
    .card.card_type_3 p,
    p,
    .sec_text p,
    .banner_content p {
        font-size: 16px;
    }
    .sec_text h4 {
        font-size: 20px;
        font-weight: bold;
    }
    .btn-banner {
        padding: 10px 20px;
    }

    .contact_item h2,
    .contact_us .lets_wor_title,
    .sec_text h2 {
        font-size: 42px;
    }
    #services_item h2,
    .card.card_type_3 h3,
    .services_wraper .service_item .service_content h3 {
        font-size: 24px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 16px;
    }
    .card.card_type_3 {
        background: #fff;
        border-radius: 20px;
        height: 280px;
    }
    #services_item ul li {
        font-size: 18px;
    }
    .card.card_type_3 .top_icon {
        background: var(--primary-color);
        color: var(--white) !important;
    }
    .callToAction .sec_text {
        margin: 70px 0px;
        margin-top: 0px;
    }
    .card.card_type_3 .top_icon {
        right: 10px;
        top: -50px;
    }
    .get_called_mission .col-lg-4 {
        margin-bottom: 40px;
    }
    .get_called_mission .card.card_type_3 {
        box-shadow: 0 15px 10px #eeeeee;
    }
    #our_vision {
        margin-top: -50px;
    }
    .card.card_type_4 h3 {
        font-size: 22px;
    }
    .card.card_type_4 .icon {
        font-size: 50px;
    }
    #about_us_sec h2,
    .outCome h2 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 992px) {
    button.navbar-toggler {
        color: var(--primary-color);
        font-size: 40px;
        padding: 0;
        border: none !important;
    }
    #banner {
        min-height: 700px;
    }
    .banner-background {
        height: 700px;
    }
    .outCome,
    #faq,
    #testimonials,
    #why_choose_us,
    #our_services,
    #quality,
    #about_us {
        padding: 50px 0px;
    }
    .about_image {
        text-align: center;
    }
    .card.card_type_3 {
        height: auto;
        min-height: auto;
    }
    .card.card_type_3 .top_icon {
        right: 20px;
    }
    .swiper {
        padding-bottom: 40px;
    }
    #why_choose_us .text-center.mt-5 {
        margin-top: 20px !important;
    }
    #faq .sec_text {
        margin-bottom: 35px;
    }
    #callToAction .sec_text p br {
        display: none;
    }

    .get_called_mission {
        top: 50px;
        padding: 50px 0px;
    }
    #our_vision {
        margin-top: 50px;
    }
    .get_called_mission .col-lg-4 {
        margin-bottom: 60px;
    }
    .card.card_type_3 .top_icon {
        top: -30px;
    }
    .get_called_mission .card.card_type_3 {
        height: 100%;
    }
    .card.card_type_3 .top_icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        border-radius: 10px;
    }
    .get_called_mission .card.card_type_3 {
        box-shadow: 1px 3px 10px #eeeeee;
    }
    #services_item h2,
    .card.card_type_3 h3,
    .services_wraper .service_item .service_content h3 {
        font-size: 22px;
    }
    #services_item ul li {
        font-size: 16px;
        display: flex;
        gap: 5px;
    }
    #about_us_sec h2,
    .outCome h2 {
        font-size: 32px;
    }

    .contact_us .col-12 {
        margin-bottom: 50px;
    }

    .contact_item h2,
    .contact_us .lets_wor_title,
    .sec_text h2 {
        font-size: 32px;
    }
    label {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .testimonials_item .company_logo img {
        width: 120px;
    }
    .testimonials_item .message p {
        width: 90%;
    }
    .testimonials_item .message p {
        font-size: 20px;
    }
    .testimonials_item .ceo_info .avatar img {
        width: 80px;
        height: 80px;
    }
    .testimonials_item .message .icon.left {
        top: -140px;
    }
    .testimonials_item .message .icon.right {
        bottom: -170px;
    }
}
@media only screen and (max-width: 768px) {
    .banner_content h1 {
        font-size: 32px;
    }
    .contact_item h2,
    .contact_us .lets_wor_title,
    .sec_text h2 {
        font-size: 32px;
    }
    .btn-banner,
    .btn-primary {
        font-size: 16px;
    }
    .sec_text h4 {
        font-size: 16px;
    }
    .sec_text p br {
        display: none;
    }
    #services_item h2,
    .card.card_type_3 h3,
    .services_wraper .service_item .service_content h3 {
        font-size: 20px;
    }
    .callToAction .sec_text {
        padding: 70px 30px;
    }
    .card.card_type_3 p br,
    p br,
    .sec_text p br,
    .banner_content p br {
        display: none;
    }
    #our_vision .sec_text h4 {
        font-size: 24px;
    }
    #services_item.bg_dark,
    #services_item {
        padding: 50px 0px;
    }
    #services_item h2 {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 550px) {
    #banner {
        min-height: 600px;
    }
    .banner-background {
        height: 600px;
    }
    .banner_content {
        padding-top: 60px;
    }
    .card.card_type_3 p,
    p,
    .sec_text p,
    .banner_content p {
        font-size: 14px;
    }
    .services_wraper .service_item {
        flex-direction: column;
    }

    .card.card_type_4 h3 {
        font-size: 18px;
    }

    .card.card_type_4 p {
        font-size: 14px;
    }

    .card.card_type_4 .icon {
        width: 70px;
        height: 70px;
        font-size: 40px;
    }
    .card.card_type_4 {
        padding: 0px;
    }
    p br,
    .sec_text p br,
    .banner_content p br {
        display: none;
    }
    .what-we-do-banner .banner-background {
        height: 700px !important;
    }

    #banner.what-we-do-banner {
        height: 700px !important;
    }
    .testimonials_item .message p {
        width:100%;
    }
    .testimonials_item .message p {
        font-size: 18px;
    }
    .testimonials_item .message .icon{
        font-size: 70px;
    }
}

@media only screen and (max-width: 370px) {
    .social_media_cta h4,
    .top_bar_wraper .call_number a .text_number {
        font-size: 18px;
    }
    .social_media_cta {
        gap: 5px;
    }
}
