/**
* Template Name: iLanding
* Template URL: https://bootstrapmade.com/ilanding-bootstrap-landing-page-template/
* Updated: Nov 12 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Roboto",  sans-serif;
    --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #191b36; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0d83fd; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --light-background-color: #f3f9ff;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #212529;  /* The default color of the main navmenu links */
    --nav-hover-color: #0d83fd; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #0d83fd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
    --yellow: #F0C015;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f3f9ff;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #0d83fd;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #409dfd;
    --contrast-color: #ffffff;
}

.accent-color {
    color: var(--accent-color);
}


.yellow{
    color: #F0C015;
}

.line-after{
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.line-after::after{
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.mw-850{
    max-width: 850px;
    margin:0 auto;
    text-align: center;
}
.mw-700{
    max-width: 700px;
    margin:0 auto;
    text-align: center;
}

.h2{
    font-size: 48px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .line-after{
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        position: relative;
    }
}



/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    background-color: rgba(254,254,254,1);
    font-family: var(--default-font);
}

p{
    font-size: 17px;
}

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

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}


.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 20%);
    border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.btn i{
    margin-left: 0.5rem;
    transition: left 0.4s ease;
    position: relative;
    left: 0;
}
.btn:hover i{
    left: 0.3rem;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/


.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background: var(--surface-color);
    transition: all 0.5s;
    border-bottom: 1px solid #eee;
}

.header .header-container {
    padding: 5px 0;
}

.scrolled .header .header-container {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
}


header .logo img {
    max-height: 28px
}

@media  only screen and (max-width: 767px) {
    header .logo img{
        max-height:27px;
    }
}



.header .btn-search{
    font-size: 20px;
    padding: 12px; /* Adjust for better balance */
    margin: 0 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
}

