@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css";
@import "bootstrap.min.css";

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --body-fonts: "Outfit", sans-serif;
    --color-primary: #009BDE;
    --color-warning: #F36A33;
    --text-color: #0B1828;
    --color-white: #FFFFFF;
    --dark-color: #252525;
    --base-fonts: 16px;
    --text-secondary: #001A61;
    --border-color: #C8D3E5;
}

body {
    background-color: #ecf2f7;
    font-size: var(--base-fonts);
    line-height: 1.5;
    color: var(--text-color);
    font-weight: 400;
    font-family: var(--body-fonts), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1, h2, h3, h4 {
    color: var(--text-secondary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 500;
}

h3 {
    font-size: clamp(1.7rem, 3vw, 1.5rem);
}

h4 {
    font-size: clamp(1.5rem, 2vw, 1rem);
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

.btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    text-decoration: none;
    transition: 0.35s all ease-in-out;
    line-height: 1.2;
    white-space: nowrap;
}

.btn svg,
.btn i {
    line-height: 1;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    outline: none;
    box-shadow: none;
}

.btn-primary:hover {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    filter: brightness(80%);
    color: var(--color-white);
}

.btn-warning,
.btn-warning:hover {
    background-color: var(--color-warning);
    color: var(--color-white);
    border-color: var(--color-warning);
    outline: none;
    box-shadow: none;
}

.btn-warning:hover {
    filter: brightness(80%);
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
    outline: none;
    box-shadow: none;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.btn strong {
    padding-left: 4px;
}


/* ===== LAYOUT CONTAINERS ===== */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1600px) {
    .container-fluid {
        padding-left: 7%;
        padding-right: 7%;
    }

    .header_btns .btn {
        min-width: 200px !important;
    }
}

.swiper__btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 50px;
}

.swiper__btns > div {
    position: relative;
    margin: 0 !important;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    padding: 0;
    opacity: 1 !important;
    background-color: var(--dark-color);
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    color: var(--color-primary);
}

.swiper__btns > div:after {
    font-size: 20px;
}

.swiper__btns .swiper-button-disabled {
    background-color: transparent;
    color: var(--dark-color);
}


.section__title {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section__title * {
    margin: 0
}

.section__title h2,
.section__title h3 {
    font-weight: 500;
}

.section__title h1 strong,
.section__title h2 strong,
.section__title h3 strong {
    background: linear-gradient(79.47deg, #00C4FF 0%, #8646DA 71%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: inherit;
}

.section__title > span {
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 400;
    display: block;
    line-height: 1;
}

.section__title > p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.section__title h1 p,
.section__title h2 p {
    max-width: 100%;
    margin: 0;
}

@media (min-width: 1440px) {
    .container {
        padding: 0 5%;
    }
}

@media (max-width: 991.98px) {
    body {
        font-size: 16px;
    }

    .swiper__btns > div {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .swiper__btns > div:after {
        font-size: 16px;
    }
}

/* ===== GLOBAL STYLES END ===== */

/* ===== HEADER STYLES START ===== */
.site-header {
    background-color: #f5f9fd;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

header.hidden-header {
    transform: translateY(-100%);
}

header.visible-header {
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}


header .navbar-nav {
    margin: 0 0 0 auto;
    width: calc(100% - 250px);
    justify-content: flex-end;
}

header .nav-menu,
.navbar ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navbar ul {
    justify-content: flex-end;
    padding-left: 10%;
    padding-right: 5%;
}

header .navbar-collapse {
    gap: 30px;
}

header .nav-menu li,
header .navbar li {
    position: relative;
}

header .nav-menu a,
header .navbar a:not(.btn) {
    color: var(--text-color);
    padding: 0.25rem 0;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 300;
}

header .navbar-nav a:hover {
    color: var(--dark-color);
    text-decoration: none;
}

header .navbar-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

header .navbar-nav a.active:after,
header .navbar-nav a:hover:after {
    width: 35px;
}

header .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    padding: 0.5rem;
}

header .navbar-brand {
    max-width: 230px;
    width: 100%;
}

header .navbar-brand img {
    width: 100%;
    object-fit: contain;
}

header .header_btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1199.98px) {
    header .nav-menu,
    header .navbar ul {
        gap: 15px;
    }

    header .navbar-nav {
        width: calc(100% - 200px);
    }
}

@media (max-width: 991.98px) {
    .site-header {
        padding: 15px 0;
    }

    header .navbar-brand {
        max-width: 200px;
    }

    header .navbar-brand img {
        height: 40px;
    }

    /* Hamburger Menu Styling */
    header .navbar-toggler {
        border: none;
        background: transparent;
        outline: none;
        padding: 0;
        box-shadow: none !important;
        outline: none !important;
    }

    header .navbar-toggler span {
        display: block;
        width: 30px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--dark-color);
        transition: all 0.4s ease-in-out;
    }

    header .navbar-nav {
        padding: 0;
        background-color: var(--dark-color);
    }

    body .navbar-nav .nav-link,
    body .navbar-nav a {
        color: var(--color-white) !important;
    }

    header .navbar li + li {
        margin-left: 0;
        margin-top: 10px;
    }

    /* Hamburger Menu Animation */
    header .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    header .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    header .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Navbar Collapse Animation */
    header .navbar-collapse {
        transition: 0.4s all ease-in-out;
        padding: 20px;
        background-color: var(--dark-color);
        position: absolute;
        left: 0;
        top: calc(100% + 13px);
        width: 100%;
        border-radius: 0 0 10px 10px;
        opacity: 0;
        z-index: -1;
        visibility: hidden;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    header .navbar-collapse.show {
        opacity: 1;
        z-index: 2;
        visibility: visible;
    }
}

/* ===== HEADER STYLES END ===== */

/* ===== HERO STYLES START ===== */
.hero__section {
    position: relative;
    background-color: #f5f9fd;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 110px 0;
}

.hero__section .hero__slider {
    overflow: hidden;
    position: relative;
}

.hero__slider .swiper-slide {
    padding: 0 40px;
}

.hero__slider .swiper-button-next,
.hero__slider .swiper-button-prev {
    font-size: 20px;
    color: #001A6142;
}

.hero__slider .swiper-button-prev {
    left: 0;
}

.hero__slider .swiper-button-next {
    right: 0;
}

.hero__slider .swiper-button-next:after,
.hero__slider .swiper-button-prev:after {
    font-size: 26px;
}

.hero__section .section__title {
    align-items: flex-start;
}

.hero__section .section__title > p {
    max-width: 420px;
    margin-left: 0;
}

.hero__section .hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 15px;
}

.hero__section .hero__img {
    width: 100%;
}

.hero__img img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 767.98px) {
    .hero__section {
        padding: 80px 0;
    }

    .hero__section .hero__content > span {
        font-size: 16px;
    }

    .hero__slider .swiper-slide {
        padding: 0 25px;
    }
}

/* ===== HERO STYLES END ===== */

/* ===== Solutions Section Style Start ===== */
.solutions__section {
    padding: 80px 0;

}

.doctor__card {
    box-shadow: 0 5px 15px 0 #00000017;
    border-top: 1px solid #CBDBE4;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 100%;
}

.doctor__card:after {
    content: "";
    background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 100%
    );
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.doctor__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor__card .doctor__card-info {
    position: absolute;
    left: 0;
    top: auto;
    bottom: 0;
    padding: 25px;
    z-index: 2;
}

.doctor__card h4 {
    font-weight: 400;
}

.doctor__card .btn {
    font-weight: 400;
}

.solution__card {
    border: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #FFFFFF01;
    border-radius: 20px;
    position: relative;
    transition: 0.35s all ease-in-out;
    box-shadow: 0 5px 15px 0 #00000017;
    overflow: hidden;
    height: 100%;
}

.solution__card:hover {
    background-color: var(--color-white);
    box-shadow: 0 10px 10px 0 #00000017;
}

.solution__card .solution__info {
    position: absolute;
    inset: 0;
    background-color: #cbdbe4;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: 0.3s all ease-in-out;
}

.solution__card:hover .solution__info {
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

.solution__info p {
    color: #013863;
    margin: 0;
    font-size: 14px;
}

.solution__info a {
    color: #013863;
    border-color: #013863
}

.overlay__link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.solution__card h4,
.solution__card h5 {
    font-weight: 400;
    margin: 0;
    max-width: 250px;
    font-size: clamp(1.3rem, 2vw, 1rem);
}

.solution__card > img {
    width: 33px;
    object-fit: contain;
}

.solution__card span {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    gap: 3px;
    color: #8090A1;
}

.solution__card span i,
.solution__card span svg {
    color: var(--color-warning);
    margin-top: 2px;
}

/* ===== Solutions Section Style End ===== */


/* ===== Operational Section Style Start ===== */
.operational__section {
    padding: 60px 0;
}

.operational__section .section__title p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

body .tab-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body .nav-tabs {
    background-color: #D9E8F7;
    border-radius: 60px;
    padding: 3px;
    border: none;
    gap: 10px;
    justify-content: center;
    display: inline-flex;
}

body .nav-tabs .nav-link {
    padding: 15px 35px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    color: #4579EA;
    border: 1px solid transparent;
    text-decoration: none;
    background-color: transparent;
    border-radius: 60px;

}

body .nav-tabs .nav-link.active,
body .nav-tabs .nav-link:hover {
    border-color: var(--color-primary);
    background-color: #F0F5FBAB;
}

body .tab-content {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--color-white);
}

.operational__section .operational__content {
    padding: 100px 50px;
    background-color: var(--color-white);
}


.operational__section .accordion {
    border: none;
}

.operational__section .accordion-item {
    border: none;
    position: relative;
    padding: 15px 20px;
    border-radius: 0;
    border-left: 2px solid transparent;
}

.operational__section .accordion-item + .accordion-item {
    margin-top: 10px;
}

.operational__section .accordion-item:after {
    content: "";
    width: 65%;
    height: 1px;
    background-color: #D5D8DC;
    display: block;
    margin-left: auto;
    position: absolute;
    right: 0;
    bottom: 0;
}

.operational__section .accordion-item.accordion-open {
    border-left-color: var(--color-primary);
}

.operational__section .accordion-item.accordion-open:after {
    width: 100%;
}


.operational__section .accordion-button {
    border: none;
    background-color: transparent;
    box-shadow: none !important;
    outline: none !important;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    color: var(--text-color);
    padding: 0;
    gap: 10px;
}

.operational__section .accordion-button::after {
    content: "\f107";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    margin-left: auto;
    transition: transform 0.3s ease;
    background-image: none;
    color: #D5D8DC;
    font-size: 16px;
}

.operational__section .accordion-open .accordion-button::after {
    color: #1C1B1F;
}

.operational__section .accordion-body {
    padding: 20px 0 0 0;
}

.operational__section .operational__img {
    background-color: #D9E8F7;
    padding: 100px 50px;
}

.operational__img img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 1199.98px) {
    .operational__section .operational__content,
    .operational__section .operational__img {
        padding: 50px 25px;
    }
}

