/*

- GENERAL (body, padding, img-div)
- HEADER
- MOBILE MENU
- FOOTER
- COPYRIGHT
- ANIMATIONS
- BUTTON
- TITLE
- LISTING ELEMENT

***************************************

- BANNER SECTION
- CLIENT LOGO SECTION
- FEATURES SECTION
- ICON TEXT SECTION
- INTRODUCTION 1 / INTRODUCTION TWO
- PRICING SECTION
- ACCORDION
- TESTIMONIAL
- CTA SECTION

*/

/* GENERAL */
:root {
    --main1: #11CCA8;
    --main1_rgb: 17 204 168;
    --main2: #4AC5DF;
    --main2_rgb: 74 197 223;
    --main3: #0E1A1F;
    --main3_rgb: 14 26 31;
    --white: #fff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
::-webkit-scrollbar {
    width: 3px;
}
::-webkit-scrollbar-track {
    background: transparent; 
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(0deg, var(--main1), var(--main2)); 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--main2); 
}
body {
    background: var(--main3);
}
.pd5 {
    padding: 5rem 0;
}
.pd35 {
    padding: 3.5rem 0;
}
.img-div img {
    width: 100%;
}
@media (min-width: 1180px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1080px;
    }
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1280px;
    }
}
@media(max-width:991px) {
    .pd5 {
        padding: 3rem 0;
    }
    .pd35 {
        padding: 1.5rem 0;
    }
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
    border-radius: 16px;
    margin: 24px 0;
    background: linear-gradient(45deg, rgb(var(--main1_rgb) / 5%), rgb(var(--main2_rgb) / 5%)), var(--main3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    width: 163px;
    height: auto;
}
.logo img {
    width: 100%;
}
.nav {
    display: flex;
    gap: 16px;
}
.nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    padding: 8px;
    font-size: 14px;
    line-height: 1.5;
}
.nav a:hover {
    color: var(--main1);
}
@media(max-width:991px) {
    .header {
        padding: 16px 20px;
    }
    .header .btn-div {
        display: none;
    }
    .logo {
        width: 135px;
    }

}


/* MOBILE MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger div {
    width: 25px;
    height: 3px;
    border-radius: 15px;
    background: var(--white);
}
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0px;
    background: linear-gradient(45deg, rgb(var(--main1_rgb) / 5%), rgb(var(--main2_rgb) / 5%)), rgb(14 26 31 / 80%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(5px);
    border-radius: 16px;
    margin-top: 8px;
}
.mobile-menu a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--white);
    border-bottom: 1px solid rgb(var(--main2_rgb) / 30%);
    opacity: 0;
    transform: translateY(-10px);
}
.mobile-menu a:last-child {
    border-bottom: none;
}
.mobile-menu.show {
    display: block;
    height: auto;
}
.mobile-menu.show a:nth-child(1) { animation: menuFadeIn 0.3s ease forwards; animation-delay: 0.1s; }
.mobile-menu.show a:nth-child(2) { animation: menuFadeIn 0.3s ease forwards; animation-delay: 0.2s; }
.mobile-menu.show a:nth-child(3) { animation: menuFadeIn 0.3s ease forwards; animation-delay: 0.3s; }
.mobile-menu.closing {
    display: block;
    height: auto;
}
.mobile-menu.closing a {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu.closing a:nth-child(1) { animation: menuFadeOut 0.3s ease forwards; animation-delay: 0.1s; }
.mobile-menu.closing a:nth-child(2) { animation: menuFadeOut 0.3s ease forwards; animation-delay: 0.2s; }
.mobile-menu.closing a:nth-child(3) { animation: menuFadeOut 0.3s ease forwards; animation-delay: 0.3s; }
@media (max-width: 768px) {
    .nav, .btn-group {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

/* FOOTER */
footer {
    padding: 4.5rem 0;
}
footer .logo-img-div {
    display: block;
    width: 184px;
    margin-bottom: 80px;
}
footer .logo-img-div img {
    width: 100%;
}
.ft-title {
    background-image: linear-gradient(45deg, var(--main1) 0%, var(--main2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 24px;
}
.ft-ul-div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ft-link {
    font-size: 18px;
    line-height: 1.75;
    font-weight: 400;
    color: var(--white);
    text-decoration: unset;
}
@media(max-width:991px) {
    footer {
        padding: 3.5rem 0;
    }
    footer .logo-img-div {
        margin-bottom: 65px;
    }
    .ft-ul-div {
        gap: 14px;
    }
    .ft-title {
        font-size: 12px;
    }
    .ft-title.opacity-0 {
        line-height: 0;
        margin-bottom: 12px;
    }
    .ft-link {
        font-size: 16px;
    }
}

/* COPYRIGHT */
.cpr-section {
    padding: 16px 0 17px;
    border-top: 1px solid rgb(var(--main2_rgb) /30%);
}
.ft-social-div a {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 20px;
}
.ft-p {
    font-size: 12px;
    line-height: 21px;
    margin-bottom: 0;
    font-weight: 400;
    color: var(--white);
}
@media(max-width:991px) {
    .ft-social-div a {
        width: 20px;
        height: 20px;
        margin-right: 12.5px;
    }
}

/* ANIMATIONS */
@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes menuFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}
@keyframes marquee-animation-1a {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(-50%,0,0)
    }
}

