@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/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: "Figtree", sans-serif;
    --color-primary: #9DA2FF;
    --color-white: #FFFFFF;
    --text-color: #707070;
    --dark-color: #191919;
    --ftr-bg: #2A333A;
    --base-fonts: 18px;
}

body {
    background-color: var(--color-white);
    font-size: var(--base-fonts);
    line-height: 1.65;
    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 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.3rem, 5vw, 2.8rem);
    color: var(--dark-color);
}

h2,
.grid_title span,
body .category_title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--dark-color);
}

h3 {
    font-size: clamp(1.7rem, 3vw, 2.1rem);
    color: var(--dark-color);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--dark-color);
}

h5 {
    font-size: clamp(1.2rem, 2.5vw, 1.25rem);
    color: var(--dark-color);
}

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: 14px 30px;
    border-radius: 30px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 10px;
    transition: 0.35s all ease-in-out;
}

.btn .fa-phone-volume {
    transform: rotate(-45deg);
    display: inline-block;
    margin-top: -4px;
}

.btn i {
    font-size: 115%;
}

.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-link,
.btn-light {
    color: var(--color-primary);
}

.btn-outline-secondary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.btn-outline-secondary:hover img {
    filter: brightness(0) invert(1);
}

.container {
    max-width: 1130px;
    margin: 0 auto;
}

.container-lg {
    max-width: 1340px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}


.cta_group {
    display: inline-flex;
    align-items: stretch;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid #E3E3E3;
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    max-width: 555px;
    width: 100%;
    gap: 7px;
}

.cta_group > a {
    max-width: 300px;
    width: 100%;
}

.cta_group .btn-link {
    color: var(--dark-color);
    font-size: 18px;
}

.cta_group .btn-link:hover {
    background: var(--dark-color);
    color: var(--color-white);
}

.cta_group .cta_call i {
    font-size: 18px;
}

.grid_title .btn_group {
    margin-top: 5px;
}

.grid_title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.grid_title h1,
.grid_title h2 {
    margin-bottom: 0;
}

.grid_title span,
body .category_title {
    font-weight: 300;
    border-bottom: 2px solid var(--dark-color);
}

body .category_title {
    border: none;
}

.grid_title p,
.grid_title .info_subtitle {
    font-size: 24px;
    font-weight: 400;
    margin: 10px 0 0 0;
    min-height: 100px;
}


.section_title {
    max-width: 785px;
    margin: 0 auto 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section_title > * {
    margin: 0;
}

.section_title a {
    text-decoration: underline;
}


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

    .cta_group .btn,
    .btn {
        padding: 12px 15px;
        font-size: 16px;
    }

    .section_title {
        gap: 15px;
    }

    .grid_title {
        max-width: 500px;
        text-align: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== LAYOUT CONTAINERS ===== */


/*--- HEADER Style Start ---*/
header {
    position: relative;
}

header .header_inner {
    padding: 22px 0;
    background-color: #FAFAFA;
}

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

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

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 50px;
}

.navbar ul a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
}

.navbar ul a:hover {
    text-decoration: none;
    color: var(--color-primary);
}

header .header_strip {
    padding: 8px 0;
    border-bottom: 1px solid #EEEEEE;
    text-align: center;
}

header .header_strip p {
    margin: 0;
}

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

    .nav-menu, .navbar ul {
        gap: 15px;
    }

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

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

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

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

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

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

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

    /* Navbar Collapse Animation */
    header .navbar-collapse {
        border: 1px solid #EEEEEE;
        transition: 0.4s all ease-in-out;
        border-top: none;
        padding: 20px;
        background-color: var(--color-white);
        position: absolute;
        left: 0;
        top: calc(100% + 14px);
        width: 100%;
        border-radius: 0 0 10px 10px;
        opacity: 0;
        z-index: -1;
        visibility: hidden;
    }

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

    .header_btns {
        margin: 0 0 0 auto;
    }
}