.btn-trackorder, .btn-trackorder:focus{
    color: var(--contrast-color) !important;
    background: var(--accent-color);
    font-size: 14px !important;
    padding: 8px 20px !important;
    margin: 0 0 0 10px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-trackorder:hover, .btn-trackorder:focus {
    background-color: color-mix(in srgb, var(--accent-color), black 20%);
    border-color: color-mix(in srgb, var(--accent-color), black 20%);
}



@media (max-width: 1200px) {

    .btn-trackorder, .btn-trackorder:focus{
        padding: 12px 20px !important;
        border-radius: 6px;
        margin: 10px 20px;
    }

    .header {
        padding-top: 10px;
    }

    .header .header-container {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px 5px 10px 15px;
    }

    .header .logo {
        order: 1;
    }

    .header .btn-search {
        order: 2;
        margin: 0 10px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */

.navmenu button{
    background: transparent;
    border: none;
}
.navmenu button:after{
    display: none;
}

@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu button,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu button i,
    .navmenu button:focus i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }


    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 5px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown > ul {
        opacity: 0;
        top: 120%;
        visibility: hidden;
        transition: all 0.3s ease;
        position: absolute; /* adjust depending on your layout */
        z-index: 100;
    }

    .navmenu .dropdown.dropdown-active > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown.dropdown-active button {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-color);
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 999;
        position: relative;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu button{
        width: 100%;
    }

    .navmenu button,
    .navmenu button:focus,
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu button i,
    .navmenu button:focus i,
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu .dropdown-toggle:hover i{
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu button i:hover,
    .navmenu button:focus i:hover,
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 0 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul a {
        padding: 5px 20px;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 12px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

footer .social-icons {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style-type: none;

}

footer .social-icons li{
    margin-right: 10px;
    border: 1px solid #f3f3f3;

}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

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

.footer-links-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 0 0 20px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:last-child {
    padding-bottom: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

@media (max-width: 1200px) {
    .footer-links-grid{
        display: block;
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 170px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}



.page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.page .content-area{
    background: #fff;
    padding: 50px;
    border: 1px solid #eee;
    border-radius: 5px;
}

@media (max-width: 767.98px) {
    .page h1{
        font-size: 2rem;
    }

    .page .content-area{
        padding: 20px ;
    }

    .page .content-area h2{
        font-size: 22px;
    }
}



/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {
    .section {
        scroll-margin-top: 66px;
    }
}


/*--------------------------------------------------------------
# Modal Search Section
--------------------------------------------------------------*/
.btn-search{
    cursor: pointer;
}
.modal-search-container{
    background: var(--background-color);;
    background: #f2f2f2;;
    margin: 0;
    max-width: 100%;
    width: 100%;
    cursor: auto;
    position: fixed; /* Use fixed positioning to keep it in place */
    top: 0; /* Align to the top of the page */
    left: 0;
    right: 0;
    height: 70px;
    opacity: 0; /* Initially invisible */
    transform: translateY(-100%); /* Start off-screen */
    z-index: 2000; /* Make sure it's above other elements */
    transition: transform 0.5s ease-out, opacity 0.5s ease-out; /* Smooth slide and fade */
}

.modal-search.active .modal-search-container {
    transform: translateY(0); /* Slide into view */
    opacity: 1; /* Fade in */
}

.modal-search-container input {
    height: 70px;
    width: 100%;
    padding-left: 4rem;
    padding-right: 3rem;
    border: none;
    outline: none;
    background: #fff
}



.modal-search-container .search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 2rem; /* Adjust to position the icon properly */
    font-size:  18px; /* Icon size */
    color: #959ca9; /* Icon color */
    pointer-events: none; /* Prevent icon from interfering with input */
}

.modal-search-container .close-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem; /* Adjust to position the icon properly */
    font-size:  30px; /* Icon size */
    color: #959ca9; /* Icon color */
    cursor: pointer;
}
.modal-search-container .close-icon:hover {
    color: #000;
}

.modal-search .offcanvas-backdrop {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(30, 34, 40, 0.7); /* Background color */
    opacity: 0; /* Initially invisible */
    transition: opacity .3s linear;
    z-index: 1040;
}

.modal-search.active .offcanvas-backdrop {
    display: block; /* Make it visible */
    opacity: 1; /* Fade in */
}

/* Style for the autocomplete container */
.autocomplete-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%; /* Position it below the input field */
    right: 0; /* Make sure the dropdown extends to the right edge */
    width: calc(100% - 24px); /* Adjust the width to match the input (subtracting padding) */
    max-height: 300px; /* Set a max height */
    overflow-y: auto; /* Allow scrolling if content exceeds max height */
    background-color: #fff; /* White background */
    border: 1px solid #ccc; /* Border for the list */
    border-radius: 0 0 4px 4px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Drop shadow for better visibility */
    z-index: 1000; /* Ensure it appears above other elements */
    display: none; /* Hidden by default */
    left: 12px;
}

.autocomplete-list li {
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
}

.autocomplete-list li:first-of-type{
    font-weight: 700;
    background: white !important;
    padding: 6px 15px;
    cursor: auto;
}

.autocomplete-list li:hover {
    background-color: #F8F8F8 /* Highlight item on hover */
}

/* Style for the 'No results found' item */
.autocomplete-list .no-results {
    color: #999;
    padding: 8px;
    text-align: center;
}

/* Style for the 'Reach results' item */
.autocomplete-list .reach-results {
    color: #999;
    padding: 8px;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 992px) {

    .modal-search-container .container{

    }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-item {
    height: 100%;
    padding: 30px;
    background: var(--surface-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    flex-direction: column;
    border: 1px solid #eee;
    background: #f9f9f9;
}

.features-item .icon {
    width: 60px;
    height: 60px;
    margin-right: 30px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--surface-color);
    font-size: 28px;
    transition: all 0.3s ease;
    line-height: 1;
    margin-bottom: 15px;
}

.features-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}


@media (max-width: 992px) {
    .features-item {
        padding: 20px;
    }



    .features-item .icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .features-item h3{
        font-size: 19px;
    }
}



/*--------------------------------------------------------------
# Product Hero Section
--------------------------------------------------------------*/


.product-info h1 span{
    color: var(--accent-color);
}

.product-features {
    display: flex;
    gap: 2rem;
}

.product-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 15px;
}

.product-features .feature-item i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.product-image{
    padding: 0 80px;
}

@media (max-width: 992px) {
    .product-image img{
        max-width: 150px;
    }

    .call-to-action {
        padding: 40px 0 !important;
    }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding-bottom: 30px;
    position: relative;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
    pointer-events: none;
}

.hero .hero-content {
    position: relative;
    z-index: 1;
}

.hero h1, .product-info h1{
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .hero .hero-content, .product-info{
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero h1, .product-info h1 {
        font-size: 2.5rem;
    }

    .hero .hero-buttons{
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero h1, .product-info h1 {
        font-size: 2rem;
    }
}

.hero .hero-image {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero .hero-image img {
    max-width: 100%;
    height: auto;
}

.hero .customers-badge {
    flex-direction: row;
    display: flex;
    font-size: 1rem;
    padding-top: 1rem;
}

.hero .customers-badge .customer-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--surface-color);
    margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
    margin-left: 0;
}

.hero .customers-badge .avatar.more {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero .customers-badge p {
    margin-left: 10px;
    color: var(--default-color);
}

@media (max-width: 992px) {
    .hero .customers-badge {
        flex-direction: column;
        align-items: center;
    }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.rating {
    direction: rtl;
    display: flex;
    gap: 5px;
}

.rating input[type="radio"] {
    display: none;
}

.rating label {
    font-size: 16px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating label:hover,
.rating label:hover ~ label {
    color: var(--yellow);
}

.rating input[type="radio"]:checked ~ label {
    color: var(--yellow);
}

.review-item {
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #f3f9ff;
}

.review-item .review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.review-item .review-header .reviewer-info {
    display: flex;
    text-align: left;
}


.review-item .review-header .reviewer-info .reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-item .review-header .reviewer-info .review-date {
    font-size: 0.75rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);

    text-align: left !important;
}

.review-item .review-header .review-rating i {
    color: var(--yellow);
    margin-right: 2px;
}

.star-gray{
    color: #ccc !important;
}

.review-item .review-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
    text-align: left !important;
}

.review-item .review-content p {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    text-align: left !important;
}

.hidden{
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

/* Add this to your styles */
#reviews-list {
    transition: opacity 0.9s ease;
    opacity: 1;
}

#reviews-list.fading-out {
    opacity: 0;
    pointer-events: none;
}


.page-button-wrapper button{
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid rgba(8,60,130,.1);
    transition: all 1s ease;
    margin: 0 2px;
    background: #f9f9f9;;
}
.page-button-wrapper .current{
    background: #0d83fd;
    border-color: #0d83fd;;
    color: white;
}

.button-next, .button-prev{
    background: transparent;
    border: none;
    padding: 0;
    font-weight: bold;
    color: #0d83fd;
}

.current { background: #007bff; color: white; }
.ellipsis { margin: 0 5px; }



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    background: #fff;
    padding: 20px 0;
}

.testimonials-marquee {
    display: flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.testimonials-marquee:hover {
   /* animation-play-state: paused;*/
   /*cursor: pointer;*/
}

.testimonials-track {
    display: flex;
}


@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-cards .testimonials-card {
    background: var(--surface-color);
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
    border-radius: 0.5rem;
    padding: 1rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;
    max-width: 300px;
    margin-right: 20px;
    position: relative;
}
.testimonials-cards .testimonials-card::after {
    content: "❝";
    position: absolute;
    top: -20px;
    font-size: 110px;
    pointer-events: none;
    z-index: 100;
    color: #f2f8fe;
    right: 30px;
}

.testimonials-cards .testimonials-card:hover {
    transform: translateY(-5px);
}

.testimonials-cards .testimonials-card .testimonials-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-cards .testimonials-card .testimonials-image img {
    max-height: 100%;
    max-width: 90px;
    object-fit: contain;
}

.testimonials-cards .testimonials-card .testimonials-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
    transition: 0.3s;
}

.testimonials-cards .testimonials-card .testimonials-text {
    min-height: 120px;
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .testimonials-cards .testimonials-slider .swiper-button-prev {
        left: -15px;
    }

    .testimonials-cards .testimonials-slider .swiper-button-next {
        right: -15px;
    }

    .testimonials-cards .testimonials-card {
        padding: 0.75rem;
    }

    .testimonials-cards .testimonials-card .testimonials-image {
        height: 100px;
        margin-bottom: 0.75rem;
    }

    .testimonials-cards .testimonials-card .testimonials-title {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .testimonials-cards .testimonials-card .testimonials-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {

    .testimonials-cards .testimonials-slider .swiper-button-prev,
    .testimonials-cards .testimonials-slider .swiper-button-next {
        width: 35px;
        height: 35px;
    }

    .testimonials-cards .testimonials-slider .swiper-button-prev::after,
    .testimonials-cards .testimonials-slider .swiper-button-next::after {
        font-size: 0.85rem;
    }

    .testimonials-cards .testimonials-card .testimonials-image {
        height: 90px;
    }
}

@media (max-width: 575.98px) {
    .testimonials-cards .testimonials-slider .swiper-button-prev {
        left: -10px;
    }

    .testimonials-cards .testimonials-slider .swiper-button-next {
        right: -10px;
    }

    .testimonials-cards .testimonials-card {
        padding: 0.5rem;
    }

    .testimonials-cards .testimonials-card .testimonials-image {
        height: 80px;
        margin-bottom: 0.5rem;
    }
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about{
    padding-top: 76px; padding-bottom:76px

}

.about .about-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.about .about-arrow {
    color: var(--accent-color);
}

.about .card{
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.065);
    border: 1px solid #eee;
}

.about .card-body{
    background-color: #fff;
    flex: 1 1 auto;
    padding: 2rem;
    border-radius: 10px;
}

.about .w-13 {
    width: 3rem !important;
    margin-right: 2rem;
}

@media (min-width: 900px) {
    .about .position-lg-sticky{
        position: sticky;
        top: 60px;
    }
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 60px;
    gap : 0;
}

.stats .stats-item {
    width: 100%;
    position: relative;
    padding-left: 20px;
}

.stats .stats-item:after {
    content: "";
    position: absolute;
    display: block;
    top: 20px;
    width: 1px;
    height: 65%;
    background: var(--accent-color);
    left: 0;
}

.stats .stats-item span {
    color: var(--accent-color);
    font-size: 48px;
    display: block;
    font-weight: 700;
    position: relative;
}

.stats .stats-item p {
    color: var(--heading-color);
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 500;
}

@media (max-width: 768px) {

    .hero.section{
        padding-bottom: 0;
    }

    .stats.section{
        padding-top: 0 ;
    }

    .hero.section{
        padding-top: 50px ;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0;
    }

    .stats .stats-item span {
        font-size: 28px !important;
    }

    .stats .stats-item:after {
        height: 100% !important;
        top: 0 !important;
        left: 5px !important;
    }

    .stats .stats-item p {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# Growth Section
--------------------------------------------------------------*/
.growth-image{
    border-radius: 20px;
    border: 1px solid #eeeeee;
    padding: 0 40px;
}

@media (max-width: 992px) {

    .growth{
        text-align: center;
    }

    .growth-image{
        padding: 0 20px;
    }
}

/*--------------------------------------------------------------
# Forms Section
--------------------------------------------------------------*/

.error-message,  .sent-message {
    display: block;
    text-align: left;
    margin-top: 15px;
    padding: 15px;
    color: #c52c46;
    font-weight: 500;
    background: #ffecec;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.sent-message {
    color: #2d9f53;;
    background: #e6f5e5;
}

.loading:before {

    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 15px 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: form-loading 1s linear infinite;
}

@keyframes form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.placeholder-float  label{
    color: #959ca9;
    top: 0;
    left: 0;
    height: 100%;
    font-size: 15px;
    z-index: 2;
    padding: 15px 20px;
    text-align: start;
    transition: font-size .1s ease-in-out, top .1s ease-in-out;
    cursor: text;
}

.placeholder-float  label span{
    position: relative;
    top: 1px;
}

.placeholder-float ~ label::after, .placeholder-float > .form-control:focus ~ label::after{
    position: absolute;
    inset: .6rem .5rem;
    z-index: -1;
    height: 1.5em;
    content: "";
    border-radius: .4rem;
}

.placeholder-float > .form-control:focus ~ label, .placeholder-float  > .form-control:not(:placeholder-shown) ~ label {
    font-size: 13px;
    top: -10px;
    pointer-events: none;
}

.primary-form {
    background: var(--surface-color);
    padding: 50px 40px;
    border: 1px solid #eee;
    box-shadow: 0 0 1rem rgba(30,34,40,.06);
    border-radius: 5px;
}

.primary-form h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 20px 0;
    transition: 0.3s;
}


.primary-form .form-control,
.primary-form .form-select {
    padding: 14px 20px;
    background: #f9f9f9;;
    color: var(--default-color);
    border-radius: 0;
    border: 1px solid rgba(8,60,130,.1);
    box-shadow: rgba(30, 34, 40, 0.04) 0px 0px 25px 0px;
    transition: border-color .15s ease-in-out, background-color .15s ease-in-out !important;
}

.primary-form .form-control:focus, .placeholder-float  > .form-control:not(:placeholder-shown){
    box-shadow: none;
    background: var(--surface-color);
    padding: 20px 20px  8px  20px;
}

.primary-form .form-control:focus{
    border-color: var(--accent-color);
}

.primary-form select.form-select:focus{
    padding: 14px 20px;
    box-shadow: none;
    border-color: var(--accent-color);
    background: var(--surface-color);
}

.primary-form .form-control::placeholder,
.primary-form .form-select::placeholder {
    color: transparent;
}



@media (max-width: 768px) {
    .primary-form {
        background: var(--surface-color);
        padding: 30px 20px;
        border: 1px solid #eee;
        box-shadow: 0 0 1rem rgba(30,34,40,.06);
        border-radius: 5px;
    }

    .error-message,  .sent-message{
        padding: 12px;
    }

    .section-title h1{
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

}




/*--------------------------------------------------------------
# Checkout Section
--------------------------------------------------------------*/
header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background: var(--surface-color);
    transition: all 0.5s;
    border-bottom: 1px solid #eee;
    text-align: center;
    position: relative;
}

header a.back{
    display: block;
    font-weight: 600;
    text-decoration: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 21px;
    padding-left: 16px;
    color: #000;
}

header a.back i{
    font-size:28px;
}

.logo-contain{
    text-align: center;
    padding: 21px 0;
}

.logo-contain img{
    max-height:28px;
}



.checkout, .complete{
    margin: 80px auto;
}


.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Hide default arrow */
.select-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 30px; /* Space for the custom arrow */
}

/* Custom arrow */
.select-wrapper::after {
    content: '\2193'; /* Unicode for downward arrow */
    font-size: 16px;
    color: #333;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* So the arrow doesn't block clicks */
}

.estimate, .sample{
    float: right;
    display: block;
    background: #fff3e2;
    padding: 0px 10px;
    line-height: 26px;
    font-size: 14px;
    border-radius: 3px;
}

.sample{
    background: #000;
    color: white;
    cursor: pointer;
}

.btn_url_close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #ea3434;
    cursor: pointer;
}

.sample-box {
    position: relative;
    background: var(--light-background-color);
    padding: 10px 20px;
    color: #051b2c;
    border-radius: 3px;
    margin-bottom: 0;

    font-size: 14px;
}

.sample-box i{
}

.payment-methods{
    width: 100%;
    display: block;
    text-align: center;
    padding: 20px;
    margin-top: 22px;
    border-radius: 10px;
}

.payment-methods  p{
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
}

.payment-method-icons{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}


.payment-methods img{
    height: 30px;
    margin-right: 10px;
    border: 1px solid #eee;
}

@media  only screen and (max-width: 767px) {
    .logo-contain img{
        max-height:22px;
    }

    header a.back{
        left: 0;
    }

    .checkout, .complete{
        margin: 40px auto;
    }
}

/*--------------------------------------------------------------
# Product About Section
--------------------------------------------------------------*/

.product-about {
    padding-top: 80px;
}

.product-about .about-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}


.product-about .about-description {
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}


.product-about .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-about .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .product-about .feature-list li:last-child {
        margin-bottom: 0;
    }
}



.product-about .feature-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.product-about .image-wrapper img{
    max-width: 70%;
}


@media (max-width: 992px) {

    .section{
        padding: 40px 0;
    }

    .product-about .about-description {
        margin-bottom: 1.5rem;
    }

    .product-about .feature-list li {
        margin-bottom: .75rem;
    }

    .product-about .main-image{
        max-width: 65% !important;
        margin-top:1.5rem;
    }

    .product-about .feature-list-wrapper {
        margin-bottom: 0;
    }

}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
    background: var(--accent-color);
    color: var(--contrast-color);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 4rem 2rem;
}

.call-to-action h2 span{
    font-weight: 500;
}


.call-to-action .content h2,
.call-to-action .content p {
    color: var(--contrast-color);
    position: relative;
    z-index: 2;
}

.call-to-action .btn-cta {
    background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
    color: var(--contrast-color);
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--contrast-color);
    position: relative;
    z-index: 2;
}

