/* ================== Imports ================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* ================== Root Variables ================== */
:root {
    --Primary-main: #3C83F6;
    --primary-black: #1C252E;
    --BG: #F8F9F9;

    --Stroke: #E5E7EB;


    --heading-color: #1F2937;
    --heading-color-2: #65758B;


    --text-color: #fafafa;

    --navbar-color: #65758B;
    --navbar-color-hover: #1F2937;

    --button-primary: #3C83F6;
    --button-primary-hover: #2474F5;
    --button-primary-text: #fafafa;
}

/* ================== Reset & Common ================== */
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    display: inline-block;
}

li {
    list-style: none;
}

body {
    font-family: "Inter", sans-serif;
}

svg.feather {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.btn {
    min-height: 42px;
    border-radius: 6px;
    padding-inline: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 400;
}


.btn-primary {
    background: linear-gradient(100.56deg, #3C83F6 0%, #16A249 100%);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0px 25px 50px -12px #3C83F640;
    border: none;
}

.btn-light {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.btn-light:hover {
    box-shadow:
        0px 4px 6px -2px #E5E7EB0D,
        0px 10px 15px -3px #E5E7EB1A;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
}

.btn-transparent {
    background: transparent;
    border: 1px solid #FAFAFA33;
    background: #FAFAFA1A;
    color: var(--button-primary-text);
}

.btn-transparent:hover {
    box-shadow:
        0px 4px 6px -2px #E5E7EB0D,
        0px 10px 15px -3px #E5E7EB1A;
    border: 1px solid #FAFAFA33;
    background: #FAFAFA33;
    color: var(--button-primary-text);
}


.heading-1 {
    font-family: "Open Sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--heading-color);
    margin-bottom: 22px;
}

.heading-2 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--heading-color-2);
    line-height: 28px;
}


/* ******************************
    Navbar-Top-Start
********************************/
.navbar {

    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 3px 1px transparent;
    z-index: 999;
    transition: all linear 0.3s;
    background: white !important;
}

.navbar.navbar-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 3px 1px rgba(59, 130, 246, .2) !important;
    animation: navbarScrollAnimation linear 0.25s;
}

@keyframes navbarScrollAnimation {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar ul {
    gap: 10px;
}

.navbar ul li a {
    min-height: 36px;
    padding: 0;
    padding-inline: 12px !important;
    font-size: 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    color: var(--navbar-color);
    font-family: 'Segoe UI', sans-serif;
}

.navbar ul li a:hover {
    border: 1px solid var(--Stroke);
    color: var(--navbar-color-hover);
}

.navbar ul li a:focus {
    border: 1px solid var(--Stroke);
    color: var(--navbar-color-hover);
}

.navbar ul li a:active {
    border: 1px solid var(--Stroke);
    color: var(--navbar-color-hover);
}


.navbar-bg-primary {
    background: var(--button-primary) !important;
    color: var(--button-primary-text) !important;
    border: 1px solid var(--button-primary) !important;
}

.navbar-bg-primary:hover {
    background: var(--button-primary-hover) !important;
    color: var(--button-primary-text) !important;
    border: 1px solid var(--button-primary-hover) !important;
}


.navbar-brand img {
    height: 30px;
}

/* ******************************
    Navbar-Top-End
********************************/

/* ******************************
    Hero-Section-Start
********************************/

.hero {
    background: url(../img/hero.jpg) no-repeat center/cover;
    height: 100vh;
}

.hero .bg-overlay {
    background: rgba(0, 0, 0, .78);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
}

.hero-text h1 {
    color: var(--text-color);
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    font-size: 48px;
    line-height: 55px;
    margin: 0;
}

.hero-text h4 {
    color: #FAFAFAE5;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    margin: 0;
}

.hero-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero-schedule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    color: var(--button-primary-text);
    margin-top: 54px;
}

.hero-schedule p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 16px;
}

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

/* ******************************
    Features-Section-Start
********************************/

.features {
    background: #F3F4F64D;
    padding-bottom: 24px;
}

.features-text {
    padding-block: 60px;
}

