/*   Segoe UI Font   */

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/segoe-ui font/Segoe UI ExtraLight.ttf") format("truetype");
    font-weight: 200;
    /* Extra Light */
    font-style: normal;
}

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/segoe-ui font/Segoe UI light.ttf") format("truetype");
    font-weight: 300;
    /* Light */
    font-style: normal;
}

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/segoe-ui font/Segoe UI Regular.ttf") format("truetype");
    font-weight: 400;
    /* Regular */
    font-style: normal;
}

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/segoe-ui font/Segoe UI SemiBold.ttf") format("truetype");
    font-weight: 600;
    /* SemiBold */
    font-style: normal;
}

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/segoe-ui font/Segoe UI Bold.ttf") format("truetype");
    font-weight: 700;
    /* Bold */
    font-style: normal;
}

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/segoe-ui font/Segoe UI Black.ttf") format("truetype");
    font-weight: 900;
    /* Black */
    font-style: normal;
}

/*   Segoe UI Font   */

/* Variable    */

:root {
    /* 🔵 Primary - Royal Blue */
    --primary-color: #047dfa;         /* Main vibrant blue */
    --primary-light: #E6F0FF;         /* Soft blue background */
    --primary-dark: #004B9E;          /* Deep blue for hover/active */

    /* 🟣 Secondary - Regal Purple (complement to blue) */
    --secondary-color: #0d0e0e;       /* Deep purple with authority */
    --secondary-light: #0F1115;       /* Light lavender hint */
    --secondary-dark: #0d0e0e;        /* Dark royal purple */

    /* ⚪ Neutrals - Sleek & Modern */
    --dark-color: #0F1115;            /* Jet black for dark modes */
    --darker-gray: #2B2B2B;           /* Deep gray for cards/sections */
    --gray-color: #6C6C6C;            /* Mid-gray for texts and icons */
    --light-gray: #D1D5DB;            /* Light borders & dividers */
    --light-color: #F9FAFB;           /* Softest background */
    --white-color: #FFFFFF;           /* Absolute white */

    /* 🎨 Accents - Polished and Modern */
    --accent-color: #FF6B6B;          /* Fresh coral red for buttons/tags */
    --success-color: #00C896;         /* Emerald green for success */
    --warning-color: #FFB100;         /* Vibrant amber for alerts */
    --danger-color: #E63946;          /* Strong alert red */

    /* 🌫️ Extras */
    --overlay-color: rgba(15, 17, 21, 0.7);     /* Modal backdrop */
    --shadow-color: rgba(0, 0, 0, 0.08);        /* Soft UI shadow */
}


/* Variable */

/* Reset the default */
html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box !important;
    text-decoration: none !important;
}

a {
    color: var(--dark-color);
    text-decoration: none !important;
}

a * {
    color: inherit;
}

a:hover {
    color: inherit;
}

body {
    font-family: "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-color);
    background-color: var(--primary-light);
    height: 100vh;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

footer {
    margin-top: auto;
}


p {
    margin-bottom: 0 !important;
}

input:focus,
button:focus {
    box-shadow: none !important;
    border: none;
    outline: none;
    background-color: transparent;
}

img {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* Reset the default */


/* GENERAL STYLE */
.bg--primary {
    background-color: var(--primary-color);
}

.bg--primary-light {
    background-color: var(--primary-light);
}

.clr--primary {
    color: var(--primary-color);
}

.bg--secondary {
    background-color: var(--secondary-color);
}

.clr--secondary {
    color: var(--secondary-color);
}

.bg--dark {
    background-color: var(--dark-color);
}

.clr--dark {
    color: var(--dark-color);
}

.bg--light {
    background-color: var(--light-color);
}

.clr--light {
    color: var(--light-color);
}

.bg--gray {
    background-color: var(--gray-color);
}

.clr--gray {
    color: var(--gray-color);
}

.py-120 {
    padding-block: 120px;
}

.py-100 {
    padding-block: 100px;
}

.py-80 {
    padding-block: 80px;
}

.py-60 {
    padding-block: 60px;
}

.py-40 {
    padding-block: 40px;
}

h1.lg-heading {
    font-weight: 600;
    color: var(--dark-color);
}

h1.lg-heading span {
    color: var(--primary-color);
}

.subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-color);
}

/* THEME BUTTON */
.theme-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    font-size: 18px;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 99px;
    border: none;
    box-shadow: 0px 10px 22px 0px #F756394F;
    transition: all .3s ease-in-out;
}

.theme-btn:hover {
    color: var(--light-color);
    background-color: var(--secondary-color);
    box-shadow: 0px 10px 22px 0px rgba(18, 18, 18, 0.3);
}