.call-to-action .btn-cta:hover {
    background-color: var(--contrast-color);
    color: var(--accent-color);
}

.call-to-action .shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.call-to-action .shape svg {
    width: 100%;
    height: 100%;
}

.call-to-action .shape svg path {
    fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    opacity: 0.1;
    transform: rotate(45deg);
    animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    opacity: 0.15;
    transform: rotate(-15deg);
    animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    opacity: 0.08;
    transform: rotate(15deg);
}

.call-to-action .dots {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    color: var(--contrast-color);
}

.call-to-action .dots svg {
    width: 100%;
    height: 100%;
}

.call-to-action .dots-1 {
    width: 200px;
    height: 200px;
    top: -30px;
    left: 10%;
    opacity: 0.1;
    transform: rotate(15deg);
    animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
    width: 150px;
    height: 150px;
    bottom: 20px;
    right: 15%;
    opacity: 0.15;
    transform: rotate(-10deg);
}

@keyframes shapes-float {

    0%,
    100% {
        transform: scale(0.8) rotate(45deg) translateY(0);
    }

    50% {
        transform: scale(0.8) rotate(45deg) translateY(-20px);
    }
}

@media (max-width: 992px) {
    .call-to-action .container {
        padding: 3rem 1.5rem;
    }

    .call-to-action .shape-1 {
        width: 200px;
        height: 200px;
    }

    .call-to-action .shape-2 {
        width: 150px;
        height: 150px;
    }

    .call-to-action .shape-3 {
        width: 100px;
        height: 100px;
    }

    .call-to-action .dots-1 {
        width: 150px;
        height: 150px;
    }

    .call-to-action .dots-2 {
        width: 120px;
        height: 120px;
    }

    .call-to-action .dots-3 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 575px) {
    .call-to-action .container {
        border-radius: 0;
    }
}