@media (max-width: 1199.98px) {
    .operational__section .operational__content,
    .operational__section .operational__img {
        padding: 30px 15px;
    }

    .operational__section .accordion-button {
        font-size: 18px;
    }
}

/* ===== Operational Section Style End ===== */


/* ===== Text Section Style Start ===== */
.text__section {
    padding: 50px 0;
}

.text__section + .text__section {
    padding-top: 0;
}

.text__section h2,
.text__section h3,
.text__section h4,
.text__section h5 {
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.text__section h1 strong,
.text__section h2 strong {
    background: linear-gradient(79.47deg, #00C4FF 0%, #8646DA 71%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: inherit;
}
.text__section p,
.text__section li {
    font-weight: 300;
    font-size: 20px;
}

.text__section p strong,
.text__section p b {
    color: var(--text-secondary);
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 400;
}

.text__section p + p {
    margin-top: 20px;
}

.text__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px
}

.text__buttons,
.text__after-buttons {
    margin-top: 30px;
}

.text__section li + li {
    margin-top: 7px;
}

.text__section li h1,
.text__section li h2,
.text__section li h3,
.text__section li h4,
.text__section li h5,
.text__section li h6 {
    margin: 0;
}

.text__section p img {
    margin: 0 0 0 auto;
    display: block;
}
.text__section .container {
    max-width: 1100px;
}


@media (max-width: 991px) {
    .text__section {
        padding: 50px 0
    }

    .text__section p {
        font-size: 18px;
    }

    .text__section p + p {
        margin-top: 15px;
    }

    .text__buttons {
        flex-wrap: wrap;
        gap: 15px;
    }
    .text__section p,
    .text__section li {
        font-size: 16px;
    }
}

/* ===== Text Section Style End ===== */


/* ===== Testimonials Section Style Start ===== */
.testimonials__section {
    padding: 70px 0;
}

.testimonials__section .section__title {
    max-width: 900px;
}

.testimonials__section .section__title p {
    max-width: 100%;
}

.testimonials__section .tab-wrap,
.testimonials__section .tab-content {
    max-width: 1076px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials__section .tab-content {
    background-color: #F7FAFD;
}

.testimonials__text {
    background-color: #D9E8F7;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonials__content {
    background-color: #F7FAFD;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonials__text p,
.testimonials__content p {
    text-align: center;
    margin: 0;
    font-size: 20px;
    font-weight: 300;
}

.testimonials__text > p {
    margin-top: 50px;
}

.testimonials__text span {
    color: #7E8C9B;
    text-align: center;
    font-size: 13px;
    display: block;
    width: calc(100% + 20px);
}

.testimonials__content > img {
    margin-bottom: 10px;
    object-position: center;
    object-fit: contain;
    width: 165px;
}

.testimonials__content h2 {
    margin-bottom: 30px;
}

.testimonials__content p {
    text-align: left;
}

.testimonials__row {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
}

.testimonials__row > div {
    text-align: center;
    padding: 10px 15px;
}

.testimonials__row > div + div {
    border-left: 1px solid var(--border-color);
}

.testimonials__row h6 {
    font-weight: 300;
}

.testimonials__content h4 {
    color: var(--color-primary);
}

.testimonials__content h4:empty {
    height: 25px;
}


@media (max-width: 991.98px) {
    body .nav-tabs .nav-link {
        padding: 12px 25px;
        font-size: 14px;
    }

    .testimonials__text,
    .testimonials__content {
        padding: 30px 20px;
    }

    .testimonials__text > p {
        margin-top: auto;
    }
}

@media (max-width: 767.98px) {
    .testimonials__text p,
    .testimonials__content p {
        font-size: 16px;
    }

    .testimonials__row > div {
        padding: 5px
    }

    .testimonials__row h6,
    .testimonials__row p,
    .testimonials__row span {
        font-size: 14px;
    }
}

/* ===== Testimonials Section Style End ===== */

/* ===== Support Section Style Start ===== */
.support__section {
    padding: 70px 0;
}

.support__section:last-child {
    padding-bottom: 130px;
}

.support__section .support__row {
    padding-top: 50px;
    row-gap: 35px;
}

.support__section .support__row [class^='col-'] + [class^='col-'] {
    border-left: 1px solid var(--border-color);
}

.support__section .support__text {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.support__section .support__text > * {
    margin: 0;
}

.support__section .support__text h5,
.support__section .support__text h6 {
    color: var(--text-secondary);
}

.support__section .support__text p {
    font-weight: 300;
}

.support__section .support__link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 26px;
}

@media (max-width: 767.98px) {
    body .support__section {
        padding: 70px 0;
    }

    .support__section .support__row {
        row-gap: 0;
        padding-top: 0;
    }

    .support__section .support__row [class^='col-'] + [class^='col-'] {
        border-left: none;
        border-top: 1px solid var(--border-color);
    }

    .support__section .support__row [class^='col-'] {
        padding-block: 35px;
    }
}

/* ===== Support Section Style End ===== */

/* ===== Footer Style Start ===== */

.footer {
    padding: 50px 0;
    background-color: var(--color-white);
}

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

.footer__links a {
    color: var(--text-color);
    font-weight: 300;
    transition: 0.35s all ease-in-out;
}

footer a:hover {
    color: var(--color-primary);
}

.footer__links li + li {
    margin-top: 4px;
}


.footer__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .ftr__logo {
    width: 150px;
    display: block;
}

.footer .ftr__logo img {
    width: 100%;
}

.footer__info > * {
    margin: 0;
}

.footer__social-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social__List {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 4px;
    font-size: 14px;
}

.social__List a {
    color: #8090A1;
    font-size: 20px;
}

.footer__copyright {
    text-align: center;
}

.footer__copyright p {
    margin: 0;
}

.footer__info-text p {
    margin-bottom: 0;
}

.footer__info-text p a {
    color: var(--text-color);
}

.footer__info-text p a:hover {
    text-decoration: underline;
    color: var(--color-primary)
}

/* ===== Footer Style End ===== */


/* ===== CONTACT SECTION STYLE START ===== */
.contact_section {
    padding: 100px 0;
}

.contact_section .section_title {
    margin: 0 auto 100px;
    text-align: center;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contact_section h2 {
    position: relative;
    margin-bottom: 0;
    color: var(--dark-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.contact_section h2:after {
    content: none;
    width: 290px;
    height: 10px;
    background-color: var(--color-primary);
    display: block;
    margin-top: 10px;
}

.contact_info {
    padding: 60px 40px;
    background-color: #F5F9FD;
    border-radius: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/*.contact_info:before,*/
/*.contact_info:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    right: 0;*/
/*    background-color: #1A1A1A;*/
/*    display: inline-block;*/
/*    border-radius: 50%;*/
/*}*/

/*.contact_info:before {*/
/*    background-color: #48484880;*/
/*    width: 130px;*/
/*    height: 130px;*/
/*    bottom: 50px;*/
/*    right: 50px;*/
/*}*/

/*.contact_info:after {*/
/*    background-color: #48484880;*/
/*    width: 180px;*/
/*    height: 180px;*/
/*    bottom: -30px;*/
/*    right: -30px;*/
/*}*/



.contact_info h4 {
    margin-bottom: 70px;
}

.contact_info ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 320px;
    height: 100%;
}

.contact_info li {
    color: var(--text-color);
    display: flex;
    gap: 15px;
}

.contact_info li i {
    margin-top: 4px;
}

.contact_info a {
    color: inherit;
}

.contact_info a:hover {
    color: var(--color-primary);
}

.contact_form {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.contact_form .fluentform .ff-el-group {
    margin-bottom: 30px;
}

.contact_form label,
.contact_form .ff-default .ff-el-input--label label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    line-height: 1.35;
    display: block;
    line-height: 1;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 25px;
}

.form-row > div {
    width: 100%;
    max-width: calc(50% - 15px);
}

.form-row .w-full {
    max-width: 100%;
}

.contact_form input,
.contact_form select,
.contact_form textarea,
.contact_form .ff-default .ff-el-form-control {
    border: none;
    border-bottom: 1px solid #C4C4C4;
    color: var(--dark-color);
    font-size: 14px;
    background-color: transparent;
    padding: 7px 10px;
    outline: none;
    width: 100%;
    border-radius: 0 !important;
}

.contact_form textarea,
.contact_form .ff-default textarea.ff-el-form-control {
    border-radius: 5px !important;
    border: 1px solid #C4C4C4 !important;
    height: 110px;
    resize: none;
    margin-top: 7px;
}

.contact_form p,
.contact-section p {
    color: var(--dark-color);
    margin-top: 15px;
}

.contact_form p a,
.contact-section p a {
    color: #FF0000;
    text-decoration: none;
}

body .contact_form .ff-btn {
    padding: 12px 25px;
    border-radius: 7px;
    font-size: 16px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: 0.45s allease-in-out;
    background-color: var(--color-warning) !important;
    border: 1px solid var(--color-warning);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-top: 100px;
    min-width: 130px;
}

body .contact_form p {
    margin-top: 0;
}

body .contact_form p:before,
body .contact_form p:after,
.contact-section .ff_submit_btn_wrapper:before,
.contact-section .ff_submit_btn_wrapper:after {
    content: none;
}

body .contact_form .ff-btn:hover {
    opacity: 0.8;
}

.contact_form .ff_submit_btn_wrapper {
    display: flex;
    justify-content: flex-end;
    padding-right: 7%;
}

body .contact_form .fluent_custom_checkbox {
    width: 15px !important;
    margin: 0 !important;
    position: relative !important;
    top: 24px !important;
}

body .contact_form .consent_text {
    padding-left: 25px !important;
    font-size: 15px !important;
}

html .fluentform .ff-el-form-check-label .ff-el-form-check-input {
    width: auto !important;
}


.contact_section .container {
    max-width: 1200px;
}

@media (max-width: 991.98px) {
    .contact_section {
        padding: 70px 0;
    }

    .contact_section .section_title {
        margin-bottom: 40px;
    }

    .contact_section h2:after {
        width: 150px;
        height: 10px;
    }

    .contact_info {
        padding: 30px 20px 150px 20px;
    }

    .contact_form {
        margin-top: 50px;
    }

    .contact_info:before {
        width: 100px;
        height: 100px;
        bottom: 30px;
        right: 30px;
    }

    .contact_info:after {
        width: 150px;
        height: 150px;
    }

    .contact_info h4 {
        margin-bottom: 40px;
    }

    body .contact_form .ff-btn {
        margin-top: 20px;
    }
}

/* ===== CONTACT SECTION STYLE END ===== */


/* ===== INDUSTRIES SECTION STYLE END ===== */
.industries__section {
    padding: 50px 0;
}

.industries__section .section__title,
.industries__section .section__title > p {
    max-width: 100%;
}

.industries__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 750px;
    margin: 0 auto;
    row-gap: 50px;
}


.industries__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    border-right: 1px solid var(--border-color);
    padding: 10px;
    font-size: 20px;
}

.industries__col > img {
    height: 50px;
    object-position: center;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .industries__row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 479.98px) {
    .industries__row {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries__col {
        font-size: 16px;
    }
}

/* ===== INDUSTRIES SECTION STYLE END ===== */


/* ===== REVIEWS SECTION STYLE START ===== */
.reviews__section {
    padding: 50px 0;
}

.reviews__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}


.reviews__card-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.reviews__row > div {
    width: 20%;
}

.reviews__row > div:nth-child(2),
.reviews__row > div:nth-child(4) {
    width: 40%;
}

.reviews__row > div:nth-child(4) {
    justify-self: center;
    margin: 0 auto;
}

.reviews__card {
    padding: 50px 20px;
    border-radius: 20px;
    transition: 0.35s all ease-in-out;
}

.reviews__card:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.reviews__card span {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.review__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.stars {
    color: #ffc107;
    display: flex;
    align-items: center;
    font-size: 16px;
}

@media (max-width: 991.98px) {
    .reviews__row > div {
        width: 27%;
    }

    .reviews__row > div:nth-child(2),
    .reviews__row > div:nth-child(4) {
        width: 40%;
    }

    .stars {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .reviews__row > div {
        width: 100% !important;
    }

    .stars {
        font-size: 14px;
    }

    .reviews__card {
        padding: 20px;
    }
}

/* ===== REVIEWS SECTION STYLE END ===== */

.web-text-section {
    padding: 120px 0;
}

.web-text-section .container {
    max-width: 1200px;
}