/* THEME BUTTON */

/* PLAY BUTTON  */
.play-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    background-color: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all .3s ease-in-out;
    position: relative;
}

.play-btn p {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

.play-btn span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(247, 86, 57, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    font-size: 16px;
    color: var(--primary-color);
    position: relative;
}

.play-btn span::before {
    content: "";
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    -webkit-animation: wave 1.7s infinite linear;
    animation: wave 1.7s infinite linear;
}

@keyframes wave {
    0% {
        transform: scale(0);
        opacity: .1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.play-btn:hover span {
    color: var(--white-color);
    background-color: var(--dark-color);
}

/* PLAY BUTTON  */

.back-to-top.show {
    bottom: 40px;
    right: 40px;
    opacity: 1;
    transform: scale(1);
}

.back-to-top {
    position: fixed;
    bottom: -40px;
    right: 40px;
    display: block;
    width: 45px;
    height: 45px;
    line-height: 46px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: medium;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.3);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, .2);
    z-index: 9;
    transition: all .3s ease-in-out;
    overflow: hidden;
}

.back-to-top.show:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    bottom: 45px;
    opacity: 1;
}


.nav-link {
    width: max-content;
    position: relative;
}

.nav-link:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: bottom right;
    background: var(--primary-color);
    transition: transform 0.25s ease-out;
}

.nav-link:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* GENERAL STYLE */


/*  HEADER STYLE START  */
header .navbar-brand {
    padding: 0;
}

header .navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 400;
    padding: 10px 16px !important;
}

header .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

header .dropdown-item.active,
header .dropdown-item:active {
    color: var(--white-color);
    text-decoration: none;
    background-color: var(--primary-color);
}

header .dropdown-toggle.btn.show {
    border: none !important;
}

header .navbar-toggler {
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 22px;
    line-height: 1;
    color: var(--white-color);
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

header .navbar-toggler:hover {
    color: var(--white-color);
    background-color: var(--dark-color);
}

.demo-btn {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-block: auto;
    margin-right: 20px;
    transition: all .3s ease-in-out;
}

.demo-btn:hover {
    color: var(--dark-color);
}

.bar {
    width: 100%;
    height: 1px;
}

.page-header {
    width: 100%;
    transition: all 0.3s cubic-bezier(.72, .63, .34, .99);
}

.page-header.is-sticky {
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    background-color: var(--light-color);
    animation: slideDown 0.4s ease-in-out;
    z-index: 999;
}

.page-header nav.navbar {
    padding: 16px 0;
}

.page-header.is-sticky nav.navbar {
    padding: 10px 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header .offcanvas-header {
    border-bottom: 1px solid #ECECEC;
}

header .offcanvas-header,
header .offcanvas-body {
    padding: 30px;
}

.offcanvas .btn-close {
    color: var(--dark-color) !important;
    opacity: 1;
    transition: all .3s ease-in-out;
    font-size: 20px;
}

.offcanvas .btn-close:hover {
    color: var(--dark-color) !important;
    opacity: 1;
    transform: rotate(180deg);
}

/*  HEADER STYLE END   */

/*  HERO SECTION STYLE START  */
.hero-section h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.hero-section h1 span {
    color: var(--primary-color);
}

.hero-section .lg-text {
    font-size: 22px;
    font-weight: 400;
    color: var(--gray-color);
}

.multi-users {
    display: flex;
    gap: 7px;
    margin-top: 40px;
}

.multi-users p {
    font-weight: 600;
    color: var(--dark-color);
}

.multi-users ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.multi-users ul li:not(:first-child) {
    display: inline-block;
    margin-left: -16px;
}

.multi-users ul li img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}



/* Centering the mobile frame */
.mobile-container {
    position: relative;
    width: 315px;
    height: 642px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-container::before {
    content: "";
    width: 475px;
    height: 475px;
    border-radius: 50%;
    background-color: var(--primary-color);
    position: absolute;
    z-index: -1;
}

/* Mobile SVG Frame */
.mobile-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.mobile-container .calendar-badge {
    position: absolute;
    bottom: 30px;
    left: -35%;
    z-index: 2;
}

.mobile-container .shield-badge {
    position: absolute;
    top: 18%;
    right: -35%;
    z-index: 2;
}

/* Swiper Slider Inside the Mobile Screen */
.swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
}


/* Swiper Slides */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .swiper-slide:not(.swiper-slide-active) {
   opacity: 0;
   visibility: hidden;
} */

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.swiper-pagination {
    position: absolute;
    bottom: -20px;
}

/*  HERO SECTION STYLE END  */

/*  TRADEMARK SECTION STYLE START  */
.trademark-section {
    background-color: var(--light-color);
}

.trademark-section .logo-wrap-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 28px;
    row-gap: 16px;

}