/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/

.timeline{
    gap: 70px;
    margin-top: 20px;
}

.timeline-item {
    position: relative;
    display: block;
    text-align: center;
    counter-increment: timeline-counter;
    width: 100%;
}

.timeline-item.dash-one:after{
    background-image: url(../img/dash.png);
    background-position: center center;
    height: 2px;
    display: block;
    top: 20px;
    position: absolute;
    width: 100%;
    content: "";
    left: 50%;
}

.timeline-item.dash-two:after{
    background-image: url(../img/dash.png);
    background-position: center center;
    height: 2px;
    display: block;
    top: 20px;
    position: absolute;
    width: 100%;
    content: "";
    right: 50%;
    transform: rotate(180deg);
}

.timeline-item h4{
    display:flex;
    align-items: center;
    color: var(--default-color);
}

span.icon{
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    background-color: #fdeded;
    align-content: center;
    align-items: center;
    border-radius: 10px;
    color:#f28484;
    font-size: 28px;
}

span.icon-green{
    background-color: #f3f8f5;
    color: #48c88a;;
}

span.icon-yellow{
    background-color: #fff3e2;
    color: #edb86e;;
}

.timeline-heading{
    font-size: 20px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 50px;
}

.timeline-heading span{
    display: inline-block;
    height: 40px;
    width: 40px;
    color: white;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 5px;
    font-weight: 400;
}

