/* =========================================================
   VARIABLES
========================================================= */

:root {

    --menu-active: #A14000;

    --menu-inactive: #44474E;

    --font-main: "DM Sans", sans-serif;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    width: 100%;
    min-height: 100%;
}


body {

    font-family: var(--font-main);

    overflow-x: hidden;

    background: #ffffff;

    color: #111111;
}


a {
    text-decoration: none;
}


button {
    font-family: var(--font-main);
}


/* =========================================================
   HEADER
========================================================= */

.main-header {

    position: relative;

    width: 100%;

    height: 72px;

    z-index: 1000;

    background:

        linear-gradient(
            180deg,
            rgba(255, 221, 199, 0.96) 0%,
            rgba(255, 208, 177, 0.88) 100%
        );

    border-top:
        1px solid
        rgba(255, 255, 255, 0.75);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);
}


.main-header .container-fluid {

    height: 100%;

    padding-left: 26px;

    padding-right: 26px;
}


.header-inner {

    width: 100%;

    height: 100%;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;
}


/* =========================================================
   LOGO
========================================================= */

.header-logo {

    justify-self: start;

    color: #161719;

    font-size: 22px;

    line-height: 1;

    font-weight: 600;

    letter-spacing: 0px;
}


.header-logo:hover {
    color: #161719;
}


/* =========================================================
   DESKTOP MENU
========================================================= */

.desktop-menu {

    justify-self: center;

    align-items: center;

    gap: 30px;

    height: 100%;
}


.desktop-menu-link {

    position: relative;

    display: flex;

    height: 100%;

    align-items: center;

    color: var(--menu-inactive);

    font-family: var(--font-main);

    font-size: 14px;

    font-weight: 500;

    transition: 0.25s ease;
}


.desktop-menu-link:hover {

    color: var(--menu-active);
}


.desktop-menu-link.active {

    color: var(--menu-active);
}


.desktop-menu-link::after {

    content: "";

    position: absolute;

    bottom: 17px;

    left: 50%;

    width: 0;

    height: 1px;

    transform: translateX(-50%);

    background: var(--menu-active);

    transition: width 0.25s ease;
}


.desktop-menu-link.active::after,
.desktop-menu-link:hover::after {

    width: 100%;
}


/* =========================================================
   HEADER RIGHT
========================================================= */

.header-right {

    justify-self: end;

    display: flex;

    align-items: center;
}


/* =========================================================
   LOGIN GLASS BUTTON
========================================================= */

.login-glass-btn {

    min-width: 138px;

    height: 40px;

    padding: 0 25px;

    align-items: center;

    justify-content: center;

    border-radius: 100px;

    color: #111111;

    font-family: var(--font-main);

    font-size: 14px;

    font-weight: 600;

    border:
        1px solid
        rgba(255,255,255,0.28);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.20),
            rgba(255,255,255,0.06)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.25);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    transition: 0.3s ease;
}


.login-glass-btn:hover {

    color: #111111;

    background:
        rgba(255,255,255,0.25);

    border-color:
        rgba(255,255,255,0.45);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {

    width: 42px;

    height: 42px;

    padding: 0;

    border: 1px solid rgba(255,255,255,0.35);

    border-radius: 50%;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 4px;

    background:
        rgba(255,255,255,0.15);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);
}


.mobile-menu-btn span {

    width: 17px;

    height: 1.5px;

    display: block;

    border-radius: 10px;

    background: #242424;
}


/* =========================================================
   MOBILE OFFCANVAS
========================================================= */

.mobile-navigation {

    width: min(88%, 390px) !important;

    border-right: 0 !important;

    background:
        linear-gradient(
            160deg,
            #ffdfca 0%,
            #ffc79f 57%,
            #f08a48 150%
        );
}


.mobile-navigation .offcanvas-header {

    min-height: 72px;

    padding: 15px 20px;

    border-bottom:
        1px solid
        rgba(68,71,78,0.08);
}


.mobile-logo {

    color: #161719;

    font-size: 17px;

    font-weight: 600;
}


.mobile-logo:hover {
    color: #161719;
}


.mobile-close-btn {

    width: 41px;

    height: 41px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,0.40);

    background:
        rgba(255,255,255,0.15);

    color: #222222;

    font-size: 17px;
}


.mobile-navigation .offcanvas-body {

    padding: 24px 20px;
}


/* =========================================================
   MOBILE MENU LINKS
========================================================= */

.mobile-menu {

    display: flex;

    flex-direction: column;
}


.mobile-menu-link {

    min-height: 64px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid
        rgba(68,71,78,0.10);

    color: var(--menu-inactive);

    font-size: 25px;

    font-weight: 500;

    letter-spacing: -1px;

    transition: 0.25s ease;
}


.mobile-menu-link i {

    font-size: 17px;

    opacity: 0;

    transform: translateX(-6px);

    transition: 0.25s ease;
}


.mobile-menu-link:hover,
.mobile-menu-link.active {

    color: var(--menu-active);
}


.mobile-menu-link:hover i,
.mobile-menu-link.active i {

    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   MOBILE LOGIN
========================================================= */

.mobile-login {

    margin-top: 28px;
}


.mobile-login-btn {

    width: 100%;

    min-height: 52px;

    padding: 6px 9px 6px 20px;

    border-radius: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #111111;

    font-size: 12px;

    font-weight: 600;

    border:
        1px solid
        rgba(255,255,255,0.40);

    background:
        rgba(255,255,255,0.15);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);
}


.mobile-login-btn i {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.20);
}


/* =========================================================
   GIF SECTION
========================================================= */

.hero-gif-section {

    position: relative;

    width: 100%;

    overflow: hidden;

    background: #ef721f;
}


/*
   Your GIF will fill the complete section.

   You can change min-height if your GIF
   has a different ratio.
*/