.trademark-section .logo-wrapper {
    height: 100%;
    border-radius: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0px 12px 33px 0px rgba(18, 18, 18, 0.05);
}

/*  TRADEMARK SECTION STYLE END  */

/*  FEATURE SECTION STYLE START  */
.feature-section .wrap.light {
    background-color: var(--light-color);
    padding: 70px 0;
    border-radius: 50px;
    margin-top: 200px;
}

.feature-section .card {
    max-width: 280px;
    border: none;
    background-color: transparent;
}

.feature-section .card:not(:last-child) {
    margin-bottom: 50px;
}

.feature-section .card.right {
    float: right;
    align-items: end;
    text-align: right;
}

.feature-section .card.left {
    float: left;
    align-items: start;
    text-align: left;
}

.feature-section .card .icon-wrapper {
    font-size: 30px;
    color: var(--light-color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 22px 0px #F756394F;
    margin-bottom: 24px;
}

.feature-section .card h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.feature-section .feature-img {
    display: block;
    margin: auto;
    margin-top: -200px;
}

/*  FEATURE SECTION STYLE END  */

/*  STATICS SECTION STYLE START  */
.statics-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.statics-wrapper .static-wrap {
    display: flex;
    gap: 10px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 16px;
}

.statics-wrapper .static-wrap span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background-color: var(--primary-light);
    font-size: 22px;
    color: var(--primary-color);
}

.statics-wrapper .static-wrap h1 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.read-more-btn {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    transition: .3s ease-in-out;
}

.read-more-btn:hover {
    color: var(--primary-color);
}

/*  STATICS SECTION STYLE END  */

/*  STEPS SECTION STYLE START  */
.steps-section .wrap.light {
    background-color: var(--light-color);
    padding-block: 70px;
    border-radius: 50px;
}

.steps-section .col-lg-6 {
    height: 100%;
    position: relative;
}

.steps-section .wrap.light .row:not(:last-child) {
    margin-bottom: 50px;
}

.steps-section .img-wrapper {
    max-width: 360px;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    margin-inline: auto;
    background-color: var(--primary-light);
}

.steps-section .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.steps-section .card {
    max-width: 330px;
    height: 100%;
    border: none;
    background-color: transparent;
    gap: 10px;
    margin-inline: auto;
    position: relative;
    justify-content: center;
}

.steps-section .card.right {
    align-items: end;
    text-align: right;
}

.steps-section .card.left {
    align-items: start;
    text-align: left;
}

.steps-section .col-lg-6:has(.card.right)::before,
.steps-section .col-lg-6:has(.card.left)::before {
    content: "";
    width: 4px;
    height: 340px;
    background-color: rgba(255, 202, 192, 1);
    position: absolute;

}

.steps-section .col-lg-6:has(.card.right)::before {
    right: -2px;
    top: 0;
}

.steps-section .col-lg-6:has(.card.left)::before {
    left: -2px;
    top: 50px;
}

.steps-section .col-lg-6:has(.card-3 .right)::before {
    content: none;
}

.steps-section .col-lg-6:has(.card-1)::after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 202, 192, 1);
    position: absolute;
    top: 0;
    right: -7px;
}

.steps-section .card-1,
.steps-section .card-2,
.steps-section .card-3 {
    display: contents;
}