@media (max-width: 767px) {
    header .navbar-brand {
        max-width: 150px;
    }

    .header_btns .btn svg {
        width: 15px;
    }

    header .navbar {
        display: flex;
        flex-wrap: nowrap;
    }

    header .btn-link {
        padding: 0;
        font-size: 15px;
        margin-right: 10px;
        gap: 5px !important;
    }

    header .header_strip p {
        font-size: 11px;
    }
}

/*--- HEADER Style End ---*/

/*--- Info Grid Section Style Start ---*/
.info_grid_section {
    padding: 65px 0 35px;
}

.info_grid_section:first-child {
    padding-bottom: 56px;
}

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


main > .info_grid_section:first-child {
    padding-top: 100px;
}

.info_grid_section + .next_section_info {
    border-top: 1px solid var(--dark-color);
    padding-top: 60px;
}

.info_grid_section .grid_img {
    max-width: 400px;
    margin-left: auto;
}

.info_grid_section .fa-circle-question {
    color: #F97B45;
}

.info_grid_section .grid_list h4 {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    text-align: left;
}

.info_grid_section .grid_list ul {
}

.info_grid_section .grid_list li {
    font-size: 20px;
    color: var(--dark-color);
}

.info_grid_section .grid_list li + li {
    margin-top: 12px;
}

.grid_img img {
    width: 100%;
    object-fit: contain;
}
.info_grid_section .cta_group {
    margin-top: 20px;
}

@media (max-width: 991.98px) {
    .info_grid_section .grid_img {
        margin: 0 auto;
    }

    .info_grid_section {
        padding: 60px 0;
    }

    .info_grid_section {
        text-align: center;
    }

    .info_grid_section .grid_list li {
        font-size: 15px;
        text-align: left;
    }

    .grid_title {
        align-items: center
    }

    .grid_title span {
        text-align: center;
        display: block;
    }

    .grid_title p,
    .grid_title .info_subtitle {
        font-size: 18px;
        min-height: auto;
    }
}

/*--- Info Grid Section Style End ---*/

/*--- Hero Section Style Start ---*/
.hero_section {
    position: relative;
    padding: 100px 0;
    background-color: #FFFFFF;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.hero_section .hero_inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.hero_section .hero_inner > span {
    text-decoration: underline;
}


.hero_section .hero_title {
    margin: 18px 0 10px;
    font-weight: 800;
    color: var(--dark-color);
    letter-spacing: -0.02em;
    font-size: clamp(2rem, 4.6vw, 3.25rem);
}

.hero_section p {
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: var(--text-color);
    margin-bottom: 26px;
    min-height: 60px;
}

.hero_section .cta_group {
    margin-top: 25px;
}

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

@media (max-width: 575.98px) {
    .hero_section {
        padding: 60px 0 45px;
    }
}

/*--- Hero Section Style End ---*/

/*--- Offer Section Style Start ---*/
.offer_section {
    padding: 80px 0;
}

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

.offer_card > * {
    margin: 0 !important;
}

.offer_card > h5 {
    font-size: 1.1rem;
}

.offer_card > img {
    width: 50px;
    margin: 0 auto;
}

.offer_card a {
    text-decoration: underline;
}

.offer_card p,
.offer_card .offer_desc {
    font-size: 15px;
}

.offer_desc p:last-child {
    margin-bottom: 0;
}

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

/*--- Offer Section Style End ---*/

/*--- Text with Image Section Style Start ---*/
.text_w_image_section {
    padding: 70px 0;
}

.text_w_info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 585px;
    margin-left: auto;
}

.text_w_image_section .row.flex-row-reverse .text_w_info {
    margin-left: 0;
}

.text_w_info > * {
    margin: 0;
}

.text_w_info > h2,
.text_w_info > h3,
.text_w_info > h4 {
    line-height: 1.65;
}

.text_w_info a {
    text-decoration: underline;
}

.text_w_img img {
    width: 100%;
    object-fit: contain;
}

.text_w_info .text_w_desc a {
    text-decoration: underline;
}

.text_w_info .text_w_desc p {
    margin: 0;
}

.text_w_info a {
    text-decoration: none;
}