.features-card {
    background: linear-gradient(132.75deg, #FFFFFF 0%, #F9FAFB 100%);
    border: 1px solid #E5E7EB;
    box-shadow:
        0px 2px 4px -1px #E5E7EB0F,
        0px 4px 6px -1px #E5E7EB1A;
    border-radius: 8px;
    padding: 20px;

}

.features-card .features-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.features-card .features-card-head h4 {
    font-size: 16px;
    color: var(--heading-color);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 22px;
}

.features-card .features-card-head .features-icon {
    height: 44px;
    width: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3C83F6 0%, #6DA2F8 100%);
    box-shadow:
        0px 2px 4px -1px #E5E7EB0F,
        0px 4px 6px -1px #E5E7EB1A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

}

.features-card .features-card-body {
    margin-top: 12px;
}

.features-card .features-card-body h5 {
    color: var(--heading-color-2);
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 24px;
}

.features-card .features-card-body h4 {
    color: #16A249;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
    background: #16A2491A;
    margin-top: 14px;
    padding-inline: 14px;
    border-radius: 8px;
    line-height: 18px;
    height: 50px;
    display: flex;
    align-items: center;
}

.features-card .features-card-footer a {
    display: block;
    color: var(--heading-color);
    font-size: 12px;
    font-weight: 400;
    background: #FFFFFF;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    text-align: center;
    margin-top: 16px;
}

.features-card .features-card-footer a:hover {
    box-shadow:
        0px 4px 6px -2px #E5E7EB0D,
        0px 10px 15px -3px #E5E7EB1A;
}

/* ******************************
    Features-Section-End
********************************/


/* ******************************
    Pricing-Section-Start
********************************/

.pricing {
    padding-bottom: 50px;
}

.sub-duration {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.sub-duration span {
    font-size: 14px;
    color: var(--heading-color-2);
}

.badge.rounded-pill.bg-success {
    font-weight: 400;
    color: var(--text-color);
    background: #16A249 !important;
    font-size: 10px;
    min-height: 24px;
    padding-inline: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pricing-card {
    background: linear-gradient(154.51deg, #FFFFFF 0%, #F9FAFB 100%);
    border: 1px solid #E5E7EB;
    box-shadow:
        0px 2px 4px -1px #E5E7EB0F,
        0px 4px 6px -1px #E5E7EB1A;
    border-radius: 8px;
    padding: 20px;
    padding-block: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: .3s;
}

.pricing-card .pricing-card-head h4 {
    font-size: 16px;
    color: var(--heading-color);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 26px;
}

.pricing-card .pricing-card-head h5 {
    font-size: 30px;
    color: var(--Primary-main);
    font-weight: 400;
    margin-bottom: 0;
}

.pricing-card .pricing-card-head h5 span {
    font-size: 12px;
    color: var(--heading-color-2);
    font-weight: 400;
    margin-bottom: 0;
    padding-left: 2px;
}


.pricing-card .pricing-card-head p {
    color: var(--heading-color-2);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 20px;
}

.pricing-card .pricing-card-head {
    text-align: center;
}

.form-switch .form-check-input {
    width: 3rem;
    height: 1.6rem;
}

.form-switch .form-check-input:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.pricing-card-body {
    margin-top: 24px;
    margin-bottom: 16px;
}

.pricing-card-body ul li {
    font-size: 12px;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.pricing-card-body ul li i {
    color: #16A249;
}

.pricing-card-footer {
    margin-top: auto;
}


.pricing-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

.pricing-card:hover {
    border: 1px solid var(--button-primary);
    transform: scale(1.03);
}

.pricing-card .btn.btn-light {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    font-size: 14px;
    color: inherit;
    transition: color 0.3s ease, border 0.3s ease;
}

.pricing-card .btn.btn-light::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, #3C83F6 0%, #16A249 100%);
    z-index: -1;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.25s ease-in;
}

.pricing-card:hover .btn.btn-light {
    color: white;
    border: none;
}

.pricing-card:hover .btn.btn-light::before {
    clip-path: inset(0 0 0 0);
}

/* ******************************
    Pricing-Section-End
********************************/


/* ******************************
    Why-Section-Start
********************************/
.why {
    background: #F3F4F64D;
    padding-bottom: 60px;
}

.why-card {
    text-align: center;
}

.why-icon {
    height: 58px;
    width: 58px;
    background: linear-gradient(135deg, #3C83F6 0%, #6DA2F8 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-heading h4 {
    font-size: 16px;
    color: var(--heading-color);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 26px;
}

.why-text p {
    font-size: 14px;
    color: var(--heading-color-2);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 26px;
}

/* ******************************
    Why-Section-End
********************************/

/* ******************************
    Reviews-Section-Start
********************************/

.reviews {
    padding-bottom: 110px;
}

.reviews-card {
    background: linear-gradient(122.37deg, #FFFFFF 0%, #F9FAFB 100%);
    border: 1px solid #E5E7EB;
    box-shadow:
        0px 2px 4px -1px #E5E7EB0F,
        0px 4px 6px -1px #E5E7EB1A;
    padding: 20px;
    border-radius: 8px;
}


.reviews-card .star {
    font-size: 14px;
    color: #16A249;
}

.reviews-card .comment {
    padding-block: 14px;
}

.reviews-card .comment h4 {
    font-size: 16px;
    color: var(--heading-color);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 24px;
}

.reviews-card .author {
    padding-top: 2px;
}

.reviews-card .author h5 {
    font-size: 16px;
    color: var(--heading-color);
    font-weight: 400;
    margin-bottom: 0;
}

.reviews-card .author h6 {
    font-size: 14px;
    color: var(--heading-color-2);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 24px;
}



.review-slider .slick-slide {
    margin: 0 10px;
}

.review-slider .slick-list {
    margin: 0 -10px;
}

.review-slider .arrow-left {
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: -60px;
    left: 50%;
    border: 2px solid #d4d4d4;
    border-radius: 50%;
    transform: translateX(calc(-50% + -20px));
    color: #d4d4d4;
    cursor: pointer;
    transition: all linear 0.3s;
}

.review-slider .arrow-right {
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: -60px;
    left: 50%;
    border: 2px solid #d4d4d4;
    border-radius: 50%;
    color: #d4d4d4;
    transform: translateX(calc(-50% + 20px));
    cursor: pointer;
    transition: all linear 0.3s;
}

.review-slider .arrow-left:hover,
.review-slider .arrow-right:hover {
    color: var(--button-primary);
    border-color: var(--button-primary);
}


/* ******************************
    Reviews-Section-End
********************************/


/* ******************************
    Demo-Section-End
********************************/

.demo {
    background: linear-gradient(100deg, #3C83F6 0%, #16A249 100%);
}

.demo .heading-1 {
    color: var(--text-color);
}

.demo .heading-2 {
    color: #FAFAFAE5;
}

/* ******************************
    Demo-Section-End
********************************/

/* ******************************
    Footer-Section-Start
********************************/

.footer {
    padding-block: 60px;
}

.f-logo img {
    height: 40px;
}

.f-left-text {
    padding-top: 18px;
}

.f-left-text p {
    font-size: 15px;
    color: var(--heading-color-2);
    font-weight: 400;
    margin-bottom: 0;
}

.f-left-text h3 {
    font-size: 15px;
    color: var(--heading-color-2);
    font-weight: 400;
    margin-bottom: 0;
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.f-left-text h3 i {
    font-size: 20px;
}

.footer-nav-heading {
    font-size: 15px;
    color: var(--heading-color);
    font-weight: 400;
    margin-bottom: 0;
    padding-top: 12px;
    padding-bottom: 14px;
}

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

.footer ul li a {
    color: var(--heading-color-2);
    font-size: 14px;
}


.sub-btn {
    padding: 8px 12px;
    font-size: 12px;
    min-height: 40px;
    background: #3C83F6;
    color: var(--text-color);
    border: 1px solid #3C83F6;
}

.sub-btn:hover,
.sub-btn:focus-visible,
.sub-btn:active {
    background: #2474F5 !important;
    color: var(--text-color) !important;
    border: 1px solid #2474F5 !important;
}

.sub-input {
    padding: 8px 12px;
    font-size: 12px;
    min-height: 40px;
}

.sub-input::placeholder {
    color: #9CA3AF;
}

/* ******************************
    Footer-Section-End
********************************/