.steps-section .card-1::before,
.steps-section .card-2::before,
.steps-section .card-3::before {
    font-size: 32px;
    font-weight: 600;
    color: var(--light-color);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.steps-section .card-1::before {
    content: "01";
    right: -45px;
}

.steps-section .card-2::before {
    content: "02";
    left: -45px;
}

.steps-section .card-3::before {
    content: "03";
    right: -45px;
}

.steps-section .card-1::after,
.steps-section .card-2::after,
.steps-section .card-3::after {
    content: "";
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: rgba(255, 202, 192, 1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    box-shadow: 0px 17px 30px 0px rgba(255, 118, 88, 0.3);
}

.steps-section .card-1::after {
    right: -55px;
}

.steps-section .card-2::after {
    left: -55px;
}

.steps-section .card-3::after {
    right: -55px;
}

.steps-section .card h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
}

.steps-section .card .link-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.steps-section .card .link-wrap a {
    font-size: 20px;
    color: var(--light-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.steps-section .card .link-wrap a:hover {
    background-color: var(--primary-color);
}

.steps-section .card p {
    font-size: 18px;
}

/*  STEPS SECTION STYLE END  */

/*  PRICING SECTION STYLE START  */
.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.toggle-container span {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    transition: 0.3s ease-in-out;
}

.toggle-container .active {
    color: var(--primary-color);
}

.switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 35px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 23px;
    width: 23px;
    left: 8px;
    top: 6px;
    background-color: var(--light-color);
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(31px);
}

.pricing-section .card {
    height: 100%;
    padding: 30px;
    background-color: var(--light-color);
    border: none;
    border-radius: 20px;
    gap: 25px;
    transition: all 0.3s ease-in-out;
}

.pricing-section .card h4 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.pricing-section .card .user-circle,
.pricing-section .card .bag-circle {
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--light-color);
    transition: all 0.3s ease-in-out;
}

.sale-badge {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 5px 14px;
    background-color: var(--primary-light);
    border-radius: 99px;
    transition: all 0.3s ease-in-out;
}

.pricing-section .card .feature-list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-section .card .feature-list li {
    display: flex;
    gap: 12px;
}

.pricing-section .card .feature-list li p {
    color: var(--dark-color);
    transition: all 0.3s ease-in-out;
}

.pricing-section .card .feature-list li.disabled p,
.pricing-section .card .feature-list li.disabled i {
    color: var(--gray-color);
}

.pricing-section .card .feature-list li i {
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.pricing-section .card .price {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.pricing-section .card .price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-color);
    transition: all 0.3s ease-in-out;
}

.pricing-section .card a {
    width: max-content;
    font-size: 16px;
    font-weight: 400;
    color: var(--light-color);
    padding: 10px 28px;
    border-radius: 99px;
    background-color: var(--primary-color);
    box-shadow: 0px 10px 30px -7px rgba(255, 112, 67, 0.5);
    transition: all 0.3s ease-in-out;
}

.pricing-section .card:hover {
    background-color: var(--primary-color);
    box-shadow: 0px 11px 50px -7px rgba(247, 86, 57, 0.5);
}

.pricing-section .card:hover h4,
.pricing-section .card:hover .feature-list li p,
.pricing-section .card:hover .feature-list li i,
.pricing-section .card:hover .price,
.pricing-section .card:hover .price span {
    color: var(--light-color);
}

.pricing-section .card:hover .user-circle,
.pricing-section .card:hover .bag-circle,
.pricing-section .card:hover a {
    color: var(--primary-color);
    background-color: var(--light-color);
}

.pricing-section .card:hover .sale-badge {
    color: var(--light-color);
    background-color: rgba(253, 253, 253, .3);
}

/*  PRICING SECTION STYLE END  */

/*  APP PREVIEW SECTION STYLE START  */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 70px;
}

.swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 310px;
    border-radius: 25px;
    border: 3px solid var(--light-color);
    overflow: hidden;
    position: relative;
}

.swiper .swiper-slide:not(.swiper-slide-active)::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.05;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.swiper .swiper-slide-active {
    box-shadow: 0px 5px 30px 0px rgba(255, 231, 226, 1) !important;
}

.swiper .swiper-slide img {
    display: block;
    width: 100%;
}

.swiper .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
}

.swiper .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}

/*  APP PREVIEW SECTION STYLE END  */

/*  TESTIMONIAL SECTION STYLE START  */
.testimonial-section {
    background-color: var(--light-color);
}

.testimonial-section .testimonialSwiper {
    overflow: hidden;
}

.testimonial-section .card {
    max-width: 550px;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background-color: transparent;
    text-align: center;
    align-items: center;
    margin: auto;
}

.testimonial-section .card .star-icon {
    margin-bottom: 15px;
}

.testimonial-section .card .star-icon i {
    font-size: 25px;
    color: rgba(252, 148, 0, 1);
}

.testimonial-section .card .main-text {
    font-size: 18px;
}

.testimonial-section .card .img-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 20px;
    background-color: var(--primary-color);
    border: 3px solid var(--white-color);
}

.testimonial-section .card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-section .card h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.testimonial-section .card .post {
    font-size: 15px;
}

.testimonial-section .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

.testimonial-section .owl-dots .owl-dot span {
    width: 15px !important;
    height: 15px !important;
    background-color: rgba(255, 231, 226, 1) !important;
}

.testimonial-section .owl-dots .owl-dot.active span {
    background-color: var(--primary-color) !important;
}

.testimonial-section .other-clients img {
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 2px solid var(--white-color);
    position: absolute;
    z-index: 3;
}

.testimonial-section .other-clients .img-1 {
    width: 80px;
    height: 80px;
    object-fit: cover;
    top: -30px;
    left: 15%;
}