.timeline-heading .title{
    background: var(--light-background-color);
    display: inline-block;
    position: relative;
    z-index: 10;
    padding: 0 30px;
}

.timeline-item-body{
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 24px;
    background: white;
    text-align: left !important;
    position: relative;
    z-index: 10;
}

.timeline-item-body > div{
    display: flex;
    gap: 10px;
    margin-bottom: 10px
}

@media (max-width: 992px) {


    .timeline{
        flex-direction: column;
    }

    .timeline-heading{

        margin-bottom: 0;
    }

    .timeline-heading .title{;
        padding-bottom: 15px;
    }

    .timeline-item.dash-one:after{
        transform: rotate(90deg);
        left:0;
        right: 0;
        top: 300px;
    }

    .timeline-item.dash-two:after{
        transform: rotate(270deg);
        left:0;
        right: 0;
        top: -5px;
    }
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/


.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 23px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 80px 0;
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    font-size: 38px;
    font-weight: 700;
    color: var(--default-color);
}

@media (max-width: 767.98px) {
    .call-to-action h3, .h2{
        font-size: 26px;
    }
}

.call-to-action p {
    color: var(--default-color);
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
    color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
    background: white;
    color: var(--accent-color);
}

.call-to-action p{
    max-width:850px;
    margin: 0 auto;
}

.underline-text.yellow{
    color: var(--bs-heading-color);
}

.underline-text.yellow::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 205 9.37'%3E%3Cpath fill='%23fab758' d='M202.47,9.37A1191.26,1191.26,0,0,0,1.79,7.48,1.67,1.67,0,0,1,0,5.92H0A1.76,1.76,0,0,1,1.63,4.21c67-5.71,133.83-5.43,200.8-.27A2.75,2.75,0,0,1,205,6.88h0A2.6,2.6,0,0,1,202.47,9.37Z'/%3E%3C/svg%3E");
}

.underline-text::after {
    content: "";
    position: absolute;
    z-index: -1;
    display: block;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    left: 50%;
    bottom: -.2em;
    width: 110%;
    height: .3em;
    transform: translateX(-50%);
}