.text_w_image_section .row + .row {
    margin-top: 30px;
}

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

    .text_w_info,
    .text_w_img {
        text-align: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/*--- Text with Image Section Style End ---*/

/*--- Feature Overview Section Style Start ---*/
.features_overview_section {
    padding: 70px 0;
}

.features_overview_section .section_title {
    max-width: 1050px;
}

.features_overview_section img {
    width: 100%;
    object-fit: contain;
}

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

}

/*--- Feature Overview Section Style End ---*/

/*--- Testimonials Section Style Start ---*/
.testimonials_section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.testimonial_card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 70px 25px 25px;
    margin: 40px 0 0 0;
    position: relative;
    border-radius: 7px;
    transition: 0.35s all ease-in-out;
}

/*.swiper-slide-active + .swiper-slide .testimonial_card,*/
.testimonial_card:hover {
    background-color: #f2f4f5;
}

.testimonial_card > * {
    margin: 0;
}

.testimonial_card p {
    font-size: 16px;
    line-height: 1.5;
}

.testimonial_card img {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-white);
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: -40px;
}

.testimonial_card *:last-child {
    margin-top: 35px;
}

body .swiper-pagination {
    margin-top: 25px;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
}

body .swiper-pagination > * {
    width: 15px;
    height: 15px;
}

body .swiper-pagination > *.swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    opacity: 1 !important;
}

@media (max-width: 767.98px) {
    .testimonial_card {
        padding-top: 45px;
    }

    .testimonial_card *:last-child {
        margin-top: 15px;
    }

    .testimonial_card img {
        width: 70px;
        height: 70px;
        top: -35px;
    }

    .testimonial_card {
        margin-top: 35px;
    }
}

/*--- Testimonials Section Style End ---*/

/*--- CTA Block Style Start ---*/
.cta_block_section {
    padding: 100px 0;
}