.hero-gif {

    width: 100%;

    height: auto;

    display: block;

    object-fit: cover;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .main-header {

        height: 68px;
    }


    .main-header .container-fluid {

        padding-left: 18px;

        padding-right: 18px;
    }


    .header-inner {

        display: flex;

        justify-content: space-between;

        align-items: center;
    }


    .header-logo {

        font-size: 16px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .main-header .container-fluid {

        padding-left: 16px;

        padding-right: 16px;
    }


    .hero-gif {

        width: 100%;

        height: auto;

        object-fit: cover;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .main-header {

        height: 64px;
    }


    .main-header .container-fluid {

        padding-left: 14px;

        padding-right: 14px;
    }


    .mobile-menu-btn {

        width: 39px;

        height: 39px;
    }


    .mobile-menu-link {

        min-height: 60px;

        font-size: 23px;
    }


    .mobile-navigation {

        width: 90% !important;
    }

}


/* =========================================================
   WHAT IS ATBIX SECTION
========================================================= */

.what-atbix-section {
    position: relative;

    width: 100%;

    padding: 22px 30px 105px;

    background: #fff8f3;

    overflow: hidden;

    font-family: "DM Sans", sans-serif;
}


.what-atbix-section .container-fluid {
    padding: 0;
}


/* =========================================================
   TOP HEADING
========================================================= */

.what-atbix-top {
    width: 100%;

    display: grid;

    grid-template-columns: 240px 1fr;

    align-items: center;

    gap: 10px;
}


.what-atbix-heading {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    line-height: 0.94;
}


.what-title-normal {
    display: block;

    color: #443d39;

    font-size: clamp(44px, 4.7vw, 64px);

    font-weight: 400;

    letter-spacing: -2px;
}


.what-title-orange {
    display: block;

    margin-top: 8px;

    color: #ff6500;

    font-size: clamp(44px, 4.7vw, 64px);

    font-weight: 700;

    letter-spacing: -2px;
}


/* =========================================================
   ANIMATED LINE
========================================================= */

.what-atbix-process-line {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    padding-top: 27px;
}


.process-diamond {
    position: relative;

    z-index: 3;

    width: 13px;

    height: 13px;

    flex-shrink: 0;

    margin-right: 7px;

    background: #ff6500;

    transform: rotate(45deg);

    opacity: 0;

    animation:
        diamondReveal 0.45s ease forwards;

    animation-delay: 0.8s;
}


.process-line-track {
    position: relative;

    width: 100%;

    height: 2px;

    overflow: hidden;

    background: transparent;
}


.process-line-fill {
    position: absolute;

    top: 0;

    right: 0;

    width: 100%;

    height: 100%;

    background: #443d39;

    transform: scaleX(0);

    transform-origin: right center;

    animation:
        lineRightToLeft 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;

    animation-delay: 0.15s;
}


/* =========================================================
   CONTENT
========================================================= */

.what-atbix-content {
    max-width: 1024px;
    margin: 0 auto;
    /* margin-left: 132px; */

    /* margin-top: 40px; */
}


.what-atbix-text {
    margin: 0;

    font-size: clamp(24px, 2.5vw, 32px);

    line-height: 1.8;

    font-weight: 700;

    letter-spacing: 0.4px;
}


.what-atbix-text span {
    display: inline;
}


.text-light-part {
    color: #d7d7d7;
}


.text-dark-part {
    color: #080808;
}


/* Add spacing between dark words */

.text-dark-part {
    margin-right: 42px;
}


/* Last line should not create huge spacing */

.what-atbix-text br + .text-dark-part {
    margin-left: 0;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes lineRightToLeft {

    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }

}


@keyframes diamondReveal {

    0% {
        opacity: 0;
        transform:
            scale(0)
            rotate(45deg);
    }

    100% {
        opacity: 1;
        transform:
            scale(1)
            rotate(45deg);
    }

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199.98px) {

    .what-atbix-section {
        padding-left: 26px;

        padding-right: 26px;
    }


    .what-atbix-top {
        grid-template-columns: 185px 1fr;
    }


    .what-atbix-content {
        max-width: 850px;

        margin-left: 110px;
    }


    .what-atbix-text {
        line-height: 1.75;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .what-atbix-section {
        padding:
            28px
            22px
            80px;
    }


    .what-atbix-top {
        grid-template-columns: 160px 1fr;

        gap: 12px;
    }


    .what-title-normal,
    .what-title-orange {
        font-size: 48px;
    }


    .what-atbix-process-line {
        padding-top: 25px;
    }


    .what-atbix-content {
        max-width: none;

        margin-left: 90px;

        margin-top: 35px;
    }


    .what-atbix-text {
        font-size: 26px;

        line-height: 1.7;
    }


    .text-dark-part {
        margin-right: 26px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .what-atbix-section {
        padding:
            25px
            18px
            60px;
    }


    .what-atbix-top {
        grid-template-columns: 125px 1fr;

        gap: 8px;

        align-items: center;
    }


    .what-title-normal,
    .what-title-orange {
        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .what-title-orange {
        margin-top: 6px;
    }


    .what-atbix-process-line {
        padding-top: 19px;
    }


    .process-diamond {
        width: 10px;

        height: 10px;

        margin-right: 6px;
    }


    .process-line-track {
        height: 1.5px;
    }


    .what-atbix-content {
        margin-left: 0;

        margin-top: 35px;

        max-width: 100%;
    }


    .what-atbix-text {
        font-size: 22px;

        line-height: 1.65;

        letter-spacing: 0;
    }


    .text-dark-part {
        margin-right: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .what-atbix-section {
        padding:
            22px
            15px
            50px;
    }


    .what-atbix-top {
        grid-template-columns: 108px 1fr;
    }


    .what-title-normal,
    .what-title-orange {
        font-size: 32px;

        letter-spacing: -1.2px;
    }


    .what-title-orange {
        margin-top: 5px;
    }


    .what-atbix-process-line {
        padding-top: 17px;
    }


    .process-diamond {
        width: 9px;

        height: 9px;
    }


    .what-atbix-content {
        margin-top: 30px;
    }


    .what-atbix-text {
        font-size: 19px;

        line-height: 1.65;
    }


    .text-dark-part {
        margin-right: 10px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .what-atbix-top {
        grid-template-columns: 96px 1fr;
    }


    .what-title-normal,
    .what-title-orange {
        font-size: 29px;
    }


    .what-atbix-text {
        font-size: 17px;
    }

}

/* =========================================================
   HERO CONTENT SECTION
========================================================= */

.hero-content-section {

    position: relative;

    width: 100%;

    min-height: 285px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
        183deg, #e5792c 38%, #ffd5ba 100%);

    font-family: "DM Sans", sans-serif;

    overflow: hidden;
}


.hero-content-container {

    width: 100%;

    padding-left: 20px;

    padding-right: 45px;

    padding-top: 48px;

    padding-bottom: 48px;
}


/* =========================================================
   HEADING
========================================================= */

.hero-content-left {

    max-width: 820px;
}


.hero-main-title {

    margin: 0;

    color: #282b2e;

    font-family: "DM Sans", sans-serif;

    font-size: clamp(30px, 4vw, 50px);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: 0px;
}


.hero-main-title strong {

    color: #050505;

    font-weight: 700;
}


/* =========================================================
   RIGHT BUTTONS
========================================================= */

.hero-content-actions {

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    justify-content: flex-end;

    gap: 10px;

    padding-bottom: 6px;
}


.hero-action-btn {

    position: relative;

    min-width: 150px;

    height: 42px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 22px;

    border-radius: 100px;

    color: #171717;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    font-weight: 600;

    border:
        1px solid
        rgba(255, 255, 255, 0.25);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.06)
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.hero-action-btn:hover {

    color: #171717;

    transform: translateY(-2px);

    background:
        rgba(255, 255, 255, 0.23);
}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 991.98px) {

    .hero-content-section {

        min-height: auto;
    }


    .hero-content-container {

        padding-left: 20px;

        padding-right: 20px;

        padding-top: 42px;

        padding-bottom: 42px;
    }


    .hero-main-title {

        font-size: 45px;

        line-height: 1.08;
    }


    .hero-content-actions {

        align-items: flex-end;
    }

}


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .hero-content-container {

        padding-left: 17px;

        padding-right: 17px;

        padding-top: 36px;

        padding-bottom: 38px;
    }


    .hero-main-title {

        font-size: 38px;

        line-height: 1.08;

        letter-spacing: -1.5px;
    }


    .hero-content-actions {

        margin-top: 8px;

        align-items: flex-start;

        flex-direction: row;

        flex-wrap: wrap;

        gap: 10px;
    }


    .hero-action-btn {

        min-width: 140px;

        height: 44px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .hero-content-container {

        padding-left: 15px;

        padding-right: 15px;

        padding-top: 32px;

        padding-bottom: 34px;
    }


    .hero-main-title {

        font-size: 34px;

        line-height: 1.09;

        letter-spacing: -1.2px;
    }


    .hero-content-actions {

        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;
    }


    .hero-action-btn {

        width: 100%;

        min-width: 0;

        height: 45px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hero-main-title {

        font-size: 31px;
    }


    .hero-content-actions {

        grid-template-columns: 1fr;
    }


    .hero-action-btn {

        max-width: 180px;
    }

}

/* =========================================================
   WHAT WE CREATE SECTION
========================================================= */

.create-section {
    width: 100%;
    padding: 34px 25px 55px;
    background: #fff8f3;
    font-family: "DM Sans", sans-serif;
}


.create-container {
    padding: 0;
}


/* =========================================================
   HEADING
========================================================= */

.create-heading-wrapper {
    text-align: center;
    margin-bottom: 48px;
}


.create-heading {
    margin: 0;

    font-size: clamp(48px, 6vw, 72px);

    line-height: 1;

    font-weight: 700;

    letter-spacing: -3px;
}


.create-heading-light {
    color: #d7d7d7;
}


.create-heading-orange {
    color: #FF6A00;
}


/* =========================================================
   CARD
========================================================= */

.create-card-row {
    align-items: stretch;
}


.create-card {
    position: relative;

    width: 100%;

    height: 590px;

    border-radius: 18px;

    overflow: hidden;

    isolation: isolate;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


.create-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px
        rgba(72, 42, 22, 0.12);
}


/* =========================================================
   IMAGE CARD
========================================================= */

.image-card {
    background: #111111;
}


.create-card-image {
    position: absolute;

    inset: 0;

    z-index: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.55s ease,
        opacity 0.4s ease,
        filter 0.4s ease;
}


.create-card-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 5%,
            rgba(0, 0, 0, 0.04) 40%,
            rgba(0, 0, 0, 0.88) 100%
        );

    transition:
        background 0.4s ease,
        opacity 0.4s ease;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.create-card-content {
    position: absolute;

    left: 23px;

    right: 23px;

    bottom: 23px;

    z-index: 3;
}


.create-card-content h3 {
    margin: 0 0 13px;

    font-size: 21px;

    line-height: 1.13;

    font-weight: 700;

    letter-spacing: -0.7px;
}


.create-card-content p {
    max-width: 94%;

    margin: 0;

    font-size: 12px;

    line-height: 1.68;

    font-weight: 400;
}


/* Image card text */

.image-card .create-card-content h3,
.image-card .create-card-content p {
    color: #ffffff;
}


/* =========================================================
   ORANGE CARD
========================================================= */

.orange-card {
    background: #FF6A00;
}


.orange-card .create-card-content h3,
.orange-card .create-card-content p {
    color: #000000;
}


/* =========================================================
   HOVER EFFECT
   IMAGE CARD -> ORANGE CARD STYLE
========================================================= */

.image-card::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background: #FF6A00;

    opacity: 0;

    transition: opacity 0.4s ease;
}


.image-card:hover::after {
    opacity: 1;
}


.image-card:hover .create-card-image {
    transform: scale(1.08);
}


.image-card:hover .create-card-overlay {
    opacity: 0;
}


.image-card:hover .create-card-content h3,
.image-card:hover .create-card-content p {
    color: #000000;
}


/* =========================================================
   OPTIONAL ORANGE CARD HOVER
========================================================= */

.orange-card:hover {
    background: #f55f00;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

    .create-section {
        padding-left: 22px;
        padding-right: 22px;
    }


    .create-card {
        height: 440px;
    }


    .create-card-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }


    .create-card-content h3 {
        font-size: 20px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .create-section {
        padding:
            38px
            20px
            50px;
    }


    .create-heading-wrapper {
        margin-bottom: 38px;
    }


    .create-heading {
        font-size: 54px;
    }


    .create-card {
        height: 420px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .create-section {
        padding:
            34px
            16px
            45px;
    }


    .create-heading-wrapper {
        margin-bottom: 30px;
    }


    .create-heading {
        font-size: 46px;
        letter-spacing: -2px;
    }


    .create-card {
        height: 430px;
        border-radius: 16px;
    }


    .create-card-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }


    .create-card-content h3 {
        font-size: 22px;
    }


    .create-card-content p {
        font-size: 13px;
        line-height: 1.65;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .create-section {
        padding-left: 14px;
        padding-right: 14px;
    }


    .create-heading {
        font-size: 39px;
    }


    .create-card {
        height: 405px;
    }


    .create-card-content h3 {
        font-size: 21px;
    }


    .create-card-content p {
        max-width: 100%;
        font-size: 12.5px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .create-heading {
        font-size: 35px;
    }


    .create-card {
        height: 385px;
    }

}


/* =========================================================
   AI EDUCATION SECTION
========================================================= */

.ai-education-section {
    width: 100%;

    padding:
        24px
        25px
        95px;

    background: #fff8f3;

    font-family: "DM Sans", sans-serif;

    overflow: hidden;
}


.ai-education-container {
    padding: 0;
}


/* =========================================================
   HEADING AREA
========================================================= */

.ai-education-top {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(420px, auto)
        1fr;

    align-items: center;

    column-gap: 20px;

    margin-bottom: 60px;
}


.ai-education-heading h2 {
    margin: 0;

    color: #3d3d3d;

    font-size: clamp(48px, 5.6vw, 68px);

    line-height: 0.98;

    font-weight: 400;

    letter-spacing: -2.5px;
}


.ai-education-heading h2 span {
    color: #FF6A00;

    font-weight: 500;
}


/* =========================================================
   HEADING LINE
========================================================= */

.ai-heading-line-wrap {
    width: 100%;

    display: flex;

    align-items: center;

    padding-top: 8px;
}


.ai-heading-diamond {
    position: relative;

    z-index: 2;

    width: 13px;

    height: 13px;

    flex-shrink: 0;

    margin-right: 8px;

    background: #FF6A00;

    transform: rotate(45deg);

    opacity: 0;
}


.ai-heading-line-track {
    position: relative;

    width: 100%;

    height: 2px;

    overflow: hidden;
}


.ai-heading-line {
    position: absolute;

    top: 0;

    right: 0;

    width: 100%;

    height: 100%;

    background: #3c3c3c;

    transform: scaleX(0);

    transform-origin: right center;
}


/* Animate only when section enters screen */

.ai-education-section.animation-start
.ai-heading-line {

    animation:
        aiLineRightToLeft
        1.5s
        cubic-bezier(0.65, 0, 0.35, 1)
        forwards;
}


.ai-education-section.animation-start
.ai-heading-diamond {

    animation:
        aiDiamondReveal
        0.4s
        ease
        forwards;

    animation-delay: 1.2s;
}


@keyframes aiLineRightToLeft {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


@keyframes aiDiamondReveal {

    from {
        opacity: 0;

        transform:
            scale(0)
            rotate(45deg);
    }

    to {
        opacity: 1;

        transform:
            scale(1)
            rotate(45deg);
    }

}


/* =========================================================
   CARD ROW
========================================================= */

.ai-card-row {
    align-items: stretch;
}


/* =========================================================
   STACK EFFECT
========================================================= */

.ai-feature-stack {
    position: relative;

    width: 100%;

    padding-top: 22px;

    padding-right: 22px;
}


.ai-stack-layer {
    position: absolute;

    border:

        1px solid
        #dedede;

    border-radius: 13px;

    background: #ffffff;
}


.ai-stack-layer-one {
    top: 11px;

    left: 11px;

    right: 11px;

    bottom: 11px;

    z-index: 1;
}


.ai-stack-layer-two {
    top: 0;

    left: 22px;

    right: 0;

    bottom: 22px;

    z-index: 0;
}


/* =========================================================
   MAIN CARD
========================================================= */

.ai-feature-card {
    position: relative;

    z-index: 3;

    width: 100%;

    min-height: 322px;

    border:
        1px solid
        #dedede;

    border-radius: 13px;

    background: #ffffff;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.ai-feature-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 38px
        rgba(0, 0, 0, 0.07);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.ai-feature-content {
    padding:
        35px
        20px
        14px;
}


.ai-feature-content h3 {
    margin: 0 0 11px;

    color: #101010;

    font-size: 21px;

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.4px;
}


.ai-feature-content p {
    margin: 0 0 12px;

    color: #555555;

    font-size: 9.8px;

    line-height: 1.65;

    font-weight: 400;
}


/* =========================================================
   CARD IMAGE
========================================================= */

.ai-feature-image {
    width: 100%;

    margin-top: 10px;

    overflow: hidden;
}


.ai-feature-image img {
    width: 100%;

    /* height: 180px; */

    display: block;

    object-fit: contain;

    object-position: center bottom;

    transition: transform 0.4s ease;
}


.ai-feature-card:hover
.ai-feature-image img {
    transform: scale(1.025);
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

    .ai-education-section {
        padding-left: 22px;
        padding-right: 22px;
    }


    .ai-education-top {
        grid-template-columns:
            minmax(380px, auto)
            1fr;
    }


    .ai-education-heading h2 {
        font-size: 57px;
    }


    .ai-feature-content {
        padding-left: 18px;
        padding-right: 18px;
    }


    .ai-feature-image img {
        height: 165px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .ai-education-section {
        padding:
            30px
            20px
            70px;
    }


    .ai-education-top {
        grid-template-columns:
            minmax(330px, auto)
            1fr;

        column-gap: 14px;

        margin-bottom: 50px;
    }


    .ai-education-heading h2 {
        font-size: 50px;

        line-height: 1;
    }


    .ai-heading-diamond {
        width: 11px;

        height: 11px;
    }


    .ai-feature-card {
        min-height: 340px;
    }


    .ai-feature-image img {
        height: 185px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .ai-education-section {
        padding:
            30px
            16px
            55px;
    }


    .ai-education-top {
        display: block;

        margin-bottom: 42px;
    }


    .ai-education-heading h2 {
        font-size: 44px;

        line-height: 1;

        letter-spacing: -2px;
    }


    .ai-heading-line-wrap {
        width: 100%;

        margin-top: 25px;

        padding-top: 0;
    }


    .ai-heading-line-track {
        height: 1.5px;
    }


    .ai-feature-stack {
        max-width: 540px;

        margin: 0 auto;

        padding-top: 19px;

        padding-right: 19px;
    }


    .ai-stack-layer-one {
        top: 9px;

        left: 9px;

        right: 9px;

        bottom: 9px;
    }


    .ai-stack-layer-two {
        left: 18px;

        bottom: 18px;
    }


    .ai-feature-card {
        min-height: auto;
    }


    .ai-feature-content {
        padding:
            30px
            20px
            14px;
    }


    .ai-feature-content h3 {
        font-size: 22px;
    }


    .ai-feature-content p {
        font-size: 11px;

        line-height: 1.65;
    }


    .ai-feature-image img {
        height: auto;
        max-height: 250px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .ai-education-section {
        padding-left: 14px;

        padding-right: 14px;
    }


    .ai-education-heading h2 {
        font-size: 38px;

        letter-spacing: -1.6px;
    }


    .ai-education-top {
        margin-bottom: 36px;
    }


    .ai-heading-line-wrap {
        margin-top: 21px;
    }


    .ai-heading-diamond {
        width: 9px;

        height: 9px;

        margin-right: 6px;
    }


    .ai-feature-stack {
        padding-top: 16px;

        padding-right: 16px;
    }


    .ai-feature-content {
        padding:
            26px
            17px
            13px;
    }


    .ai-feature-content h3 {
        font-size: 20px;
    }


    .ai-feature-content p {
        font-size: 10.5px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .ai-education-heading h2 {
        font-size: 34px;
    }


    .ai-feature-content {
        padding-left: 15px;

        padding-right: 15px;
    }

}


/* =========================================================
   FEATURES WE OFFER
========================================================= */

.features-offer-section {
    position: relative;
    width: 100%;
    background: #fff8f3;
    font-family: "DM Sans", sans-serif;
    overflow: clip;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.features-heading-container {
    padding:
        62px
        25px
        38px;

    text-align: center;
}


.features-main-heading {
    margin: 0;

    font-size: clamp(52px, 6.3vw, 78px);

    line-height: 1;

    font-weight: 700;

    letter-spacing: -3px;
}


.features-main-heading span {
    color: #d7d7d7;
}


.features-main-heading strong {
    color: #FF6A00;
    font-weight: 700;
}


/* =========================================================
   SCROLL LENGTH

   5 features.

   100vh per feature approximately.
========================================================= */

.features-scroll-area {
    position: relative;

    height: 500vh;
}


/* =========================================================
   STICKY VIEWPORT
========================================================= */

.features-sticky {
    position: sticky;

    top: 0;

    width: 100%;

    height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #fff8f3;
}


.features-container {
    position: relative;

    width: 100%;

    max-width: 1500px;

    margin: 0 auto;

    padding:
        45px
        6.5vw;

    z-index: 2;
}


/* =========================================================
   FEATURE PANEL
========================================================= */

.feature-panel {
    position: absolute;

    top: 50%;

    left: 6.5vw;

    right: 6.5vw;

    transform:
        translateY(-42%)
        translateX(90px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.6s ease,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.6s;
    background-color: white;
    padding: 12px;
    border-radius: 15px;
}


.feature-panel.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateY(-50%)
        translateX(0);
    background-color: white;
    padding: 12px;
        border-radius: 14px;
}


.feature-panel.feature-exit {
    opacity: 0;

    transform:
        translateY(-58%)
        translateX(-80px);
}


/* =========================================================
   FEATURE CONTENT CARD AREA
========================================================= */

.feature-content {
    position: relative;

    z-index: 4;

    padding:
        40px
        5px;
}


.feature-content h3 {
    margin: 0 0 16px;

    color: #343434;

    font-size: clamp(30px, 3.5vw, 40px);

    line-height: 1.08;

    font-weight: 600;

    letter-spacing: -1px;
}


.feature-content p {
    max-width: 720px;

    margin: 0 0 32px;

    color: #555555;

    font-size: 15px;

    line-height: 1.8;

    font-weight: 400;
}


/* =========================================================
   LIST
========================================================= */

.feature-list {
    margin: 0;

    padding-left: 35px;
}


.feature-list li {
    margin-bottom: 16px;

    padding-left: 3px;

    color: #4b4541;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(20px, 2vw, 27px);

    line-height: 1.35;

    letter-spacing: 1px;

    font-variant: small-caps;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.feature-image-wrap {
    position: relative;

    width: 100%;

    /* height: min(62vh, 510px); */

    min-height: 390px;

    overflow: hidden;

    border-radius: 17px;

    background: #ffffff;

    isolation: isolate;

    box-shadow:
        0 24px 60px rgba(255, 106, 0, 0.09),
        0 8px 24px rgba(48, 35, 28, 0.08);
}


/* subtle glow */

.feature-image-wrap::before {
    content: "";

    position: absolute;

    width: 75%;

    height: 75%;

    z-index: -1;

    border-radius: 50%;

    background:
        rgba(255, 106, 0, 0.16);

    filter: blur(50px);
}


/* Right image glow */

.image-right::before {
    right: -22%;
    bottom: -18%;
}


/* Left image glow */

.image-left::before {
    left: -22%;
    top: -18%;
}


.feature-image {
    width: 100%;

    /* height: 100%; */

    display: block;

    /* object-fit: cover; */

    object-position: center;

    border-radius: inherit;

    transition:
        transform 1.2s
        cubic-bezier(0.16, 1, 0.3, 1);
}


/* .feature-panel.active .feature-image {
    animation:
        featureImageFloat
        6s
        ease-in-out
        infinite alternate;
} */


@keyframes featureImageFloat {

    0% {
        transform:
            scale(1.01)
            translate3d(0, 0, 0);
    }

    25% {
        transform:
            scale(1.035)
            translate3d(7px, -5px, 0);
    }

    50% {
        transform:
            scale(1.025)
            translate3d(-5px, -9px, 0);
    }

    75% {
        transform:
            scale(1.04)
            translate3d(-8px, 5px, 0);
    }

    100% {
        transform:
            scale(1.02)
            translate3d(6px, 8px, 0);
    }

}


/* =========================================================
   MOVING WATER / BLOB SHAPES
========================================================= */

.feature-water-shape {
    position: absolute;

    pointer-events: none;

    z-index: -1;

    filter: blur(5px);

    opacity: 0.75;
}


/* first orange water */

.water-one {
    width: 360px;

    height: 360px;

    top: 30%;

    left: 47%;

    background:
        radial-gradient(
            circle at 35% 35%,
            rgba(255, 170, 105, 0.60),
            rgba(255, 106, 0, 0.22) 55%,
            rgba(255, 106, 0, 0.03) 75%
        );

    border-radius:
        55% 45% 63% 37% /
        42% 62% 38% 58%;

    animation:
        waterMoveOne
        9s
        ease-in-out
        infinite alternate;
}


/* second subtle water */

.water-two {
    width: 240px;

    height: 240px;

    right: 8%;

    bottom: 8%;

    background:
        radial-gradient(
            circle,
            rgba(255, 209, 178, 0.55),
            rgba(255, 106, 0, 0.06) 70%
        );

    border-radius:
        42% 58% 36% 64% /
        60% 34% 66% 40%;

    animation:
        waterMoveTwo
        11s
        ease-in-out
        infinite alternate;
}


@keyframes waterMoveOne {

    0% {
        transform:
            translate(-60px, -45px)
            rotate(0deg)
            scale(0.90);

        border-radius:
            55% 45% 63% 37% /
            42% 62% 38% 58%;
    }

    25% {
        transform:
            translate(70px, -80px)
            rotate(40deg)
            scale(1.05);
    }

    50% {
        transform:
            translate(110px, 60px)
            rotate(90deg)
            scale(1);
    }

    75% {
        transform:
            translate(-60px, 100px)
            rotate(135deg)
            scale(1.10);
    }

    100% {
        transform:
            translate(-110px, 10px)
            rotate(180deg)
            scale(0.95);

        border-radius:
            37% 63% 50% 50% /
            65% 38% 62% 35%;
    }

}


@keyframes waterMoveTwo {

    0% {
        transform:
            translate(0, 0)
            rotate(0deg);
    }

    33% {
        transform:
            translate(-100px, -65px)
            rotate(70deg);
    }

    66% {
        transform:
            translate(-160px, 70px)
            rotate(140deg);
    }

    100% {
        transform:
            translate(50px, 20px)
            rotate(210deg);
    }

}


/* =========================================================
   PROGRESS
========================================================= */

.feature-progress {
    position: absolute;

    right: 6.5vw;

    bottom: 20px;

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 10px;

    font-weight: 500;

    color: #777777;
}


.feature-progress-track {
    position: relative;

    width: 90px;

    height: 1px;

    overflow: hidden;

    background: #dddddd;
}


.feature-progress-fill {
    position: absolute;

    left: 0;

    top: 0;

    width: 20%;

    height: 100%;

    background: #FF6A00;

    transition:
        width 0.45s ease;
}


.feature-progress-current {
    color: #FF6A00;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

    .features-container {
        padding-left: 4vw;
        padding-right: 4vw;
    }


    .feature-panel {
        left: 4vw;
        right: 4vw;
    }


    .feature-content h3 {
        font-size: 40px;
    }


    .feature-image-wrap {
        min-height: 360px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .features-heading-container {
        padding:
            50px
            20px
            28px;
    }


    .features-main-heading {
        font-size: 58px;
    }


    /*
       Mobile/tablet still uses sticky feature changing,
       but gives more vertical room.
    */

    .features-scroll-area {
        height: 550vh;
    }


    .features-sticky {
        min-height: 100svh;
        height: 100svh;
    }


    .features-container {
        padding:
            25px
            28px;
    }


    .feature-panel {
        left: 28px;
        right: 28px;
    }


    .feature-image-wrap {
        width: 100%;

        height: 42vh;

        min-height: 280px;

        max-height: 390px;
    }


    .feature-content {
        padding:
            18px
            2px;
    }


    .feature-content h3 {
        font-size: 34px;

        margin-bottom: 11px;
    }


    .feature-content p {
        margin-bottom: 20px;

        font-size: 12px;
    }


    .feature-list li {
        margin-bottom: 8px;

        font-size: 20px;
    }


    .water-one {
        width: 280px;
        height: 280px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .features-heading-container {
        padding:
            42px
            16px
            24px;
    }


    .features-main-heading {
        font-size: 46px;

        letter-spacing: -2px;
    }


    .features-scroll-area {
        height: 580vh;
    }


    .features-container {
        padding:
            12px
            16px
            40px;
    }


    .feature-panel {
        left: 16px;

        right: 16px;

        top: 50%;

        transform:
            translateY(-45%)
            translateX(50px);
    }


    .feature-panel.active {
        transform:
            translateY(-50%)
            translateX(0);
    }


    .feature-image-wrap {
        height: 35vh;

        min-height: 230px;

        max-height: 300px;

        border-radius: 15px;
    }


    .feature-content {
        padding:
            12px
            1px
            0;
    }


    .feature-content h3 {
        font-size: 29px;

        line-height: 1.08;
    }


    .feature-content p {
        font-size: 11px;

        line-height: 1.55;

        margin-bottom: 15px;
    }


    .feature-list {
        padding-left: 26px;
    }


    .feature-list li {
        margin-bottom: 5px;

        font-size: 17px;
    }


    .feature-progress {
        left: 16px;

        right: auto;

        bottom: 16px;
    }


    .water-one {
        width: 210px;
        height: 210px;
    }


    .water-two {
        width: 160px;
        height: 160px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .features-main-heading {
        font-size: 39px;
    }


    .features-container {
        padding-left: 14px;
        padding-right: 14px;
    }


    .feature-panel {
        left: 14px;
        right: 14px;
    }


    .feature-image-wrap {
        min-height: 205px;

        height: 30vh;
    }


    .feature-content h3 {
        font-size: 26px;
    }


    .feature-content p {
        font-size: 10px;
    }


    .feature-list li {
        font-size: 16px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .feature-image,
    .feature-water-shape,
    .feature-panel {
        animation: none !important;

        transition: none !important;
    }

}



/* =========================================================
   PRICING SECTION
========================================================= */

.pricing-section {
    position: relative;

    width: 100%;

    padding:
        40px
        28px
        95px;

    background: #fff8f3;

    font-family: "DM Sans", sans-serif;

    overflow: hidden;
}


.pricing-container {
    padding: 0;
}


/* =========================================================
   PRICING HEADING
========================================================= */

.pricing-heading-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(330px, 420px)
        1fr;

    align-items: center;

    gap: 18px;

    margin-bottom: 30px;
}


.pricing-heading {
    margin: 0;

    font-size: clamp(38px, 4.5vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 700;
}


.pricing-heading span {
    display: block;
}


.pricing-dark {
    color: #0c0c0c;
}


.pricing-heading strong {
    color: #FF6A00;

    font-weight: 700;
}


/* =========================================================
   HEADING ANIMATION LINE
========================================================= */

.pricing-line-wrap {
    width: 100%;

    display: flex;

    align-items: center;

    margin-top: -10px;
}


.pricing-diamond {
    width: 12px;

    height: 12px;

    flex-shrink: 0;

    margin-right: 8px;

    background: #FF6A00;

    transform: rotate(45deg);

    opacity: 0;
}


.pricing-line-track {
    position: relative;

    width: 100%;

    height: 2px;

    overflow: hidden;
}


.pricing-line-fill {
    position: absolute;

    top: 0;

    right: 0;

    width: 100%;

    height: 100%;

    background: #464646;

    transform: scaleX(0);

    transform-origin: right center;
}


/* Scroll animation */

.pricing-section.animation-start
.pricing-line-fill {

    animation:
        pricingLineMove
        1.5s
        cubic-bezier(0.65, 0, 0.35, 1)
        forwards;
}


.pricing-section.animation-start
.pricing-diamond {

    animation:
        pricingDiamondShow
        0.4s
        ease
        forwards;

    animation-delay: 1.2s;
}


@keyframes pricingLineMove {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


@keyframes pricingDiamondShow {

    from {
        opacity: 0;

        transform:
            scale(0)
            rotate(45deg);
    }

    to {
        opacity: 1;

        transform:
            scale(1)
            rotate(45deg);
    }

}


/* =========================================================
   SWITCH
========================================================= */

.pricing-switch-wrap {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-bottom: 50px;
}


.billing-label {
    color: #777777;

    font-size: 14px;

    font-weight: 500;
}


.billing-label small {
    margin-left: 2px;

    color: #FF6A00;

    font-size: 12px;
}


.billing-switch {
    position: relative;

    width: 35px;

    height: 18px;

    padding: 0;

    border: none;

    border-radius: 20px;

    background: #d4d4d4;

    cursor: pointer;

    transition: background 0.3s ease;
}


.billing-switch-knob {
    position: absolute;

    top: 3px;

    left: 3px;

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #ffffff;

    transition: transform 0.3s ease;
}


.billing-switch.annual {
    background: #FF6A00;
}


.billing-switch.annual
.billing-switch-knob {

    transform: translateX(17px);
}


/* =========================================================
   PRICING CARDS
========================================================= */

.pricing-card-row {
    /* max-width: 980px; */

    margin-left: auto;

    margin-right: auto;

    align-items: stretch;
}


.pricing-card {
    position: relative;

    width: 100%;

    height: 100%;

    min-height: 395px;

    border-radius: 18px;

    background: #ffffff;

    border:
        1px solid
        rgba(0, 0, 0, 0.025);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        color 0.35s ease;

    overflow: visible;
}


.pricing-card-inner {
    position: relative;

    z-index: 2;

    min-height: 395px;

    height: 100%;

    display: flex;

    flex-direction: column;

    padding:
        25px
        22px
        22px;
}


.pricing-card-top h3 {
    margin: 0 0 7px;

    color: #08192f;

    font-size: 26px;

    font-weight: 700;

    transition: color 0.3s ease;
}


.pricing-card-subtitle {
    min-height: 35px;

    margin: 0;

    color: #727272;

    font-size: 14px;

    line-height: 1.5;

    transition: color 0.3s ease;
}


/* Price */

.pricing-price {
    display: flex;

    align-items: flex-end;

    gap: 5px;

    margin:
        19px
        0
        18px;
}


.pricing-price strong {
    color: #06162a;

    font-size: 40px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: -1px;

    transition: color 0.3s ease;
}


.pricing-price span {
    padding-bottom: 3px;

    color: #5f6874;

    font-size: 14px;

    transition: color 0.3s ease;
}


.pricing-price .custom-price {
    font-size: 29px;
}


/* Features */

.pricing-features {
    margin: 0 0 28px;

    padding: 0;

    list-style: none;
}


.pricing-features li {
    position: relative;

    margin-bottom: 16px;

    padding-left: 20px;

    color: #444444;

    font-size: 15px;

    line-height: 1.8;

    transition: color 0.3s ease;
}


.pricing-features li::before {
    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    color: #FF6A00;

    font-weight: 700;
}


/* Button */

.pricing-btn {
    width: 100%;

    min-height: 45px;

    margin-top: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        #08234c;

    border-radius: 50px;

    background: transparent;

    color: #10213a;

    font-size: 16px;

    font-weight: 600;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border 0.3s ease;
}


/* =========================================================
   PREMIUM / HOVER ACTIVE STATE
========================================================= */

.pricing-card.active,
.pricing-card:hover {

    transform: translateY(-10px);

    background: #021834;

    box-shadow:
        0 18px 32px
        rgba(0, 17, 43, 0.25);
}


.pricing-card.active
.pricing-card-top h3,
.pricing-card:hover
.pricing-card-top h3 {

    color: #ffffff;
}


.pricing-card.active
.pricing-card-subtitle,
.pricing-card:hover
.pricing-card-subtitle {

    color: #c4cedb;
}


.pricing-card.active
.pricing-price strong,
.pricing-card:hover
.pricing-price strong {

    color: #ffffff;
}


.pricing-card.active
.pricing-price span,
.pricing-card:hover
.pricing-price span {

    color: #cbd4df;
}


.pricing-card.active
.pricing-features li,
.pricing-card:hover
.pricing-features li {

    color: #e6ebf1;
}


.pricing-card.active
.pricing-btn,
.pricing-card:hover
.pricing-btn {

    color: #ffffff;

    border-color: #FF6A00;

    background: #FF6A00;
}


/* Premium badge */

.pricing-popular-badge {
    position: absolute;

    top: -14px;

    left: 50%;

    z-index: 10;

    transform: translateX(-50%);

    min-width: 136px;

    padding: 6px 10px;

    border-radius: 50px;

    background: #FF6A00;

    color: #ffffff;

    text-align: center;

    font-size: 8px;

    font-weight: 600;
}


/* =========================================================
   VIDEO SECTION
========================================================= */

.showcase-video-section {
    position: relative;

    width: 100%;

    margin-top: -42px;

    padding: 0;

    background: #fff8f3;

    overflow: hidden;
}


.showcase-video-container {
    padding: 0;
}


.showcase-video-box {
    position: relative;

    width: 100%;

    height: clamp(450px, 70vw, 720px);

    overflow: hidden;

    border-radius:
        0
        0
        42px
        42px;

    background: #111111;

    box-shadow:
        0 18px 50px
        rgba(52, 35, 22, 0.08);
}


.showcase-video {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    pointer-events: none;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

    .pricing-section {
        padding-left: 22px;
        padding-right: 22px;
    }


    .pricing-heading-row {
        grid-template-columns:
            minmax(310px, 390px)
            1fr;
    }


    .pricing-card-row {
        max-width: 900px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .pricing-section {
        padding:
            40px
            20px
            80px;
    }


    .pricing-heading-row {
        grid-template-columns:
            minmax(300px, 360px)
            1fr;
    }


    .pricing-heading {
        font-size: 44px;
    }


    .pricing-card {
        min-height: 380px;
    }


    .pricing-card-inner {
        min-height: 380px;
    }


    .showcase-video-section {
        margin-top: -28px;
    }


    .showcase-video-box {
        height: 60vw;

        min-height: 430px;

        border-radius:
            0
            0
            32px
            32px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .pricing-section {
        padding:
            34px
            16px
            65px;
    }


    .pricing-heading-row {
        display: block;

        margin-bottom: 28px;
    }


    .pricing-heading {
        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .pricing-line-wrap {
        margin-top: 25px;
    }


    .pricing-switch-wrap {
        margin-bottom: 30px;
    }


    .pricing-card {
        max-width: 430px;

        margin-left: auto;

        margin-right: auto;

        min-height: auto;
    }


    .pricing-card-inner {
        min-height: 375px;
    }


    /*
       On touch devices, middle stays active.
       Hover is mainly desktop.
    */

    .pricing-card:hover {
        transform: none;
    }


    .pricing-card.active {
        transform: translateY(-5px);
    }


    .showcase-video-section {
        margin-top: -22px;

        padding:
            0
            14px
            14px;
    }


    .showcase-video-box {
        height: 65vw;

        min-height: 310px;

        border-radius: 28px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .pricing-section {
        padding-left: 14px;
        padding-right: 14px;
    }


    .pricing-heading {
        font-size: 34px;
    }


    .pricing-card-inner {
        padding:
            23px
            19px
            20px;
    }


    .pricing-price strong {
        font-size: 31px;
    }


    .showcase-video-box {
        height: 72vw;

        min-height: 280px;

        border-radius: 24px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .pricing-heading {
        font-size: 31px;
    }


    .pricing-card-inner {
        min-height: 360px;
    }


    .showcase-video-box {
        min-height: 250px;
    }

}



/* =========================================================
   WHO WE ARE SECTION
========================================================= */

.who-we-are-section {
    position: relative;

    width: 100%;

    padding:
        55px
        30px
        80px;

    background: #fff8f3;

    font-family: "DM Sans", sans-serif;

    overflow: hidden;
}


.who-we-are-container {
    padding: 0;
}


/* =========================================================
   HEADING
========================================================= */

.who-we-are-heading-wrap {
    text-align: center;

    margin-bottom: 60px;
}


.who-we-are-heading {
    margin: 0;

    font-size: clamp(54px, 6vw, 78px);

    line-height: 1;

    font-weight: 700;

    letter-spacing: -3px;
}


.who-we-are-heading span {
    color: #d7d7d7;
}


.who-we-are-heading strong {
    color: #FF6A00;

    font-weight: 700;
}


/* =========================================================
   SLIDER
========================================================= */

.who-we-are-slider {
    position: relative;

    width: 100%;

    padding-bottom: 48px;
}


.who-slide-row {
    position: relative;

    width: 100%;

    flex-wrap: nowrap;

    gap: 42px;
}


/* =========================================================
   PROFILE CARD
========================================================= */

.who-profile-card {
    position: relative;

    width: 100%;

    height: 375px;

    overflow: hidden;

    border-radius: 16px;

    background: #1a1a1a;
}


.who-profile-image {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 5s ease;
}


.carousel-item.active
.who-profile-image {

    transform: scale(1.035);
}


.who-profile-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 30%,
            rgba(0, 0, 0, 0.15) 55%,
            rgba(0, 0, 0, 0.95) 100%
        );
}


.who-profile-info {
    position: absolute;

    left: 14px;

    right: 14px;

    bottom: 17px;

    z-index: 3;
}


.who-profile-info h3 {
    margin: 0 0 6px;

    color: #ffffff;

    font-size: 23px;

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: 0.7px;
}


.who-profile-info p {
    margin: 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 13px;
}


/* =========================================================
   MIDDLE VERTICAL SHAPE
========================================================= */

.who-middle-shape {
    position: absolute;

    left: calc(25% + 7px);

    top: 0;

    width: 10px;

    height: 100%;

    border-radius:
        18px
        0
        0
        18px;

    background:
        linear-gradient(
            180deg,
            #bb7b4d 0%,
            #804322 45%,
            #23150f 100%
        );

    opacity: 0.95;
}


/* =========================================================
   CONTENT CARD
========================================================= */

.who-content-card {
    position: relative;

    width: 100%;

    min-height: 352px;

    padding:
        25px
        27px
        26px;

    border-radius:
        35px
        35px
        35px
        35px;

    background:
        linear-gradient(
            105deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 243, 236, 0.96) 57%,
            rgba(255, 233, 220, 0.96) 100%
        );

    overflow: hidden;
}


/* moving glow */

.who-content-card::before {
    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    right: 18%;

    bottom: -45%;

    border-radius: 50%;

    background:
        rgba(255, 106, 0, 0.09);

    filter: blur(45px);

    animation:
        whoContentGlow
        7s
        ease-in-out
        infinite alternate;
}


@keyframes whoContentGlow {

    from {
        transform:
            translate(-60px, -30px)
            scale(0.9);
    }

    to {
        transform:
            translate(80px, 30px)
            scale(1.15);
    }

}


.who-content-card p {
    position: relative;

    z-index: 2;

    margin:
        0
        0
        20px;

    color: #4d525b;

    font-size: 15px;

    line-height: 1.65;

    font-weight: 400;
}


.who-read-more {
    position: relative;

    z-index: 2;

    display: inline-flex;

    margin-top: 1px;

    color: #090909;

    font-size: 13px;

    font-weight: 700;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.who-read-more:hover {
    color: #FF6A00;

    transform: translateX(4px);
}


/* =========================================================
   SLIDE ANIMATION
========================================================= */

.who-we-are-slider
.carousel-item {

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}


.who-we-are-slider
.carousel-item:not(.active) {

    transform: translateX(30px);
}


.who-we-are-slider
.carousel-item.active {

    transform: translateX(0);
}


/* =========================================================
   CONTROLS
========================================================= */

.who-slider-controls {
    position: absolute;

    right: 15px;

    bottom: 0;

    display: flex;

    align-items: center;

    gap: 12px;
}


.who-slider-btn {
    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border:
        1px solid
        rgba(0, 0, 0, 0.10);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.5);

    color: #222222;

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.who-slider-btn:hover {
    background: #FF6A00;

    color: #ffffff;

    transform: translateY(-2px);
}


.who-slider-count {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #777777;

    font-size: 10px;
}


.who-current-slide {
    color: #FF6A00;

    font-weight: 600;
}


.who-count-line {
    width: 35px;

    height: 1px;

    background: #bdbdbd;
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

    .who-we-are-section {
        padding-left: 24px;

        padding-right: 24px;
    }


    .who-slide-row {
        gap: 35px;
    }


    .who-profile-card {
        height: 360px;
    }


    .who-middle-shape {
        left: calc(25% + 1px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .who-we-are-section {
        padding:
            48px
            20px
            65px;
    }


    .who-we-are-heading-wrap {
        margin-bottom: 45px;
    }


    .who-we-are-heading {
        font-size: 60px;
    }


    .who-slide-row {
        gap: 28px;
    }


    .who-profile-card {
        height: 340px;
    }


    .who-profile-info h3 {
        font-size: 20px;
    }


    .who-content-card {
        min-height: 340px;

        padding:
            23px
            23px
            24px;

        border-radius: 28px;
    }


    .who-content-card p {
        font-size: 12px;

        margin-bottom: 16px;
    }


    .who-middle-shape {
        left: calc(33.333% + 5px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .who-we-are-section {
        padding:
            40px
            16px
            58px;
    }


    .who-we-are-heading-wrap {
        margin-bottom: 32px;
    }


    .who-we-are-heading {
        font-size: 47px;

        letter-spacing: -2px;
    }


    .who-slide-row {
        display: block;

        margin: 0;
    }


    .who-profile-card {
        width: 100%;

        max-width: 420px;

        height: 420px;

        margin:
            0
            auto
            16px;
    }


    .who-content-card {
        min-height: auto;

        padding:
            24px
            20px
            25px;

        border-radius: 24px;
    }


    .who-content-card p {
        font-size: 12px;

        line-height: 1.65;

        margin-bottom: 16px;
    }


    .who-slider-controls {
        position: relative;

        right: auto;

        bottom: auto;

        justify-content: center;

        margin-top: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .who-we-are-section {
        padding-left: 14px;

        padding-right: 14px;
    }


    .who-we-are-heading {
        font-size: 40px;
    }


    .who-profile-card {
        height: 375px;

        border-radius: 15px;
    }


    .who-profile-info {
        left: 16px;

        right: 16px;
    }


    .who-profile-info h3 {
        font-size: 21px;
    }


    .who-content-card {
        padding:
            21px
            17px
            23px;

        border-radius: 22px;
    }


    .who-content-card p {
        font-size: 11px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .who-we-are-heading {
        font-size: 36px;
    }


    .who-profile-card {
        height: 340px;
    }

}


/* =========================================================
   WHAT OUR CLIENT SAY
========================================================= */

.client-say-section {
    position: relative;

    width: 100%;

    min-height: 700px;

    padding:
        88px
        32px
        90px;

    background: #fff8f3;

    font-family: "DM Sans", sans-serif;

    overflow: hidden;
}


.client-say-container {
    padding: 0;
}


/* =========================================================
   HEADING
========================================================= */

.client-heading-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        335px
        1fr;

    align-items: center;

    gap: 20px;
}


.client-heading h2 {
    margin: 0;

    font-size: clamp(48px, 5vw, 62px);

    line-height: 0.93;

    font-weight: 400;

    letter-spacing: -2.5px;
}


.client-heading h2 span {
    display: block;

    color: #333333;

    font-weight: 400;
}


.client-heading h2 strong {
    display: block;

    margin-top: 10px;

    color: #FF6A00;

    font-weight: 600;
}


/* =========================================================
   HEADING LINE
========================================================= */

.client-heading-line-wrap {
    width: 100%;

    display: flex;

    align-items: center;

    padding-top: 7px;
}


.client-heading-diamond {
    width: 13px;

    height: 13px;

    flex-shrink: 0;

    margin-right: 9px;

    background: #06458b;

    transform: rotate(45deg);

    opacity: 0;
}


.client-heading-line-track {
    position: relative;

    width: 100%;

    height: 2px;

    overflow: hidden;
}


.client-heading-line {
    position: absolute;

    top: 0;

    right: 0;

    width: 100%;

    height: 100%;

    background: #333333;

    transform: scaleX(0);

    transform-origin: right center;
}


/* =========================================================
   HEADING ANIMATION
========================================================= */

.client-say-section.animation-start
.client-heading-line {

    animation:
        clientLineAnimation
        1.5s
        cubic-bezier(0.65, 0, 0.35, 1)
        forwards;
}


.client-say-section.animation-start
.client-heading-diamond {

    animation:
        clientDiamondAnimation
        0.4s
        ease
        forwards;

    animation-delay: 1.2s;
}


@keyframes clientLineAnimation {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


@keyframes clientDiamondAnimation {

    from {
        opacity: 0;

        transform:
            scale(0)
            rotate(45deg);
    }

    to {
        opacity: 1;

        transform:
            scale(1)
            rotate(45deg);
    }

}


/* =========================================================
   TESTIMONIAL CONTENT AREA
========================================================= */

.client-testimonial-area {
    position: relative;

    width: 100%;

    min-height: 265px;

    margin-top: 34px;
}


/* Individual testimonial */

.client-testimonial {
    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    visibility: hidden;

    opacity: 0;

    transform: translateX(35px);

    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.45s;
}


.client-testimonial.active {
    position: relative;

    visibility: visible;

    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   TESTIMONIAL TYPOGRAPHY
========================================================= */

.client-testimonial p {
    max-width: 1024px;

    margin:
        0
        auto;

    color: #080808;

    font-size: clamp(25px, 2.65vw, 32px);

    line-height: 1.86;

    font-weight: 600;

    /* letter-spacing: 0.6px; */
}


.client-light-text {
    color: #d6d6d6;

    font-weight: 600;
}


.client-testimonial strong {
    display: inline-block;

    margin-right: 38px;

    color: #080808;

    font-weight: 700;
}


/* =========================================================
   CLIENT PEOPLE NAVIGATION
========================================================= */

.client-people-nav {
    position: relative;

    z-index: 10;

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-top: 10px;
}


/* Reset button */

.client-person {
    position: relative;

    width: 42px;

    height: 42px;

    flex: 0 0 auto;

    padding: 0;

    border: 0;

    outline: none;

    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition:
        width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.3s ease;
}


.client-person:hover {
    transform: translateY(-3px);
}


/* Image */

.client-person-image {
    position: absolute;

    inset: 0;

    display: block;

    overflow: hidden;

    border-radius: 50%;

    background: #e5e5e5;

    transition:
        box-shadow 0.35s ease,
        border 0.35s ease;
}


.client-person-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.5s ease;
}


.client-person:hover img {
    transform: scale(1.08);
}


/* =========================================================
   ACTIVE CLIENT
========================================================= */

.client-person.active {
    width: 68px;

    height: 68px;
}


.client-person.active
.client-person-image {

    border:
        7px solid
        #edf0f2;

    box-shadow:
        0 7px 18px
        rgba(0, 0, 0, 0.08);
}


.client-person.active img {
    transform: scale(1.03);
}


/* =========================================================
   ACTIVE CLIENT NAME
========================================================= */

.client-active-name {
    min-height: 25px;

    margin-top: 1px;

    text-align: center;

    color: #333333;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;

    line-height: 1.2;

    font-weight: 700;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.client-active-name.changing {
    opacity: 0;

    transform: translateY(5px);
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

    .client-say-section {
        padding:
            75px
            26px
            80px;
    }


    .client-heading-row {
        grid-template-columns:
            300px
            1fr;
    }


    .client-testimonial p {
        max-width: 850px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .client-say-section {
        min-height: 650px;

        padding:
            60px
            22px
            70px;
    }


    .client-heading-row {
        grid-template-columns:
            250px
            1fr;

        gap: 16px;
    }


    .client-heading h2 {
        font-size: 49px;
    }


    .client-testimonial-area {
        min-height: 255px;

        margin-top: 40px;
    }


    .client-testimonial p {
        max-width: 720px;

        font-size: 25px;

        line-height: 1.75;
    }


    .client-testimonial strong {
        margin-right: 24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .client-say-section {
        min-height: auto;

        padding:
            48px
            17px
            60px;
    }


    /* Heading */

    .client-heading-row {
        display: block;
    }


    .client-heading h2 {
        font-size: 43px;

        line-height: 0.96;

        letter-spacing: -1.8px;
    }


    .client-heading h2 strong {
        margin-top: 7px;
    }


    .client-heading-line-wrap {
        margin-top: 24px;

        padding-top: 0;
    }


    .client-heading-diamond {
        width: 10px;

        height: 10px;

        margin-right: 7px;
    }


    .client-heading-line-track {
        height: 1.5px;
    }


    /* Content */

    .client-testimonial-area {
        min-height: 270px;

        margin-top: 32px;
    }


    .client-testimonial p {
        max-width: 100%;

        font-size: 21px;

        line-height: 1.7;

        letter-spacing: 0.2px;
    }


    .client-testimonial strong {
        margin-right: 12px;
    }


    /* People */

    .client-people-nav {
        gap: 12px;

        min-height: 65px;

        margin-top: 12px;
    }


    .client-person {
        width: 39px;

        height: 39px;
    }


    .client-person.active {
        width: 62px;

        height: 62px;
    }


    .client-person.active
    .client-person-image {

        border-width: 6px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .client-say-section {
        padding:
            42px
            14px
            52px;
    }


    .client-heading h2 {
        font-size: 38px;
    }


    .client-testimonial-area {
        min-height: 275px;

        margin-top: 27px;
    }


    .client-testimonial p {
        font-size: 18px;

        line-height: 1.68;
    }


    .client-testimonial strong {
        margin-right: 7px;
    }


    .client-people-nav {
        gap: 9px;
    }


    .client-person {
        width: 36px;

        height: 36px;
    }


    .client-person.active {
        width: 57px;

        height: 57px;
    }


    .client-active-name {
        font-size: 15px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .client-heading h2 {
        font-size: 35px;
    }


    .client-testimonial p {
        font-size: 17px;
    }


    .client-people-nav {
        gap: 7px;
    }


    .client-person {
        width: 33px;

        height: 33px;
    }


    .client-person.active {
        width: 52px;

        height: 52px;
    }

}



/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
    width: 100%;

    padding:
        90px
        0
        95px;

    background: #001a3a;

    font-family: "DM Sans", sans-serif;

    overflow: hidden;
}


.faq-container {
    max-width: 1030px;
}


/* =========================================================
   HEADING
========================================================= */

.faq-heading {
    max-width: 850px;

    margin:
        0
        auto
        38px;
}


.faq-heading h2 {
    margin:
        0
        0
        8px;

    color: #ffffff;

    font-size: clamp(32px, 3vw, 46px);

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -1px;
}


.faq-heading p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================================
   LEFT QUESTION CARD
========================================================= */

.faq-question-box {
    min-height: 387px;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding:
        28px
        20px;

    border-radius: 14px;

    background: #ffffff;
}


.faq-question-box h3 {
    margin:
        0
        0
        15px;

    color: #0b0b0b;

    font-size: 20px;

    line-height: 1.15;

    font-weight: 700;
}


.faq-question-box p {
    max-width: 260px;

    margin: 0;

    color: #5e5e5e;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================================
   QUESTION INPUT
========================================================= */

.faq-question-form {
    width: 100%;
}


.faq-input-wrap {
    width: 100%;

    min-height: 38px;

    display: flex;

    align-items: center;

    padding-left: 11px;

    border:
        1px solid
        #FF6A00;

    border-radius: 50px;

    overflow: hidden;
}


.faq-input-icon {
    width: 17px;

    height: 17px;

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        #FF6A00;

    border-radius: 50%;

    color: #FF6A00;

    font-size: 9px;

    font-weight: 700;
}


.faq-input-wrap input {
    width: 100%;

    min-width: 0;

    padding:
        8px
        8px;

    border: 0;

    outline: none;

    background: transparent;

    color: #222222;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
}


.faq-input-wrap input::placeholder {
    color: #FF6A00;

    opacity: 1;
}


/* Send */

.faq-send-btn {
    width: 34px;

    height: 34px;

    flex: 0 0 34px;

    margin-right: 1px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #FF6A00;

    color: #ffffff;

    font-size: 13px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.faq-send-btn:hover {
    transform: rotate(-8deg) scale(1.04);

    background: #e95f00;
}


/* =========================================================
   BOOTSTRAP ACCORDION
========================================================= */

.faq-accordion {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.faq-accordion .accordion-item {
    overflow: hidden;

    border: 0;

    border-radius: 14px;

    background: #ffffff;
}


.faq-accordion .accordion-button {
    min-height: 62px;

    padding:
        17px
        50px
        17px
        14px;

    border: 0;

    border-radius: 14px !important;

    background: #ffffff;

    box-shadow: none;

    color: #111111;

    font-family: "DM Sans", sans-serif;

    font-size: 16px;

    line-height: 1.35;

    font-weight: 500;

    position: relative;
}


/* Expanded first item */

.faq-accordion
.accordion-button:not(.collapsed) {

    padding-bottom: 5px;

    color: #111111;

    background: #ffffff;

    box-shadow: none;

    font-weight: 600;
}


/* =========================================================
   CUSTOM ACCORDION ARROW
========================================================= */

.faq-accordion
.accordion-button::after {

    position: absolute;

    top: 50%;

    right: 14px;

    width: 26px;

    height: 26px;

    margin: 0;

    transform:
        translateY(-50%);

    border:
        1px solid
        #dedede;

    border-radius: 7px;

    background-color: #f6f7f8;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: center;

    background-size: 12px;

    transition:
        transform 0.25s ease;
}


.faq-accordion
.accordion-button:not(.collapsed)::after {

    transform:
        translateY(-50%)
        rotate(180deg);
}


/* =========================================================
   ACCORDION BODY
========================================================= */

.faq-accordion
.accordion-body {

    max-width: 590px;

    padding:
        3px
        50px
        16px
        14px;

    color: #676767;

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .faq-section {
        padding:
            70px
            20px;
    }


    .faq-heading {
        margin-bottom: 32px;
    }


    .faq-question-box {
        min-height: 320px;
    }


    .faq-question-box p {
        max-width: 100%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .faq-section {
        padding:
            55px
            16px
            60px;
    }


    .faq-heading {
        margin-bottom: 28px;
    }


    .faq-heading h2 {
        font-size: 34px;
    }


    .faq-heading p {
        font-size: 11px;

        line-height: 1.55;
    }


    .faq-question-box {
        min-height: 265px;

        padding:
            23px
            18px;
    }


    .faq-question-box h3 {
        font-size: 19px;
    }


    .faq-question-box p {
        font-size: 11px;
    }


    .faq-accordion {
        gap: 9px;
    }


    .faq-accordion
    .accordion-button {

        min-height: 58px;

        padding:
            15px
            48px
            15px
            14px;

        font-size: 12px;
    }


    .faq-accordion
    .accordion-body {

        padding:
            3px
            45px
            15px
            14px;

        font-size: 10.5px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .faq-section {
        padding:
            48px
            14px
            52px;
    }


    .faq-heading h2 {
        font-size: 30px;
    }


    .faq-heading p {
        font-size: 10px;
    }


    .faq-question-box {
        min-height: 245px;

        border-radius: 13px;
    }


    .faq-accordion .accordion-item {
        border-radius: 12px;
    }


    .faq-accordion
    .accordion-button {

        min-height: 56px;

        border-radius: 12px !important;

        font-size: 11.5px;
    }

}


/* =========================================================
   FINAL FOOTER
========================================================= */

.site-footer {
    position: relative;

    width: 100%;

    background:
        radial-gradient(
            circle at 38% 6%,
            rgba(32, 70, 115, 0.34),
            transparent 25%
        ),
        #001a3a;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    overflow: hidden;
}


.footer-container {
    padding:
        20px
        34px
        0;
}


/* =========================================================
   TOP CTA
========================================================= */

.footer-cta {
    max-width: 650px;

    margin:
        0
        auto
        82px;
}


/* JOIN US */

.footer-join-label {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-bottom: 10px;
}


.footer-join-label span {
    width: 18px;

    height: 1px;

    display: block;

    background:
        rgba(255, 255, 255, 0.48);
}


.footer-join-label small {
    color:
        rgba(255, 255, 255, 0.92);

    font-size: 14px;

    line-height: 1;

    font-weight: 400;
}


/* =========================================================
   AVATAR GROUP
========================================================= */

.footer-avatar-group {
    height: 26px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 15px;
}


.footer-avatar-group img {
    width: 24px;

    height: 24px;

    margin-left: -7px;

    object-fit: cover;

    border:
        1.5px solid
        #ffffff;

    border-radius: 50%;
}


.footer-avatar-group img:first-child {
    margin-left: 0;
}


/* =========================================================
   CTA HEADING
========================================================= */

.footer-cta h2 {
    margin:
        0
        0
        16px;

    color: #ffffff;

    font-size: clamp(30px, 3.2vw, 42px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1px;
}


/* =========================================================
   GET STARTED BUTTON
========================================================= */

.footer-get-started-btn {
    min-width: 125px;

    min-height: 40px;

    display: inline-flex;

    align-items: center;

    justify-content: flex-start;

    gap: 10px;

    padding:
        4px
        17px
        4px
        4px;

    border-radius: 50px;

    background: #ffffff;

    color: #202020;

    font-size: 11px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.footer-get-started-btn:hover {
    color: #202020;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.17);
}


.footer-btn-icon {
    width: 31px;

    height: 31px;

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #FF6A00;

    color: #ffffff;

    font-size: 13px;
}


/* =========================================================
   MAIN FOOTER ROW
========================================================= */

.footer-main-row {
    align-items: flex-start;

    margin-bottom: 34px;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand-block {
    max-width: 260px;
}


.footer-brand {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 14px;

    color: #3570ff;

    font-size: 20px;

    font-weight: 500;
}


.footer-brand:hover {
    color: #3570ff;
}


/* custom icon */

.footer-brand-icon {
    position: relative;

    width: 28px;

    height: 28px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #162338,
            #0c1018
        );
}


.footer-brand-icon span {
    width: 15px;

    height: 7px;

    display: block;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #ffffff 0 45%,
            #ffd142 45% 70%,
            #3f75ff 70% 100%
        );

    transform: rotate(42deg);
}


.footer-brand-block p {
    max-width: 250px;

    margin:
        0
        0
        32px;

    color:
        rgba(255, 255, 255, 0.9);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   SOCIALS
========================================================= */

.footer-socials {
    display: flex;

    align-items: center;

    gap: 13px;
}


.footer-socials a {
    color: #ffffff;

    font-size: 15px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.footer-socials a:hover {
    color: #FF6A00;

    transform: translateY(-2px);
}


/* =========================================================
   LINK COLUMNS
========================================================= */

.footer-link-column h3,
.footer-newsletter h3 {
    margin:
        0
        0
        19px;

    color: #ffffff;

    font-size: 16px;

    line-height: 1;

    font-weight: 400;
}


.footer-link-column ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.footer-link-column li {
    margin-bottom: 12px;
}


.footer-link-column a {
    color:
        rgba(255, 255, 255, 0.9);

    font-size: 14px;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}


.footer-link-column a:hover {
    color: #FF6A00;

    padding-left: 4px;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.footer-newsletter p {
    max-width: 245px;

    margin:
        0
        0
        18px;

    color:
        rgba(255, 255, 255, 0.92);

    font-size: 14px;

    line-height: 1.6;
}


.footer-newsletter-form {
    width: 100%;

    max-width: 285px;

    height: 42px;

    display: flex;

    align-items: center;

    padding:
        3px
        3px
        3px
        13px;

    border:
        1px solid
        rgba(255, 255, 255, 0.75);

    border-radius: 50px;

    background: #ffffff;
}


.footer-newsletter-form input {
    width: 100%;

    min-width: 0;

    padding: 0;

    border: 0;

    outline: none;

    background: transparent;

    color: #202020;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
}


.footer-newsletter-form input::placeholder {
    color: #555555;

    opacity: 1;
}


.footer-newsletter-form button {
    min-width: 98px;

    height: 34px;

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    padding:
        0
        12px;

    border: 0;

    border-radius: 50px;

    background: #FF6A00;

    color: #ffffff;

    font-size: 9px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.footer-newsletter-form button:hover {
    background: #e95f00;

    transform: translateX(-2px);
}


.footer-newsletter-form button i {
    font-size: 9px;
}


/* =========================================================
   COPYRIGHT BAR
========================================================= */

.footer-bottom-bar {
    width: 100%;

    min-height:45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        0
        22px;

    border:
        1px solid
        rgba(255, 255, 255, 0.62);

    border-radius: 50px;
}


.footer-bottom-bar p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.9);

    font-size: 14px;
}


.footer-policy-links {
    display: flex;

    align-items: center;

    gap: 19px;
}


.footer-policy-links a {
    color:
        rgba(255, 255, 255, 0.85);

    font-size: 14px;

    transition: color 0.25s ease;
}


.footer-policy-links a:hover {
    color: #FF6A00;
}


/* =========================================================
   HUGE ATBIX
========================================================= */

.footer-big-title {
    width: 100%;

    margin-top: 75px;

    margin-bottom: -26px;

    text-align: center;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(170px, 27vw, 365px);

    line-height: 0.75;

    font-weight: 400;

    letter-spacing: 14px;

    white-space: nowrap;

    user-select: none;

    background:
        linear-gradient(
            180deg,
            #4f403d 0%,
            #76513a 30%,
            #aa6328 68%,
            #d67a22 100%
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


/* subtle bottom accent */

/* .site-footer::after {
    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #0094ff,
            #0087ff
        );
} */


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

    .footer-container {
        padding-left: 28px;
        padding-right: 28px;
    }


    .footer-cta {
        margin-bottom: 70px;
    }


    .footer-big-title {
        letter-spacing: -13px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .footer-container {
        padding:
            34px
            22px
            0;
    }


    .footer-cta {
        margin-bottom: 58px;
    }


    .footer-main-row {
        row-gap: 38px !important;
    }


    .footer-brand-block {
        max-width: 100%;
    }


    .footer-brand-block p {
        max-width: 360px;

        margin-bottom: 22px;
    }


    .footer-newsletter-form {
        max-width: 100%;
    }


    .footer-big-title {
        margin-top: 60px;

        margin-bottom: -17px;

        font-size: 24vw;

        letter-spacing: -9px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .footer-container {
        padding:
            36px
            17px
            0;
    }


    .footer-cta {
        margin-bottom: 50px;
    }


    .footer-avatar-group {
        margin-bottom: 13px;
    }


    .footer-cta h2 {
        font-size: 31px;

        line-height: 1.1;
    }


    .footer-main-row {
        row-gap: 34px !important;
    }


    .footer-brand-block {
        max-width: 100%;
    }


    .footer-brand-block p {
        max-width: 300px;
    }


    .footer-link-column h3,
    .footer-newsletter h3 {
        margin-bottom: 15px;

        font-size: 15px;
    }


    .footer-link-column li {
        margin-bottom: 10px;
    }


    .footer-newsletter p {
        max-width: 100%;
    }


    .footer-newsletter-form {
        max-width: 430px;
    }


    /* Bottom bar stacks */

    .footer-bottom-bar {
        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 10px;

        padding:
            13px
            17px;

        border-radius: 18px;
    }


    .footer-policy-links {
        width: 100%;

        justify-content: flex-start;

        gap: 16px;
    }


    .footer-big-title {
        margin-top: 55px;

        margin-bottom: -7px;

        font-size: 23vw;

        letter-spacing: -6px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .footer-container {
        padding-left: 14px;

        padding-right: 14px;
    }


    .footer-cta h2 {
        font-size: 28px;
    }


    .footer-get-started-btn {
        min-width: 122px;
    }


    .footer-brand {
        font-size: 19px;
    }


    .footer-newsletter-form {
        height: 40px;
    }


    .footer-newsletter-form button {
        min-width: 90px;

        height: 32px;

        padding-left: 10px;

        padding-right: 10px;
    }


    .footer-bottom-bar {
        padding:
            12px
            14px;
    }


    .footer-big-title {
        margin-top: 48px;

        font-size: 24vw;

        letter-spacing: -4px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .footer-cta h2 {
        font-size: 25px;
    }


    .footer-newsletter-form button {
        min-width: 82px;
    }


    .footer-newsletter-form button span {
        font-size: 8px;
    }


    .footer-big-title {
        font-size: 23vw;

        letter-spacing: -2px;
    }

}