/* BUTTON */
.btn-div {
    display: flex;
    gap: 24.01px;
}
.btn {
    color: var(--white);
    border: none;
    cursor: pointer;
}
.btn-1 {
    padding: 8px;
    background-color: transparent;
}
.btn-1:hover {
    color: var(--main1);
    background: unset;
    background-color: unset;
}
.btn-2 {
    padding: 8px 24px;
    border-radius: 100px;
    background: linear-gradient(45deg, var(--main1), var(--main2));
    color: var(--main3) !important;
}
.btn-3 {
    display: inline-block;
    background: linear-gradient(45deg, var(--main1), var(--main2));
    border-radius: 100px;
    padding: 1px;
}
.btn-3 span {
    display: inline-block;
    background: linear-gradient(45deg, rgb(var(--main1_rgb) / 30%), rgb(var(--main2_rgb) / 30%)),  var(--main3);
    border-radius: 100px;
    color: var(--white);
    padding: 18px 40px;
    font-size: 18px;
    line-height: 1.2;
}
.btn-4 {
    display: block;
    background: linear-gradient(45deg, var(--main1), var(--main2));
    border-radius: 100px;
    padding: 1px;
}
.btn-4 span {
    display: block;
    background: linear-gradient(45deg, rgb(var(--main1_rgb) / 5%), rgb(var(--main2_rgb) / 5%)),  var(--main3);
    border-radius: 100px;
    color: var(--main2);
    padding: 18px 40px;
    font-size: 18px;
    line-height: 21.6px;
}
@media(max-width:991px) {
    .btn-3 span, .btn-4 span {
        font-size: 16px;
        padding: 16px 38px;
    }
}

/* TITLE */
.gnl-title-div {
    margin-bottom: 2.5rem;
}
.gnl-title {
    color: var(--white);
    font-weight: 600;
}
.gnl-title-1 {
    font-size: 72px;
    line-height: 1.2;
    margin-bottom: 0;
}
.gnl-title-2 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 0;
}
.gnl-title-3 {
    font-size: 44px;
    line-height: 57.2px;
    margin-bottom: 22px;
}
.gnl-title-4 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 0;
}
.gnl-p {
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 0;
}
@media(max-width:991px) {
    .gnl-title-div {
        margin-bottom: 1.5rem;
    }
    .gnl-title-1 {
        font-size: 55px;
    }
    .gnl-title-2 {
        font-size: 50px;
    }
    .gnl-title-3 {
        font-size: 38px;
        margin-bottom: 18px;
    }
    .gnl-title-4 {
        font-size: 30px;
    }
    .gnl-p {
        font-size: 16px;
    }
}

