*,*::after,*::before {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}
:root {
    --primary: #4A9FD9;
    --secondary: #0A1C39;
    --text: #2E2E2EB2;
}

body {
    font-family: "Montserrat", serif;
}

/* section_heading style start */
.section_heading .title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 30px;
    line-height: 44px;
    text-transform: uppercase;
}
.section_heading .sub_title {
    color: var(--primary);
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}
/* section_heading style end */


/* custom_btn style start */
.custom_btn {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    text-transform: uppercase;
    padding: 15px 30px;
    border: 0;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    transition: all .2s;
}
.custom_btn svg {
    margin-left: 10px;
}
/* custom_btn style end */

/* slider style start */
.slider_prev_btn,
.slider_next_btn {
    position: absolute;
    top: 40%;
    color: var(--primary);
    transition: all .2s;
    cursor: pointer;
    z-index: 99;
}
.slider_prev_btn {
    left: 0;
}
.slider_next_btn {
    right: 0;
}
.slider_prev_btn:hover,
.slider_next_btn:hover {
    color: var(--secondary);
}
/* slider style end */

/* Nav css start */
.navbar-custom {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    padding: 15px 0;
}
.navbar-custom .navbar-toggler {
    color: #ddd;
    border: 1px solid #ddd;
    transition: all .2s;
}
.navbar-custom .navbar-toggler:hover {
    color: #fff;
    border: 1px solid #fff;
}
.navbar-custom .navbar-toggler:focus {
    box-shadow: none;
}
.navbar-custom .nav-link {
    color: #fff;
    margin: 0 10px;
    font-weight: 500;
}

.navbar-custom .nav-link:hover {
    color: var(--primary);
}

.navbar-custom .nav-link.active {
    border-bottom: 2px solid var(--primary);
    color: #58c4ff !important;
}

