/* Somar Sans - Regular & Italics */
@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-RegularItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('../fonts/SomarSans-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

/* Expo Arabic */
@font-face {
    font-family: 'Expo Arabic';
    src: url('../fonts/ExpoArabic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* globals  */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Somar Sans', 'Expo Arabic', sans-serif;
    margin: 16px;
    background-color: var(--background);
    overflow-x: hidden
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2D94B6;
    --primary-foreground: #ffffff;
    --primary-light: #D4E9F0;
    --background: #F7FAFC;
    --card: #fff;
    --text: #1E1E2D;
    --gray-500: #64748B;
}

button {
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: inherit
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;

    @media (min-width: 414px) {
        max-width: 400px;
    }

    @media (min-width: 768px) {
        max-width: 700px;
    }

    @media (min-width: 1024px) {
        max-width: 1000px;
    }

    @media (min-width: 1200px) {
        max-width: 1170px;
    }

    @media (min-width: 1400px) {
        max-width: 1300px;
    }
}


/* One-sided containers
   .container-end   →  ---|------------- (container start, window end)
   .container-start →  -------------|--- (window start, container end)
   Uses logical properties so RTL/LTR swap is automatic.
*/
.container-end,
.container-start {
    width: 100%;
}

/* container-end: align start side with .container, bleed to window end */
.container-end {
    padding-inline-start: calc((100% - 300px) / 2 + 16px);
    padding-inline-end: 0;

    @media (min-width: 414px) {
        padding-inline-start: calc((100% - 400px) / 2 + 16px);
    }

    @media (min-width: 768px) {
        padding-inline-start: calc((100% - 700px) / 2 + 16px);
    }

    @media (min-width: 1024px) {
        padding-inline-start: calc((100% - 1000px) / 2 + 16px);
    }

    @media (min-width: 1200px) {
        padding-inline-start: calc((100% - 1170px) / 2 + 16px);
    }

    @media (min-width: 1400px) {
        padding-inline-start: calc((100% - 1300px) / 2 + 16px);
    }
}

/* container-start: bleed to window start, align end side with .container */
.container-start {
    padding-inline-start: 0;
    padding-inline-end: calc((100% - 300px) / 2 + 16px);

    @media (min-width: 414px) {
        padding-inline-end: calc((100% - 400px) / 2 + 16px);
    }

    @media (min-width: 768px) {
        padding-inline-end: calc((100% - 700px) / 2 + 16px);
    }

    @media (min-width: 1024px) {
        padding-inline-end: calc((100% - 1000px) / 2 + 16px);
    }

    @media (min-width: 1200px) {
        padding-inline-end: calc((100% - 1170px) / 2 + 16px);
    }

    @media (min-width: 1400px) {
        padding-inline-end: calc((100% - 1300px) / 2 + 16px);
    }
}


.section__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);

    @media only screen and (min-width:768px) {
        font-size: 20px;
    }

    @media only screen and (min-width:991px) {
        font-size: 26px;
    }
}

.section__sub_title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--gray-500);

    @media only screen and (min-width:768px) {
        font-size: 26px;
    }

    @media only screen and (min-width:991px) {
        font-size: 20px;
    }
}


/* main  */
.main {
    background: var(--primary);
    border-radius: 24px;
    background-image: url(../images/hero-bg.svg);

    background-size: fill;
    background-position: center;
    background-repeat: no-repeat;
    /* padding-bottom: 64px; */

    overflow: hidden;
}

/* end main  */
/* start navbar  */
.navbar {
    position: relative;
}

.navbar .container,
.navbar__links,
.navbar__links__list,
.navbar__links__actions {
    display: flex;
}

.navbar .container {
    justify-content: space-between;
    gap: 32px;
    align-items: flex-end;

    @media (max-width: 1024px) {
        align-items: center;
    }
}

.navbar__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background-color: #FFFFFF29;
    backdrop-filter: blur(8px);
    border: 1px solid var(--primary-foreground);
    border-radius: 22px;
    cursor: pointer;
    z-index: 100;

    @media (max-width: 1024px) {
        display: flex;
    }
}