/* LISTING ELEMENT */
.ul-div svg {
    margin-right: 16px;
}
.ul-div li {
    list-style: none;
    margin-bottom: 1rem;
    line-height: 28px;
    font-size: 16px;
    color: var(--white);
}
.ul-div li:last-child {
    margin-bottom: 0;
}
.ul-title {
    color: var(--white);
    text-transform: uppercase;
    font-size: 16px;
    line-height: 14px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
@media(max-width:991px) {
    .ul-div li {
        font-size: 15px;
        margin-bottom: 14px;
    }
    .ul-div svg {
        margin-right: 13px;
    }
}



/***************************************/



/* BANNER SECTION */
.banner-section .gnl-title, .banner-section .gnl-p {
    margin-bottom: 1.5rem;
}
.banner-section .banner-btn-div {
    margin-top: 32px;
}
@media(max-width:991px) {
    .banner-section .img-div {
        margin-bottom: 4rem
    }
}

/* CLIENT LOGO SECTION */
.cl-section .client-logo-div {
    display: flex;
    align-items: center;
    height: 48px;
    justify-content: center;
    opacity: 30%;
}
.cl-section .client-logo-div svg {
    height: 48px;
}

/* FEATURES SECTION */
.features-section .gnl-title-div {
    margin-bottom: 64px;
}
.features-grid {
    display: grid;
    grid-gap: 32px;
}
.features-grid-1 {
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 32px;
}
.features-grid-2 {
    grid-template-columns: 1fr 1fr;
}
.features-item {
    background: linear-gradient(45deg, rgb(var(--main1_rgb) / 5%), rgb(var(--main2_rgb) / 5%)),  var(--main3);
    border-radius: 32px;
    padding: 48px;
    position: relative;
}
.features-item img {
    width: 100%;
}
.features-item .gnl-title {
    margin-bottom: 22px;
}
.features-item-1 {
    grid-column: 1 / span 2;
}
.features-item-1 .img-div {
    position: relative;
    margin-bottom: 8px;
}
.features-item-1 .img-div::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 33%;
    background: linear-gradient(0deg, #102328, rgb(16 35 40 / 0%));
}
.features-item-2 .img-div {
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 48px);
}
.for-mobile-features-item-2 {
    opacity: 0;
    display: none;
}
.features-item-3 {
    grid-column: 1 / span 3;
    padding: 3.5rem 4.5rem;
}
.features-item-4 {
    padding: 0;
}
.features-item-4 .img-div {
    margin-bottom: 19px;
}
.features-item-4 .features-info-div {
    padding: 0 48px 48px;
}
.features-item-5 {
    padding-bottom: 32px;
}
.features-badges {
    background: linear-gradient(45deg, rgb(var(--main1_rgb) / 15%), rgb(var(--main2_rgb) / 15%));
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 22px;
}
.features-badges span {
    background-image: linear-gradient(45deg, var(--main1) 0%, var(--main2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
@media (min-width: 1180px) {
    .features-item-3 {
        padding: 2.5rem 3rem;
    }
}
@media(max-width:991px) {
    .features-section .gnl-title {
        margin-bottom: 1.5rem;
    }
    .features-section .gnl-title-div {
        margin-bottom: 2.5rem;
    }
    .features-grid {
        display: flex;
        flex-direction: column;
    }
    .features-grid-1 {
        grid-template-columns: unset;
        margin-bottom: 32px;
    }
    .features-grid-2 {
        grid-template-columns: unset;
    }
    .features-item {
        border-radius: 32px;
        padding: 32px 28px;
    }
    .features-item img {
        width: 100%;
    }
    .features-item .gnl-title {
        margin-bottom: 22px;
    }
    .features-item-1 {
        grid-column: 1 / span 2;
    }
    .features-item-4 .features-info-div {
        padding: 0;
    }
    .for-mobile-features-item-2 {
        display: block;
    }
    .features-item-3 .img-div, .features-item-5 .img-div {
        margin-top: 19px;
    }
}

/* ICON TEXT SECTION */
.icon-text-section {
    position: relative;
    overflow: hidden;
}
.icon-gradient {
    display: block;
    position: absolute;
    top: 0;
    z-index: 2;
    width: 158px;
    height: 100%;
}
.icon-gradient-1 {
    left: 0;
    background: linear-gradient(270deg, rgb(var(--main3_rgb) / 0%), rgb(var(--main3_rgb) / 100%));
}
.icon-gradient-2 {
    right: 0;
    background: linear-gradient(90deg, rgb(var(--main3_rgb) / 0%), rgb(var(--main3_rgb) / 100%));
}
.marquee-track {
    display: table;
    margin-left: -8%;
}
.marquee-track {
    position: relative;
    overflow: hidden;
}
.marquee-style-2 .marquee-track > .icon-text-div {
    padding-right: 24px;
}
.marquee-track > div {
    display: table-cell;
    white-space: nowrap;
}
.marquee-track .icon-text-inner-div {
    display: flex;
    gap: 1rem;
    padding: 17px 25px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(var(--main2_rgb) / 50%);
    border-radius: 8px; 
}
.icon-text-inner-div span {
    color: var(--white);
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 400;
    padding-bottom: 0.6px;
}
.marquee-animation-1a {
    animation: marquee-animation-1a 50s linear infinite;
    will-change: transform
}
@media(max-width:991px) {
    .icon-gradient {
        width: 55px;
    }
}

/* INTRODUCTION 1 / INTRODUCTION TWO */
.introduction-1-section .gnl-title, .introduction-2-section .gnl-title {
    margin-bottom: 22px;
}
.introduction-1-section .gnl-p, .introduction-2-section .gnl-p {
    margin-bottom: 32px;
}
@media(min-width:992px) {
    .introduction-1-section .introduction-info-div {
        margin-right: 30px;
    }
    .introduction-2-section .introduction-info-div {
        margin-left: 30px;
    }
}
@media(max-width:991px) {
    .introduction-1-section .img-div, .introduction-2-section .img-div {
        margin-top: 32px;
    }
}

/* PRICING SECTION */
.price-item {
    border-radius: 32px;
    padding: 42px;
}
.price-item-1 {
    background: linear-gradient(45deg, rgb(var(--main1_rgb) / 5%), rgb(var(--main2_rgb) / 5%)),  var(--main3);

}
.price-item-2 {
    border: 2px solid var(--main2);
}
.price-item .gnl-p {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 28px;
}
.price-div {
    margin-bottom: 1rem;
}
.price-div .price-num {
    background-image: linear-gradient(45deg, var(--main1) 0%, var(--main2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-right: 8px;
}
.price-item .btn {
    margin-top: 40px;
}
@media(max-width:991px) {
    .price-item {
        padding: 27px 28px 32px;
    }
    .price-item-2 {
        margin-top: 28px;
    }
    .price-item .btn {
        margin-top: 34px;
    }
    .price-div .price-num {
        font-size: 32px;
    }
}

/* ACCORDION */
.accordion-item {
    background: transparent;
    border: unset;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    padding: 28px 24px 33px;
}
.accordion-button {
    background: transparent !important;
    box-shadow: unset !important;
    color: var(--white) !important;
    padding: 0px;
    font-size: 28px;
    line-height: 1.4;
    font-weight: 600;
}
.accordion-button::after {
    background-image: url(/Assets/SVG/Plus_Icon.png) !important;
    border: 2px solid var(--main2);
    border-radius: 100px;
    width: 40px;
    height: 40px;
    background-position: center;
    background-size: 14px;
}
.accordion-button:not(.collapsed)::after {
    transform: rotate(-135deg);
}
.accordion-body {
    padding: 0;
    margin-top: 32px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--white);
}
.accordion-item:last-of-type {
    border-radius: 0px;
}
@media(max-width:991px) {
    .accordion-item {
        padding: 23px 8px 24px;
    }
    .accordion-body {
        margin-top: 22px;
        font-size: 16px;
    }
    .accordion-button {
        font-size: 22px;
        gap: 15px;
    }
}

/* TESTIMONIAL */
.tt-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
}
.tt-logo-div {
    width: 162px;
}
.tt-logo-div svg {
    width: 100%;
}
.tt-des {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.75;
    text-align: center;
    color: var(--white);
    margin-bottom: 0;
}
.tt-name {
    color: var(--main2);
    text-align: center;
    margin-bottom: 0;
}
@media(max-width:991px) {
    .tt-div {
        gap: 34px;
    }
    .tt-des {
        font-size: 24px;
    }
}

/* CTA SECTION */
.cta-section {
    padding: 4rem 0px 4.2rem;
}
.cta-div {
    border-radius: 32px;
    background: linear-gradient(45deg, rgb(var(--main1_rgb) / 5%), rgb(var(--main2_rgb) / 5%)),  var(--main3);
    padding: 95px 205px 96.01px;
}
.cta-section .gnl-title {
    margin-bottom: 24px;
}
.cta-section .gnl-p {
    padding: 0 16px;
}
.cta-section .input-div {
    margin: 71px 16px 0;
    padding: 1px;
    background: linear-gradient(45deg, var(--main1), var(--main2));
    border-radius: 100px;
    position: relative;
}
.input-inner-div {
    border-radius: 1440px;
    background: var(--main3);
    display: flex;
    padding: 6px;
    align-items: center;
}
.cta-section .btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 18px;
    line-height: 27px;
}
.cta-section input::placeholder {
    color: rgb(255 255 255 / 50%);
    opacity: 1; /* Firefox */
}
.cta-section input::-ms-input-placeholder {
    color: rgb(255 255 255 / 50%);
}
.cta-section .form-control {
    background: var(--main3);
    border-radius: 100px;
    border: unset;
    font-size: 18px;
    padding: 2px 26px;
    box-shadow: unset;
    color: var(--white);
    height: 46px;
}
.for-mobile-input-inner-div {
    width: 100%;
}
@media(max-width: 768px) {
    .cta-section {
        margin: 43px 0 57px;
    }
    .cta-div {
        padding: 50px 35px 53px;
    }
    .cta-section .gnl-title {
        margin-bottom: 20px;
    }
    .cta-section .gnl-p {
        padding: 0;
    }
    .cta-section .input-div {
        background: unset;
        margin: 50px 0 0;
        padding: 0px;
    }
    .input-inner-div {
        flex-direction: column;
        background: unset;
        padding: 0;
    }
    .for-mobile-input-inner-div {
        padding: 1px;
        background: linear-gradient(45deg, var(--main1), var(--main2));
        border-radius: 100px;
        position: relative;
        margin-bottom: 22px;
    }
    .cta-section .form-control {
        font-size: 16px;
        text-align: center;
    }
    .cta-section .btn {
        font-size: 16px;
        padding: 12px 33px;
    }
}