.cta_block {
    background-color: var(--color-primary);
    padding: 35px 20px;
    border-radius: 20px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta_block h3,
.cta_block h4,
.cta_block p,
.cta_block span {
    color: var(--color-white);
}

.cta_info {
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.cta_info > * {
    margin: 0;
}

.cta_info .btn {
    margin: 5px 0;
    padding-left: 35px;
    padding-right: 35px;
}

.cta_info p {
    font-size: 12px;
}

.cta_block .cta_text span {
    display: block;
    text-align: center;
}

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

    .cta_info {
        margin: 0 auto;
    }

    .cta_info .btn {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/*--- CTA Block Style End ---*/

/*--- Comparison Section Style Start ---*/
.comparison_section {
    padding: 60px 0;
    background-color: #F9F9F9;
}

.comparison_section .section_title {
    margin-bottom: 20px;
}

.comparison_table img {
    width: 100%;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .comparison_table {
        overflow: auto;
    }

    .comparison_table img {
        width: 850px;
    }
}

/*--- Comparison Section Style End ---*/

/*--- Text CTA Section Style Start ---*/
.text_cta_section {
    padding: 60px 0;
}

.text_cta_section .section_title {
    max-width: 100%;
    align-items: flex-start;
    margin-bottom: 25px;
}

.text_cta_section .cta_group {
    margin-bottom: 65px;
}

.text_cta_section .section_desc a {
    text-decoration: underline;
}

.text_cta_section .section_desc p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .text_cta_section .section_title {
        text-align: center;
        align-items: center;
    }

    .text_cta_section .cta_group {
        justify-content: center;
        margin-left: auto;
        display: flex;
        margin-right: auto;
    }

    .text_cta_section .cta_group {
        margin-bottom: 40px;
    }
}

/*--- Text CTA Section Style End ---*/

/*--- Title Section Style Start ---*/
.title_section,
.rich_text_section {
    padding: 80px 0;
}

.title_section {
    border-bottom: 1px solid #EEEEEE
}

.title_section .section_title {
    margin-bottom: 0;
}

.rich_text_text h1,
.rich_text_text h2,
.rich_text_text h3,
.rich_text_text h4 {
    margin-bottom: 15px;
}

.rich_text_section h1:first-child,
.rich_text_section h2:first-child,
.rich_text_section h3:first-child {
    text-align: center;
    margin-bottom: 35px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.rich_text_text a {
    text-decoration: underline;
}

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

.rich_text_text ul,
.rich_text_text ol {
    margin-bottom: 35px;
}

.rich_text_text ul {
    padding-left: 0;
    margin-top: 25px;
}

.rich_text_text ul li {
    display: flex;
    gap: 7px;
    align-items: flex-start;
}

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

.rich_text_text ul li:before {
    content: "✓";
    color: var(--color-primary);
    margin-right: 5px;
    margin-top: 3px;
}


@media (max-width: 991.98px) {
    .title_section,
    .rich_text_section {
        padding: 60px 0;
    }
}

/*--- Title Section Style End ---*/


/*--- Footer Style Start ---*/
footer {

}

footer .footer_top {
    background-color: var(--ftr-bg);
    padding: 150px 0 25px;
}

footer .cta_group {
    background-color: transparent;
    border-color: var(--text-color);
}

footer .cta_group .btn-link {
    color: var(--color-white);
}

footer .cta_group .btn-link:hover {
    color: var(--color-primary);
    background-color: var(--color-white);
}

footer .footer_bottom {
    background-color: var(--ftr-bg);
    padding: 25px 0;
    border-top: 1px solid var(--text-color);
}

footer .footer_bottom p {
    margin-bottom: 0;
    color: #C3C3C3;
    font-size: 12px;
}

footer .footer_bottom ul {
    padding: 0;
    list-style-type: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

footer .footer_bottom a {
    color: var(--color-white);
    text-decoration: underline;
    font-size: 12px;
    transition: 0.35s all ease-in-out;
}

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

@media (max-width: 991.98px) {
    footer .footer_top {
        padding-top: 70px;
    }

    footer .footer_bottom ul {
        justify-content: flex-start;
    }

    .cta_group .btn {
        font-size: 14px;
    }
}

/*--- Footer Style End ---*/

/*--- Text Section Style Start ---*/
.web-text-section {
    position: relative;
    padding: 100px 0;
    z-index: 1;
}


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

.web-text-section h1,
.web-text-section h2,
.web-text-section h3,
.web-text-section h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.web-text-section h2,
.web-text-section h3,
.web-text-section h4 {
    margin-bottom: 12px;
}

.web-text-section h1 {
    font-size: 35px;

}

.web-text-section h3 {
    font-size: 21px;
}

.web-text-section h4 {
    font-size: 18px;
}

.web-text-section h1 + p {
    color: #8184A3;
}

.web-text-section li,
.web-text-section p {
    color: #8184A3;
}

.web-text-section p {
    margin: 0 0 20px 0;
}

.web-text-section .table {
    margin-bottom: 35px;
}

.web-text-section table thead {
    vertical-align: middle;
}

.web-text-section table thead tr {
    border: none;
}

.web-text-section table th {
    border-bottom: none;
    text-align: center;
}

.web-text-section table {
    margin-bottom: 35px;
}

.web-text-section table th,
.web-text-section table th p,
.web-text-section table td p {
    color: var(--dark-color);
}

.web-text-section table {
    border-collapse: collapse;
    border-spacing: 0;
}

.web-text-section table > :not(caption) > * > * {
    padding: .75rem;
}

.web-text-section table th {
    font-size: 20px;
}

.web-text-section table th:last-child {
    min-width: 210px;
}

.web-text-section .text-main-content a {
    color: #DC110B;
    text-decoration: underline;
}

.web-text-section .text-main-content a:hover {
    text-decoration: none;
}

.web-text-section table {
    color: var(--text-color);
    vertical-align: top;
}

.web-text-section tbody,
.web-text-section td,
.web-text-section tfoot,
.web-text-section th,
.web-text-section thead,
.web-text-section tr {
    border-width: 1px;
}

.web-text-section strong,
.web-text-section b {
    font-weight: 700 !important;
}

.web-text-section h1 + p strong {
    color: var(--dark-color);
}

@media (max-width: 767.98px) {
    .web-text-section table {
        width: 530px;
    }
}

/*--- Text Section Style End ---*/