.navbar__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-foreground);
    transition: all 0.3s ease;
}

.navbar__burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__burger.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar__burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


.navbar__links {
    flex: 1;
    backdrop-filter: blur(8px);
    background-color: #FFFFFF29;
    padding: 16px 24px;
    border-radius: 50px;
    gap: 24px;
    align-items: center;
    transition: all 0.3s ease;

    @media (max-width: 1024px) {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        flex-direction: column;
        padding: 32px;
        border-radius: 24px;
        display: none;
        z-index: 99;

        &.is-open {
            display: flex;
            margin-top: 16px;
        }
    }
}

.navbar__links__list {
    flex: 1;
    justify-content: center;
    gap: 24px;

    @media (max-width: 1024px) {
        flex-direction: column;
        width: 100%;
        flex: none;
    }

}

.navbar__links__list li {
    flex: 1;

    @media (max-width: 1024px) {
        width: 100%;
    }
}

.navbar__links__list li a {
    display: block;
    border: 1px solid var(--primary-foreground);
    border-radius: 24px;
    padding: 10px 12px;
    color: var(--primary-foreground);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;

}

.navbar__links__actions {
    gap: 8px;
    justify-content: center;
    align-items: center;

    @media (max-width: 1024px) {
        width: 100%;
        justify-content: space-between;
        margin-top: 16px;
    }
}

.navbar__links__actions>* {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-foreground);
    height: 44px;
    width: 44px;
    border-radius: 50%;
    color: var(--primary-foreground);
}