.navbar-custom .btn_proposal {
    background: var(--secondary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}
.navbar-custom .btn_proposal:hover {
    background: #fff;
    color: var(--secondary);
}
/* Nav css end */


/* Call To Action start*/
.cta-section {
    background: #4A9FD933;
    text-align: center;
    padding: 80px 20px;
}

.cta-buttons a {
    padding: 15px 60px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    margin: 15px 30px;
    position: relative;
    white-space: nowrap;
}
.cta-buttons a span {
    word-break: keep-all;
}
.facebook-btn {
    background-color: #007bff;
}

.whatsapp-btn {
    background-color: #25d366;
}

.contact-btn {
    background: linear-gradient(to bottom, #4A9FD9, #0A1C39);
}

.cta-buttons img {
    position: absolute;
    height: 70px;
    top: -8px;
    left: -30px;
}
/* Call To Action end*/


/* Trusted Partner Section start */
.partner-section {
    background: #4A9FD91A;
    text-align: center;
    padding: 40px 0 80px;
}

.partner-section h3 {
    color: var(--primary);
}

.partner-section .section_heading .title {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* font-size: 26px; */
    font-weight: 700;
    color: var(--secondary);
}

.partner-section .section_heading .title::before,
.partner-section .section_heading .title::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: var(--primary);
}
.partner-section .section_heading .title::before {
    margin-right: 30px;
}
.partner-section .section_heading .title::after {
    margin-left: 30px;
}

.partner-section .partner_slider {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 15px;
}
.partner-section .swiper-wrapper {
    align-items: center;
}

.partner-section .swiper-slide img {
    max-width: 100%;
    filter: grayscale(100%);
}
/* Trusted Partner Section end */



/* Experience Section start */
.experience-section {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    padding: 30px 0;
}

.experience-section .items{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.experience-section .items .item {
    display: flex;
    gap: 0 15px;
    align-items: center;
    border-right: 1px solid #fff;
    padding-right: 30px;
}
.experience-section .items .item:last-child {
    border: 0;
}
.experience-section .items .item .text span {
    color: #fff;
    display: block;
}

@media screen and (max-width: 576px) {
    .experience-section .items .item {
        border: 0;
    }
}
/* Experience Section end */


/* about section start */
.about-section {
    padding: 40px 0;
}
.about-section .section_heading .title span {
    color: var(--primary);
    display: block;
}
.about-section p {
    color: var(--text);
    font-size: 15px;
}
.about-section .custom_btn:hover {
    background: var(--primary);
}
/* about section end */


/* service section start */
.service-section {
    background: #4A9FD91A;
    padding: 80px 0;
    position: relative;
}
.service-section::after {
    content: url(../images/service_bg.svg);
    position: absolute;
    top: 15%;
    left: 0;
    z-index: -1;
}
.service-section .service_item {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    border: 1px solid var(--primary);
    border-radius: 16px;
    padding: 15px;
    text-decoration: none;
    transition: all .3s;
}
.service-section .service_item .icon {
    color: var(--primary);
}
.service-section .service_item .text h5 {
    color: var(--secondary);
    font-weight: 600;
    font-size: 17px;
}
.service-section .service_item .text p {
    color: var(--text);
    font-size: 14px;
    margin: 0;
}
.service-section .service_item:hover {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    box-shadow: 20px 20px 40px 7px #4A9FD980;
}
.service-section .service_item:hover .icon , 
.service-section .service_item:hover .text h5 , 
.service-section .service_item:hover .text p {
    color: #fff;
}
@media screen and (max-width: 576px) {
    .service-section::after {
        display: none;
    }
}
/* service section end */


/* why-us section start */
.why-us-section {
    background: #4A9FD933;
    padding: 80px 0;
}
.why-us-section .item {
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
}
.why-us-section .item img {
    max-width: 100%;
    margin-bottom: 30px;
}
.why-us-section .item h6 {
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.why-us-section .item p {
    font-size: 15px;
}
/* why-us section end */


/* testimonials-section start */
.testimonials-section {
    padding: 80px 0;
}
.testimonials-section .testimonials_area {
    padding: 80px 50px 30px;
    border-radius: 10px;
    background: #F4F8FB;
    position: relative;
}
.testimonials-section .testimonials_area::before {
    content: url(../images/testimonials_bg.svg);
    position: absolute;
    top: -170px;
    left: -190px;
    z-index: -1;
}
.testimonials-section .testimonials_area::after {
    content: url(../images/testimonials_small_bg.svg);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.testimonials-section .testimonials_area .review_video {
    margin-bottom: 20px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--primary);
}
.testimonials-section .testimonials_area .reviewer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.testimonials-section .testimonials_area .reviewer .text h6 {
    font-size: 15px;
    line-height: 8px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
}
.testimonials-section .testimonials_area .reviewer .text p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: #2E2E2E;
}
/* testimonials-section end */


/* gallery-section start */
.gallery-section {
    padding: 50px 0 80px;
}
.gallery-section .gallery_item {
    border-radius: 10px;
    overflow: hidden;
}
.gallery-section .gallery_item a img {
    transition: all .3s;
    width: 100%;
}
.gallery-section .gallery_item:hover a img {
    transform: scale(1.1);
}
.gallery-section .custom_btn {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transition: all .3s;
}
.gallery-section .custom_btn:hover {
    background: linear-gradient(180deg, var(--secondary), var(--primary));
}
/* gallery-section end */


/* blog-section start */
.blog-section {
    padding: 80px 0;
    background: #4A9FD914;
}
.blog-section .blog_item {
    display: block;
    text-decoration: none;
    border: 1px solid #4A9FD966;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}
.blog-section .blog_item img {
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}
.blog-section .blog_item h6 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
}
.blog-section .blog_item p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 0;
}
/* blog-section end */


/* contact-section start */
.contact-section {
    padding: 80px 0;
    background: #4A9FD933;
    position: relative;
}
.contact-section::before {
    content: url(../images/contact_bg.png);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.contact-section ul li {
    font-size: 15px;
    color: var(--text);
}
.contact-section h6 {
    font-weight: 600;
    color: var(--secondary);
}
.contact-section h6 span {
    color: var(--primary);
}
.contact-section input, 
.contact-section textarea,
.contact-section select {
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: none;
    font-size: 15px;
}
.contact-section select {
    appearance: none;
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}
.contact-section input::placeholder {
    color: var(--primary);
}
.contact-section .custom_btn:hover {
    background: var(--primary);
}
@media screen and (max-width: 576px) {
    .contact-section::before {
        display: none;
    }
}
.map-section {
    margin-bottom: -7px;
}
.map-section iframe {
    width: 100%;
    height: 400px;
}
/* contact-section end */


/* service-single-section start */
.service-single-section {
    padding: 80px 0;
}
.service-single-section .section_heading {
    border-bottom: 1px solid var(--primary);
    padding-bottom: 30px;
}
.service-single-section .section_heading .sub_title {
    text-transform: capitalize;
    font-weight: 500;
}
.service-single-section .content {
    margin-bottom: 25px;
}
.service-single-section .content_title {
    font-size: 19px;
    font-weight: 600;
    color: var(--text);
}
.service-single-section .content ul li,
.service-single-section .content p {
    font-size: 15px;
    color: var(--text);
}
/* service-single-section end */


/* company_page_header start */
.company_page_header {
    text-align: center;
    padding: 80px 0;
    background: #4A9FD91A;
}
.company_page_header p {
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
}
.company_page_header p span {
    color: var(--primary);
}
/* company_page_header end */


/* company_about start */
.company_about {
    padding: 80px 0;
}
.company_about .text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}
.company_about .text p {
    font-size: 15px;
    color: var(--text);
}
/* company_about end */


/* team-section start */
.team-section {
    padding: 80px 0;
    background: #4A9FD91A;
    text-align: center;
}
.team-section .team-members {
    display: flex;
    column-gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.team-section .team-members .member img {
    border-radius: 50%;
    max-width: 100%;
    margin-bottom: 20px;
}
.team-section .team-members .member h4 {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 600;
}
.team-section .team-members .member p {
    color: var(--text);
    font-size: 15px;
}
/* team-section end */


/* footer start */
.footer .footer_top{
    background: linear-gradient(90deg, #0d1f44, #2675bf);
    color: white;
    padding: 40px 0;
}

.footer h5 {
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: all .2s;
}
.footer a:hover {
    color: #bbb;
}
.footer .footer_top .address .item {
    display: flex;
    flex-wrap: nowrap;
}
.footer .footer_top .address .item p {
    margin-left: 15px;
    font-size: 15px;
}
.social_icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer_bottom {
    background: var(--secondary);
    color: #fff;
    text-align: center;
    padding: 15px 0;
}
.footer_bottom p {
    margin: 0;
    font-size: 15px;
}
/* footer end */