.testimonial-section .other-clients .img-2 {
    width: 100px;
    height: 100px;
    object-fit: cover;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.testimonial-section .other-clients .img-3 {
    width: 90px;
    height: 90px;
    object-fit: cover;
    bottom: 0;
    left: 20%;
}

.testimonial-section .other-clients .img-4 {
    width: 90px;
    height: 90px;
    object-fit: cover;
    top: -30px;
    right: 16%;
}

.testimonial-section .other-clients .img-5 {
    width: 100px;
    height: 100px;
    object-fit: cover;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.testimonial-section .other-clients .img-6 {
    width: 80px;
    height: 80px;
    object-fit: cover;
    bottom: 0;
    right: 25%;
}

/*  TESTIMONIAL SECTION STYLE END  */

/*  FAQ SECTION STYLE START  */
.faq-section .accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-section .accordion-item {
    border: none;
    background-color: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0px 4px 13px 0px rgba(255, 231, 226, 1);
}

.faq-section .accordion-item:has(.accordion-button:not(.collapsed)) {
    box-shadow: 0px 30px 60px 0px #0000000D;
}

.faq-section .accordion-button {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    background-color: var(--light-color);
    padding: 24px 30px;
    box-shadow: none;
    display: flex;
    gap: 16px;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--light-color);
    font-size: 18px;
    box-shadow: none;
}

.faq-section .accordion-item .accordion-body {
    padding: 24px 30px;
    padding-top: 0;
}

.faq-section .accordion-body p {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-color);
}

.faq-section .accordion-button::after {
    content: "\2b";
    font-family: "Font Awesome 6 Pro";
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    background-image: none;
    margin-left: auto;
    transition: all .1s ease;
    transform: none;
}

.faq-section .accordion-button:not(.collapsed)::after {
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    background-image: none;
    margin-left: auto;
    transition: all .1s ease;
    transform: none;
}

/*  FAQ SECTION STYLE END  */

/*  FOOTER OVERLAY SECTION STYLE START  */
.footer-overlay {
    position: relative;
}

.footer-overlay .bg-layer {
    width: 100%;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-overlay .overlay-img {
    position: relative;
    z-index: 3;
}

/*  FOOTER OVERLAY SECTION STYLE END  */

/* FOOTER STYLE START */
footer {
    background-color: var(--secondary-color);
    margin-top: auto;
}

footer .t-border {
    border-top: 1px solid rgba(255, 253, 253, .3);
}

footer p,
footer a {
    color: var(--light-color);
}

footer h5 {
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 20px;
}

.footer-1 p {
    font-size: 14px;
    color: var(--light-color);
}

.footer-1 .download-app {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.footer-1 .download-app a {
    border: 1px solid rgba(253, 253, 253, 0.5);
    border-radius: 5px;
    overflow: hidden;
}

.footer-2 a {
    color: var(--light-color);
    font-size: 16px;
    font-weight: 400;
}

.footer-2 a:hover {
    color: var(--primary-color)
}

.footer-4 p {
    font-size: 16px;
    font-weight: 400;
    color: var(--light-color);
}

.footer-input {
    position: relative;
}

.footer-input input::placeholder {
    font-size: 14px;
    color: var(--gray-color);
    background-color: var(--white-color);
}

.footer-input input {
    width: 100%;
    font-size: 14px;
    color: var(--dark-color);
    padding: 16px 19px;
    border: none;
    border-radius: 99px;
    background-color: var(--white-color);
}

.footer-input button {
    font-size: 18px;
    color: var(--white-color);
    border: none;
    border-radius: 99px;
    padding: 8px 24px;
    background-color: var(--primary-color);
    position: absolute;
    top: 5px;
    right: 5px;
    box-shadow: 0px 10px 30px 7px rgba(255, 112, 67, .3);
    transition: all 0.3s ease-in-out;
}

.footer-input button:hover {
    background-color: var(--dark-color);
    box-shadow: 0px 10px 30px 7px rgba(18, 18, 18, .3);
}

.copyright-wrapper a {
    font-size: 14px;
    color: var(--white-color);
}

.copyright-wrapper span {
    color: var(--primary-color);
}

.footer-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-icon a {
    border: none;
    border-radius: 50%;
    text-decoration: none;
    height: 35px;
    width: 35px;
    background-color: rgba(253, 253, 253, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

.footer-icon a i {
    font-size: 15px;
}

.footer-icon a:hover {
    background-color: var(--secondary-color);
}

.footer-icon i {
    font-size: 13px;
    color: var(--light-color);
}

/*  FOOTER STYLE END  */