.navbar__login-link {
    width: auto;
    border-radius: 24px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.navbar__logo {
    background: var(--primary-foreground);
    padding: 16px;
    border-radius: 0 0 16px 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

/* Inverted Radius - Top Left (Outside) */
.navbar__logo::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 20px;
    background-color: var(--primary-foreground);
    -webkit-mask: radial-gradient(circle at 100% 0, transparent 20px, #000 21px);
    mask: radial-gradient(circle at 100% 0, transparent 20px, #000 21px);
    transform: rotate(180deg)
}

/* Inverted Radius - Top Right (Outside) */
.navbar__logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 20px;
    height: 20px;
    background-color: var(--primary-foreground);
    -webkit-mask: radial-gradient(circle at 0 0, transparent 20px, #000 21px);
    mask: radial-gradient(circle at 0 0, transparent 20px, #000 21px);
    transform: rotate(180deg)
}

/* end navbar  */
/* start hero  */
.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-foreground);
    padding-top: 72px;
    padding-bottom: 40px;
    /* margin-bottom: 48px; */
    gap: 32px;
    position: relative;
}

.hero__title {
    font-weight: 600;
    margin: 0;

    @media only screen and (min-width:768px) {
        font-size: 1.5rem;
    }

    @media only screen and (min-width:991px) {
        font-size: 44px;
    }
}

.hero__sub_title {
    font-weight: 400;

    @media only screen and (min-width:768px) {
        font-size: 18px;
    }

    @media only screen and (min-width:991px) {
        font-size: 20px;
    }
}

.hero__button {
    background-color: var(--primary-foreground);
    color: var(--primary);
    padding: 16px 24px;
    border-radius: 24px;
    min-width: 200px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.hero__feat_cards {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;

    @media (min-width: 991px) {
        display: block;
    }
}

.hero__feat_card {
    position: static;
    backdrop-filter: blur(100px);
    background-color: #FFFFFF1F;
    border: 1px solid #FFFFFF2E;
    border-radius: 24px;
    padding: 12px 32px;
    display: flex;
    gap: 12px;
    z-index: 4;

    @media (min-width: 991px) {
        position: absolute;
        bottom: 0;
    }

}

.hero__feat_card div:nth-of-type(1) {
    background-color: var(--primary-foreground);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__feat_card div:nth-of-type(2) {
    display: flex;
    flex-direction: column;
    gap: 8px;

}

.hero__feat_card div:nth-of-type(2) h5 {
    font-weight: 600;
    font-size: 14px;
}

.hero__feat_card div:nth-of-type(2) h6 {
    font-weight: 400;
    font-size: 14px;
}

.hero__payment_card {
    @media (min-width: 991px) {
        transform: rotate(12deg);
        right: 40px;
        left: auto;
    }
}

.hero__integration_card {
    @media (min-width: 991px) {
        transform: rotate(-22deg);
        right: auto;
        left: 50px;
        bottom: -10px;
    }
}

.hero__img {
    overflow: hidden;
    display: flex;
    justify-content: center;
    border: 1px solid var(--primary-foreground);
    margin: auto;
    padding: 16px;
    border-radius: 24px;
    transform: translateY(150px);
    margin-top: -150px;
    object-fit: cover;
    width: fit-content;
    display: none;

    @media (min-width: 991px) {
        display: flex;
    }
}

.hero__img img {
    /* transform: translateY(150px); */
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    width: 100%;
}

/* end hero  */
/* start features  */
.features {
    background: url("../images/features-bg-patterns.svg") no-repeat;
    background-position-x: 20px;
    background-size: auto 100%;
}

.features .container {
    padding: 88px 0;
}



.features__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.features__card {
    padding: 16px;
    border-radius: 32px;
    border: 1px solid var(--primary);
}

.features__card__content {
    background-color: var(--card);
    padding: 36px;
    height: 100%;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.features__card__img {
    background: var(--primary-light);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features__card__title {
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;



    @media only screen and (min-width:768px) {
        font-size: 18px;
    }

    @media only screen and (min-width:991px) {
        font-size: 24px;
    }
}

.features__card__sub_title {
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;

    @media only screen and (min-width:768px) {
        font-size: 14px;
    }

    @media only screen and (min-width:991px) {
        font-size: 20px;
    }
}

/* end features  */
/* start pros  */
.pros {
    background: var(--card);
    border-radius: 24px;
}

.pros .container {
    padding: 88px 0;
}

.pros__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 32px;
}

.pros__content {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    flex-wrap: wrap;
}

.pros__card {
    width: 100%;
    max-width: 350px;
}

.pros__card__img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 32px;

}


.pros__card__img img:nth-of-type(2) {
    position: absolute;
    top: 50%;
    right: 50%;
    /* right: 0; */
    /* bottom: 0; */
    transform: translate(-50%, -50%);
    margin: auto;
}

.pros__card:nth-of-type(1) .pros__card__img img:nth-of-type(2) {
    right: 60px;
}

.pros__card:nth-of-type(2) .pros__card__img img:nth-of-type(2) {
    right: 0px;
    transform: translate(-27px, -50%);
}

.pros__content .line {
    position: absolute;
    /* 1024  */
    top: 87px;
    right: 281px;
    width: calc(100% - 525px);
    display: none;

    @media only screen and (min-width: 1024px) {
        top: 87px;
        right: 281px;
        width: calc(100% - 525px);
        display: block;
    }

    @media (min-width: 1200px) {
        top: 85px;
        right: 282px;
    }

    @media (min-width: 1400px) {
        top: 83px;

    }
}

.pros__card__list {
    list-style: none;
}

.pros__card__list li {
    margin-bottom: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    color: var(--gray-500);
    font-size: 16px;
    font-weight: 600;


    @media only screen and (min-width:991px) {
        font-size: 20px;
    }
}

.pros__card__list li span:nth-of-type(1) {
    background-color: var(--primary);
    width: 24px;
    height: 9px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* end pros  */

/* start dashboard features  */
.dashboard-features {
    padding: 88px 0;
}

.dashboard-features .container-end {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

    @media only screen and (min-width: 1024px) {
        flex-direction: row;
    }
}

.dashboard-features__img {

    margin-inline-end: 0px;

    @media only screen and (min-width: 1024px) {

        margin-inline-end: -150px;
    }
}

.dashboard-features__img img {
    width: 100%;
}


.dashboard-features__cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.dashboard-features__card {
    background: var(--card);
    border-radius: 32px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    color: var(--text);
    width: 300px;
}

.dashboard-features__card:hover {
    color: var(--card);
    background: var(--primary);

}

.dashboard-features__card h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;


    @media only screen and (min-width: 991px) {
        font-size: 20px;
    }

    @media only screen and (min-width: 1200px) {
        font-size: 20px;
    }
}

.dashboard-features__card ul {
    list-style-type: disc;
    padding-inline-start: 20px;
}

.dashboard-features__card ul li {
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 16px;
}


/* end dashboard features  */

/* start payments  */
.payments {
    padding: 88px 0;
    background: var(--card);
    border-radius: 24px;
}

.payments__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.payments__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.payments__card {
    display: flex;
    flex-direction: column;
    color: var(--text);
    justify-content: center;
    align-items: center;
}

.payments__card__img {
    border: 1px solid var(--primary);
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    transform: translateY(50px);
    background-color: var(--card);

    @media only screen and (min-width:991px) {
        height: 140px;
        width: 140px;
        transform: translateY(70px);

    }
}

.payments__card__img img {
    width: 70px;
    height: 70px;

    @media only screen and (min-width:991px) {
        height: 101px;
        width: 101px;

    }
}

.payments__card__text {
    background: var(--background);
    width: 100%;
    padding: 80px 40px 40px 40px;
    border-radius: 24px;

    @media only screen and (min-width:991px) {
        padding: 100px 40px 40px 40px;


    }

}

.payments__card h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;

    @media only screen and (min-width: 991px) {
        font-size: 20px;
    }

    @media only screen and (min-width: 1200px) {
        font-size: 20px;
    }
}

.payments__card p {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: var(--gray-500);


    @media only screen and (min-width: 991px) {
        font-size: 16px;
    }

    @media only screen and (min-width: 1200px) {
        font-size: 16px;
    }
}


/* end payments  */

/* start faqs  */
.faqs {
    padding: 88px 0;
}

.text-primary {
    color: var(--primary);
}

.faqs__wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;

    @media only screen and (min-width: 1024px) {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.faqs__header {
    @media only screen and (min-width: 1024px) {
        flex: 1;
        max-width: 280px;
    }
}

.faqs__header h2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faqs__header p {
    line-height: 1.5;
}

.faqs__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 2;
    width: 100%;
}

.faqs__item {
    background: var(--card);
    border-radius: 24px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faqs__item.is-active {
    background: var(--primary-light);
}

.faqs__item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faqs__item__icon {
    width: 24px;
    height: 24px;
    background-image: url(../icons/plus.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease;
    background-size: 80%;
}

.faqs__item.is-active .faqs__item__icon {
    background-image: url(../icons/minus.svg);
}

.faqs__item__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);

    @media only screen and (min-width: 768px) {
        font-size: 18px;
    }
}

.faqs__item__body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faqs__item.is-active .faqs__item__body {
    max-height: 200px;
    opacity: 1;
    margin-top: 16px;
}

.faqs__item__body p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;

    @media only screen and (min-width: 768px) {
        font-size: 16px;
    }
}

/* end faqs  */

/* start footer  */
.footer {
    padding-top: 88px;
    padding-bottom: 32px;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 24px;
}

.footer .container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;

    @media only screen and (min-width:991px) {
        gap: 80px;
    }
}

.footer__bottom {
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff20;
    padding-top: 32px;
    margin-top: 44px;
    gap: 12px;
    font-size: 14px;
    opacity: 0.85;
}

.footer__by {
    font-size: 13px;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__info img {
    width: 140px;
}

.footer__info p {
    font-weight: 400;
}

.footer__links h6,
.footer__actions h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer__links ul {
    list-style: none;
}

.footer__links ul li {
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 16px;
}

.footer__actions a {
    width: fit-content;
    background-color: var(--card);
    color: var(--primary);
    border-radius: 30px;
    padding: 14px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-weight: 600;

}

/* end footer  */

/* start whatsapp floating button  */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 999px;
    padding: 14px 20px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        left: 16px;
        padding: 12px;
    }

    .whatsapp-float span {
        display: none;
    }
}

/* end whatsapp floating button  */