/* Table of Contents:
1. Import Statements
2. Keyframes and Property Animations    
3. Custom Properties
4. Global Styles
5. Typography Styles
6. Heading and Subheadings
7. Form and Inputs
8. Maps Elements
9. Header and Navbar
10. Section and Container
11. Background and Setting Color
12. Swiper Setting
13. Button and Links
14. Overlay
15. Utility Classes
16. Social and Contact Setting
17. Breadcrumb
18. Spesific Media Queries
19. Card Setting
20. Progress and Rating 
21. Accordion
*/

/* ---------------------------- */
/* Import Statements            */
/* ---------------------------- */
@import url('vendor/fontawesome/all.css');
@import url('vendor/fontawesome/all.min.css');
@import url('vendor/fontawesome/brands.css');
@import url('vendor/fontawesome/brands.min.css');
@import url('vendor/fontawesome/fontawesome.css');
@import url('vendor/fontawesome/fontawesome.min.css');
@import url('vendor/fontawesome/regular.css');
@import url('vendor/fontawesome/regular.min.css');
@import url('vendor/fontawesome/solid.css');
@import url('vendor/fontawesome/solid.min.css');
@import url('vendor/bootstrap.min.css');
@import url('vendor/swiper-bundle.min.css');
@import url('vendor/rtmicons.css');
@import url('vendor/font-icons/bootstrap-icons.css');
@import url('vendor/font-icons/bootstrap-icons.min.css');
@import url('vendor/font-icons/bootstrap-icons.scss');
@import url('vendor/manrope/stylesheet.css');


/* ---------------------------- */
/* Keyframes and Property Animations            */
/* ---------------------------- */
@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

@keyframes load {
    to {
        --progress: var(--value)
    }
}

@keyframes background_animation {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 0px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.7, 1.7, 1.8);
        transform-origin: center;
        border-width: 13px;
    }
}

/* ---------------------------- */
/*  Custom Properties            */
/* ---------------------------- */
:root {
    --primary: #ececec;
    --text-color: #000000;
    --text-color-2: #000000;
    --accent-color: #2B9CA0;
    --accent-color-2: #77bdff;
    --accent-color-3: #1f2036;
    --accent-color-4: #1e2b68;
    --accent-color-5: #323232;
    --accent-color-6: linear-gradient(90deg, rgb(33, 40, 133) 0%, rgba(210, 215, 255, 0.521) 100%);
    --accent-color-7: radial-gradient(50% 50% at 50% 50%, #6b81e6 0%, #2f49db 100%);
    --accent-color-8: ;
    /* --font-1: "Manrope", sans-serif; */
    --portus-card: #e6f6f4;
    --portus-card-feature: linear-gradient(135deg, #2fb7ad, #4fd1c5);
    --portus-accent: #20c997;


  /* derived from logo – softened */
  --portus-blue: #1f6f9f;
  --portus-teal: #2fb7ad;
  --portus-mint: #7ad9d0;

  /* UI neutrals */
  --portus-bg: #f6fbfb;
  --portus-text: #0f172a;
  --portus-muted: #64748b;

}


/* ---------------------------- */
/* Global Styles                */
/* ---------------------------- */
body {
    color: var(--text-color);
    background-color: var(--primary);
}


/* ---------------------------- */
/* Typography                   */
/* ---------------------------- */
h1 {
    font-size: 72px;
    font-weight: 600;
}

h2 {
    font-size: 64px;
    font-weight: 600;
}

h3 {
    font-size: 48px;
    font-weight: 600;
}

h4 {
    font-size: 32px;
    font-weight: 600;
}

h5 {
    font-size: 24px;
    font-weight: 600;
}

h6 {
    font-size: 20px;
    /* font-weight: 600; */
}

button,
a {
    font-size: 16px;
}

p {
    font-size: 16px;
    color: var(--text-color-2);
}

ul {
    list-style: none;
}

ol li {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 500;
}

.list-circle li {
    list-style-type: disc;
}

.list-circle li::marker {
    color: var(--text-color);
}

li {
    font-size: 16px;
}

img {
    object-fit: cover;
}

.small-text {
    font-size: 14px;
    font-weight: 500;
}

.extra-small-text {
    font-size: 12px;
}

.step-text {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bolder;
    color: rgba(240, 90, 48, 0.3);
    font-style: italic;
}

.counter-text {
    font-size: 72px;
    font-weight: 600;
}

.text-404 {
    font-size: 320px;
    font-weight: 600;
}

.large-text {
    font-size: 100px;
    font-weight: bold;
    text-transform: uppercase;
}



@keyframes moveGradienttext {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}


h3 span {
    position: relative;
    color: var(--text-color);
    transition: all 0.75s;
    transition-delay: 0.6s;
}

h3 span.active {
    color: var(--accent-color-5);
}

h3 span.active_.text {
    visibility: hidden;

}

/* ---------------------------- */
/* Headings and Subheadings      */
/* ---------------------------- */
.banner-heading {
    font-size: 5.5rem;
}

.sub-heading {
    color: var(--accent-color);
    background-color: var(--accent-color-2);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.06);
    border-radius: 40px;
    padding: 8px 16px;
}

.sub-heading.footer {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8.3px);
    color: var(--accent-color-3);
}

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

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

.p-banner {
    color: var(--primary);
}

/* ---------------------------- */
/* Forms and Inputs             */
/* ---------------------------- */
.form-control {
    padding: 15px 24px;
    border: none;
}

.form input,
.form select,
.form textarea {
    background-color: #8AD2D7;
    border: solid 1px #ffff;
    border-radius: 12px;
    color: var(--text-color);
    outline: none;
    font-family: var(--font-2);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    background-color: var(--text-color);
    box-shadow: none;
    border: 1px solid transparent;
    color: var(--primary);
    font-weight: 500;
}

.form input:autofill,
.form input:autofill:focus {
    color: var(--primary);
    transition: background-color 5000s ease-in-out;
    box-shadow: 0 0 0px 1000px var(--text-color) inset !important;
    -webkit-text-fill-color: var(--primary);
    font-family: var(--font-2);
    font-weight: 700;
    border-radius: 12px;
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--text-color-2);
    font-family: var(--font-2);
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-xl" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
    background-color: transparent;
    border: 1px solid gray;
}

.form input.form-check-input:checked {
    border: 1px solid blue;
    color: blue;
}

.custom-input-group {
    border: 1px solid #ffffff;
    border-radius: 12px;
    background: #ffffff;
    padding: 4px;
}

.custom-email-input {
    border: none !important;
    background: #ffffff!important;
    color: var(--text-color) !important;
    padding-block: 5px !important;
    padding-left: 24px !important;
    padding-right: 0;
    font-size: 18px;
}

.custom-email-input::placeholder {
    color: var(--text-color);
}

/* ---------------------------- */
/* Map Elements       */
/* ---------------------------- */
.maps {
    width: 100%;
    height: 100%;
    transition: filter 0.5s;
    display: block;
}


/* ---------------------------- */
/* Header and Navbar       */
/* ---------------------------- */
#header {
    transition: all 0.5s ease;
}


.offcanvas-header {
    justify-content: end;
}

.offcanvas-fullwidth {
    width: 25vw !important;
    max-width: 100vw;
    overflow-y: auto;
}

.offcanvas-body {
    overflow: visible;
    padding: 3rem;
    padding-top: 0;
}

.logo-container {
    max-width: 180px;
}

.logo-partner {
    filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
    transition-duration: 0.5s;
}

.logo-partner:hover {
    filter: none;
}

.navbar .container-fluid {
    width: 1440px;
    gap: 1rem;
    padding-inline: 20px;
    padding-block: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(45px) !important;
    -webkit-backdrop-filter: blur(11px);
    border-radius: 16px;
}

.navbar {
    padding-block: 1rem;
}

.navbar-expand-xl .navbar-nav .nav-link {
    padding: 12px 24px;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:focus {
    color: var(--accent-color);
    text-align: center;
}

.navbar-nav .nav-link.show {
    color: var(--accent-color);
}

.navbar-nav {
    padding: 5px;
}

.nav-link {
    border-bottom: 2px solid transparent;
    font-size: 16px;
    color: white;
    text-align: end;
}

.nav-link:hover {
    color: var(--accent-color) !important;
    text-align: center;
}

.nav-link.active {
    color: var(--accent-color) !important;
    text-align: center;
}

.navbar-toggler {
    border: none;
    color: var(--accent-color);
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: transparent;
    color: var(--accent-color-2);
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: white;
    border: none;
    position: relative;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: white;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    padding: 0;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    padding-block: 0.75rem;
    color: var(--text-color);
    font-size: 16px;
    padding-inline: 2rem;
    background-color: var(--primary);
}

.dropdown-item.active {
    color: var(--text-color);
    background-color: var(--accent-color);
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.dropdown-item:focus {
    color: var(--text-color);
}

/* ---------------------------- */
/* Section and Container       */
/* ---------------------------- */
.section {
    padding: 6em 2em 6em 2em;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.r-container {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}

.doubleContain {
    padding-bottom: 12em;
}


/* ---------------------------- */
/* Background and Setting Color      */
/* ---------------------------- */
.bg-accent-primary {
    background-color: var(--primary);
}

.bg-accent-color {
    background-color: var(--accent-color);
}

.bg-accent-color-2 {
    background-color: var(--accent-color-2);
}

.bg-accent-color-3 {
    background-color: #8AD2D7;
}

.bg-accent-color-4 {
    background-color: var(--accent-color-4);
}

.bg-accent-color-5 {
    background-color: var(--accent-color-5);
}

.bg-accent-color-6 {
    background-color: var(--accent-color-6);
}

.bg-accent-color-7 {
    background: var(--accent-color-7);
}

.bg-accent {
    background-color: var(--background-color);
}

.bg-text-color {
    background-color: var(--text-color);
}

.bg-text-color-2 {
    background-color: var(--text-color-2);
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.bg-dark-transparent {
    background-color: #232323b7;
}

.heading-bg {
    padding: 32px;
    background-color: var(--primary);
    margin-left: -7em;
}

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

.accent-color {
    color: var(--accent-color);
}

.accent-color-2 {
    color: var(--accent-color-2);
}

.accent-color-3 {
    color: var(--accent-color-3);
}

.accent-color-4 {
    color: var(--accent-color-4);
}

.accent-color-5 {
    color: var(--accent-color-5);
}

.accent-color-6 {
    color: var(--accent-color-6);
}

.accent-color-7 {
    color: var(--accent-color-7);
}

.accent {
    color: var(--background-color);
}

.border-text-accent {
    border-color: var(--text-color) !important;
}

.border-accent {
    border-color: var(--accent-color) !important;
}

.border-accent-3 {
    border-color: var(--accent-color-3);
}

.border-accent-6 {
    border-color: var(--accent-color-6) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.border-testimonial {
    border-right: 5px solid var(--accent-color-2);
}

.border-bottom-hover:hover {
    border-bottom: 2px solid var(--accent-color);
}

.border-accent-color {
    border-color: var(--accent-color-3) !important;
}

.custom-border {
    border-width: 5px;
    border-style: solid;
    border-color: white;
    border-radius: 20px;
}

.outline {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--accent-color);
}

.text-gray {
    color: grey !important;
}

/* ---------------------------- */
/* Swiper Setting              */
/* ---------------------------- */
.container-wrapper-marquee {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.container-wrapper-marquee .marquee-container {
    padding-block: 0;
}

.container-wrapper-marquee .marquee-item {
    padding-inline: 0.5rem;
    margin-right: 0;
}

.container-wrapper-marquee::before,
.container-wrapper-marquee::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.container-wrapper-marquee::before {
    right: 0;
    background: linear-gradient(to right,#8AD2D7, transparent 70%);
}

.container-wrapper-marquee::after {
    left: 0;
    background: linear-gradient(to left,#8AD2D7, transparent 70%);
}

.marquee-container {
    overflow: hidden;
    /* white-space: nowrap; */
    width: 100%;
    display: flex;
    flex-direction: row;
    padding-block: 1.5rem;
    --gap: 1rem;
    --speed: 20;
    /* gap: var(--gap); */
}

.marquee-container.partner::before,
.marquee-container.partner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container.partner::before {
    right: 0;
    background: linear-gradient(to right, rgba(11, 15, 14, 1), transparent);
}

.marquee-container.partner::after {
    left: 0;
    background: linear-gradient(to left, rgba(11, 15, 14, 1), transparent);
}

.marquee {
    animation: marquee calc(700s / var(--speed)) infinite linear;
}

.reverse .marquee {
    animation-direction: reverse;
}

.marquee-content {
    display: inline-flex;
}

.marquee-item {
    text-wrap: nowrap;
    padding-inline: var(--gap);
    margin-right: 1rem;
}

.marquee-container.partner .marquee-item {
    width: 300px;
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(calc(-100% - 1rem));
    }
}

.marquee-vertical-container {
    overflow: hidden;
    height: 1400px;
    display: flex;
    flex-direction: column;
    --gap: 1rem;
    --speed: 20;
    position: relative;
}

.marquee-vertical {
    display: flex;
    flex-direction: column;
    animation: marquee-vertical calc(500s / var(--speed)) infinite linear;
}

.reverse-vertical .marquee-vertical {
    animation-direction: reverse;
}

.marquee-vertical-content {
    display: inline-flex;
    flex-direction: column;
}

.marquee-vertical-item {
    padding-block: var(--gap);
    width: 100%;
}

.marquee-vertical-item img {
    display: block;
    height: auto;
    border-radius: 10px;
}

@keyframes marquee-vertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.service-scroll {
    height: 610px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 3rem;
}

/* width */
.service-scroll::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.service-scroll::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

/* Handle */
.service-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

/* Handle on hover */

.swiper-slide {
    background-color: transparent;
}

.swiperImage {
    position: relative;
}

.swiperTeam {
    position: relative;
    padding-top: 5rem;
}

.swiperTestimonials {
    position: relative;
}

.swiperTestimonials3 {
    position: relative;
    padding-bottom: 2rem;
}

.swiperTestimonials.singlepage {
    position: relative;
    padding-bottom: 1px;
}

.swiper-pagination {
    margin-block: 1rem;
    position: relative;
}

.swiper-slide {
    padding: 0.5rem;
}

.swiper-pagination {
    margin-block: 1rem;
    position: relative;
}


.swiper-pagination-bullet {
    background: var(--accent-color-4);
    margin: 0 5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    top: 18rem;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color-4);
    background-color: var(--accent-color-4);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    border: 1px solid var(--text-color);
    background-color: var(--text-color);
    color: var(--accent-color-4);
}

.swiper-button-next {
    top: 5px;
    right: 0%;
    transform: translateY(20px);
}

.swiper-button-prev {
    top: 5px;
    left: 87%;
    transform: translateY(20px);
}

.swiperProject .swiper-button-next {
    right: 0%;
    transform: translateY(20px);
}

.swiperProject .swiper-button-prev {
    left: 95%;
    transform: translateY(20px);
}

.swiperProject {
    padding-top: 3rem;
}

/* ---------------------------- */
/* Buttons & Links              */
/* ---------------------------- */
button {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    text-decoration: none;
    transition: all 0.5s;
}

button:hover {
    color: var(--accent-color-2);
}

a {
    text-decoration: none;
}

.w-max-content {
    width: max-content;
}

.read-more {
    color: var(--text-color);
    transition: all 0.5s;
    font-weight: 500;
}

.read-more:hover {
    color: var(--accent-color);
}

.tags {
    background: linear-gradient(90deg, #2d65a9, #3bb7ad);
    border: 1px solid #323232;
    border-radius: 90px;
    padding: 4px 24px 4px 4px;
    color: #ffffff;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.tags.accent {
    background: transparent;
    border: 1px solid #323232;
    border-radius: 90px;
    padding: 8px 16px;
    color: var(--text-color);
    width: max-content;
    transition: all 0.5s ease;
}

.card-blog:hover .tags {
    background-color: var(--accent-color-4);
    border: 1px solid var(--accent-color-4);
}

.tags.service {
    background: var(--accent-color-4);
    border: none;
    border-radius: 90px;
    padding: 8px 16px;
    color: var(--text-color);
    width: max-content;
    transition: all 0.5s ease;
}

.tags.service.active {
    background-color: var(--accent-color);
}

.tags.service:hover {
    background-color: var(--accent-color);
}

.tags.study {
    border: none;
    border-radius: 90px;
    padding: 8px 16px;
    color: var(--text-color);
    width: max-content;
    transition: all 0.5s ease;
    background: rgba(250, 250, 250, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(250, 250, 250, 0.2);
}

.btn {
    font-size: 18px;
    padding: 14px 24px;
    align-items: center;
    justify-content: center;
    position: relative;
    pointer-events: auto;
    cursor: pointer;
}

.btn::before,
.btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-close {
    color: var(--text-color);
}

.btn-close:hover {
    color: var(--text-color);
}

.btn-toggler-accent {
    font-size: 22px;
    width: 3rem;
    height: 3rem;
    padding: 0;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-color);
}

.btn-toggler-accent:hover {
    background-color: var(--text-color);
    color: var(--primary);
}

.btn-accent {
    background-color:  #22B9BB !important;
    color: #ffff;
    transition: all 0.5s;
    overflow: hidden;
    border-radius: 12px !important;
    border: 4px solid rgba(255, 255, 255, 0.08);
}

.btn-accent.line {
    background: transparent !important;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-accent:hover {
    color: white;
    border: 4px solid transparent;
    box-shadow: 0 4px 20px rgb(74 255 252 / 43%);
}

.btn-accent.line:hover {
    color: white;
    border: 1px solid var(--accent-color);
}

.btn-accent:hover i {
    color: var(--primary);
}

.btn-accent span {
    display: block;
    position: relative;
    z-index: 10;
}

.btn-accent:hover i {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

.btn-accent i {
    display: block;
    position: relative;
    z-index: 10;
}

.btn-accent:hover span {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleUpInitial {
    to {
        transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleUpEnd {
    from {
        transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.btn-accent::before {
    content: '';
    background: transparent;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.btn-accent.line::before {
    /* background: var(--accent-color); */
}

.btn-accent:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-accent::after {
    content: '';
    background: transparent;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-accent.line::after {
    /* background: var(--accent-color); */
}

.btn-accent:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}

.btn-accent-underline {
    background-color: transparent;
    border-bottom: 1px solid var(--text-color);
    color: var(--text-color);
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}

.btn-accent-underline:hover {
    color: var(--accent-color);
}

.btn-accent-underline::before {
    transform-origin: 0% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}

.btn-accent-underline:hover::before {
    transform: scale3d(1, 1, 1);
}

.btn-accent-underline::after {
    content: '';
    top: calc(100% + 4px);
    transition: transform 0.3s;
    transform-origin: 100% 50%;
}

.btn-accent-underline::before,
.btn-accent-underline::after {
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
}

.btn-accent-underline:hover::after {
    transform: scale3d(0, 1, 1);
}

.btn-play {
    cursor: pointer;
    border: none;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--accent-color-2);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: grid;
    place-content: center;
    transition:
        background 300ms,
        transform 200ms;
    font-weight: normal;
    margin-bottom: -5rem;
    margin-left: -5rem;
    z-index: 3;
}

.btn-play__text {
    position: absolute;
    inset: 0;
    animation: text-rotation 15s linear infinite;
    margin: 0.25rem;

}

.btn-play__text>span {
    position: absolute;
    transform: rotate(calc(10.5deg * var(--index)));
    inset: 1px;
    color: var(--text-color);
    font-size: 16px;
}

.btn-play__circle {
    position: relative;
    width: 40px;
    height: 40px;
    overflow: hidden;
    color: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.btn-play__circle i {
    font-weight: bold;
}

.btn-play__icon--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.btn-play:hover {
    transform: scale(1.05);
}

.btn-play:hover .btn-play__icon {
    color: var(--background-color);
}

.btn-play:hover .btn-play__icon:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.btn-play:hover .btn-play__icon--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

@keyframes text-rotation {
    to {
        rotate: 360deg;
    }
}

.card .link {
    color: var(--accent-color);
    transition: color 0.5s;
}

.card .link:hover {
    color: var(--primary);
}

.link.accent-color {
    color: var(--accent-color);
    transition: color 0.5s;
}

.link.accent-color:hover {
    color: var(--dark-bg);
}

.link {
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.5s;
}

.link.menu {
    text-decoration: none;
}

.link.active {
    color: var(--accent-color);
}

.link:hover {
    color: var(--accent-color);
}

/* ---------------------------- */
/* Overlay                      */
/* ---------------------------- */
.blog-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 69, 81, 0.6) 100%);
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 69, 81, 0.8) 100%)
}

.overlay {
    color: var(--accent-color-2);
    opacity: 0.3;
}

.bg-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) -78.74%, #004551 99.63%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bg-overlay-footer {
    background: linear-gradient(to top, #8EBBFF 0%, rgba(142, 187, 255, 0.6) 10%, rgba(142, 187, 255, 0.2) 50%, transparent 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    border-radius: 1rem;

}

.testimonial-overlay {
    background: linear-gradient(0deg, rgba(255, 239, 225, 0.96), rgba(255, 239, 225, 0.96));
    position: absolute;
    width: 75%;
    height: 100%;
    top: 0;
    right: 0;
}

.bg-accent-opacity {
    background: linear-gradient(0deg, rgba(43, 43, 43, 0.86), rgba(43, 43, 43, 0.86));
}

.linear-gradient {
    padding: 14px 42px;
    background-color: var(--accent-color-2);
    border-radius: 50px;
    width: max-content;
}

.cta-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.video-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/* ---------------------------- */
/* Utility Classes              */
/* ---------------------------- */
.devider {
    border-left: 2px solid var(--black-1);
    margin-bottom: 1rem;
    height: 10rem;
    margin-left: 0;
}

.devider-progress {
    height: 5rem;
    border-left: 2px solid var(--text-color);
    display: block;
    margin-left: 2.6rem;
}

.hover-transform:hover {
    transform: translateY(-10px);
}

.font-1 {
}

.font-2 {
}

.font-3 {
}

.ls-2 {
    letter-spacing: 2px;
}

.fs-7 {
    font-size: 0.8rem !important;
}

.fs-very-large {
    font-size: 4.125rem;
}

.fw-black {
    font-weight: 900 !important;
}

.team-detail {
    background-color: var(--background-color);
    color: var(--accent-color);
    transition: all 0.5s;
}

.team-detail:hover {
    background-color: var(--accent-color);
    color: var(--primary);
}

.divider {
    display: flex;
    align-items: center;
}

.divider::after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid #8692af;
    max-width: 30px;
    min-width: 30px;
}


.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-left: 1rem;
    font-weight: 400;
}

.image-infinite-bg {
    height: 90vh;
}

.animation-bg {
    animation: background_animation 10s forwards;
}

.bg-attach-fixed {
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 100%;
}

.bg-attach-cover {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.social-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-container.column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.character-img {
    position: relative;
    z-index: 2;
}

.masked-img {
    object-fit: cover;
    aspect-ratio: 3/2;
    width: 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: transparent;
}

.masked-img.first {
    mask-image: url("../image/mask-shape.html");
    -webkit-mask-image: url("../image/mask-shape.html");
}

.masked-img.second {
    mask-image: url("../image/mask-shape2.html");
    -webkit-mask-image: url("../image/mask-shape2.html");
}

.masked-img.third {
    mask-image: url("../image/mask-shape3.html");
    -webkit-mask-image: url("../image/mask-shape3.html");
}

.masked-img.fourth {
    mask-image: url("../image/mask-shape4.html");
    -webkit-mask-image: url("../image/mask-shape4.html");
}

.masked-img.fifth {
    mask-image: url("../image/mask-shape5.html");
    -webkit-mask-image: url("../image/mask-shape5.html");
}

.masked-img.sixth {
    mask-image: url("../image/mask-shape6.html");
    -webkit-mask-image: url("../image/mask-shape6.html");
}

.masked-img.seventh {
    mask-image: url("../image/mask-shape7.html");
    -webkit-mask-image: url("../image/mask-shape7.html");
}

.masked-img.eighth {
    mask-image: url("../image/mask-shape8.html");
    -webkit-mask-image: url("../image/mask-shape8.html");
}

.masked-img.ninth {
    mask-image: url("../image/mask-shape9.html");
    -webkit-mask-image: url("../image/mask-shape9.html");
}

.masked-img.tenth {
    mask-image: url("../image/mask-shape10.html");
    -webkit-mask-image: url("../image/mask-shape10.html");
}

.masked-img.eleventh {
    mask-image: url("../image/mask-shape11.html");
    -webkit-mask-image: url("../image/mask-shape9.html");
}

.masked-img.twelveth {
    transform: rotate(180deg);
}

.w-70 {
    width: 70%;
}

.stock-img {
    position: relative;
    z-index: 20;
}

.customer-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 52px;
    height: 52px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color-2);
    color: var(--text-color);
    margin-left: -15px;
    overflow: hidden;
}

.testimonial-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 19px;
    width: 5rem;
    height: 5rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    margin-left: -6px;
    overflow: hidden;
}

.button-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 23px;
    padding: 12px;
    aspect-ratio: 1/1;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    color: var(--primary);
    background-color: var(--accent-color);
    transition: 0.5s all;
}



.icon-boxs.circle-white {
    /* background: var(--text-color); */
    color: var(--primary);
    border-radius: 50%;
}

.icon-boxs.circle-gradient {
    /* background: #056BAA; */
    color: var(--primary);
    border-radius: 50%;
}

.icon-boxs.circle-glass {
    color: var(--primary);
    border-radius: 50%;
    /* background: radial-gradient(50% 50% at 50% 50%, rgba(219, 183, 255, 0.36) 0%, rgba(168, 85, 247, 0.36) 100%); */
    backdrop-filter: blur(10px);
}

.icon-boxs.cta {
    position: relative;
    padding: 0;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 107px;
    height: 107px;
    border-radius: 8px;
    background: var(--primary);
    box-shadow: inset 0px 0px 45px rgba(132, 150, 252, 0.12);
    overflow: hidden;
    transition: all 0.6s ease;
}

.icon-boxs.cta:has(svg):before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: #056BAA;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

.icon-boxs.cta svg {
    fill: var(--primary);
    position: relative;
    z-index: 1;
    transition: fill 0.2s ease;
}

.icon-boxs.cta.active::before {
    opacity: 1;
    /* fade-in gradient */
}

.icon-boxs.cta.active svg {
    fill: var(--text-color);
}

.author-box {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 15rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -6px;
    overflow: hidden;
}

.post-button {
    background-color: transparent;
    color: var(--accent-color) !important;
    border: none !important;
}

.post-button:hover {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    transform: scale(1.15);
}

.position-xl-absolute {
    position: absolute;
}

.w-60 {
    width: 60% !important;
}

.shadow-double {
    box-shadow: 40px -40px 0px -4px var(--accent-color), -54px 44px 0px -3px var(--text-color-2);
}

.shadow-single-left {
    box-shadow: -54px 44px 0px -3px var(--accent-color);
}

.shadow-single-right {
    box-shadow: 40px -40px 0px -4px var(--accent-color);
}

.shadow-accent-2 {
    -webkit-box-shadow: -90px -23px 0px 0px var(--accent-color);
    -moz-box-shadow: -90px -23px 0px 0px var(--accent-color);
    box-shadow: -90px -23px 0px 0px var(--accent-color);
}

.rounded-end {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.floating-blog {
    margin-top: -9rem;
}

.image-container {
    position: relative;
    display: inline-block;
}

.hotspot {
    position: absolute;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    width: max-content;
    transform: translateX(-50%) translateY(10px);
    background: var(--primary);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--primary) transparent transparent transparent;
}

.hotspot:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hotspot.active .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tooltip img {
    width: 20px;
    height: auto;
    border-radius: 3px;
}

.d-inline-block {
    display: inline-block;
}

.position-responsive {
    position: absolute;
}

.list .icon-box {
    width: 4.3rem;
    height: 4.3rem;
}

.list-flush-horizontal {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 1rem;
}

.list-flush-horizontal .list-item:first-child,
.list-flush-horizontal .list-item {
    border-right: 1px solid white;
}

.list-flush-horizontal .list-item:last-child {
    border-left: 1px solid white;
    border-right: none;
}

.list-flush-horizontal .list-item:nth-last-child(2) {
    border: none;
}

.list-group-item {
    background-color: transparent;
    border-radius: 10px;
}

.list-group .list-group-item .link {
    background-color: transparent;
    border: none;
    color: var(--text-color);
    transition: all 0.5s;
    font-size: 24px;
    font-weight: 500;
}

.list-group .list-group-item .link:hover {
    color: var(--accent-color) !important;
}

.list-group .list-group-item i {
    color: var(--text-color);
    transition: all 0.5s;
}

.list-group .list-group-item:hover i {
    color: var(--accent-color);
    transform: rotate(-45deg);
}

.list-group .list-group-item.active {
    background-color: var(--accent-color-2);
    color: var(--accent-color);
}

.list-group .list-group-item.list-group-item-action:hover {
    background-color: var(--accent-color-2);
    color: white;
}

.list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    padding-inline: 0.5rem;
}

.list .link {
    font-weight: 400;
    text-wrap: nowrap;
}

.list li {
    padding: 0;
    font-size: 16px;
}

.list li .link {
    transition: all 0.5s;
    color: var(--text-color-2);
}

.list li i {
    transition: all 0.5s;
    color: var(--accent-color);
}

.list.text-black i {
    color: #131313;
}

.list li .link:hover,
.list li .link:hover i {
    color: var(--accent-color);
}

.countdown {
    display: flex;
    gap: 20px;
}

.countdown-box {
    background-color: var(--accent-color-3);
    color: var(--text-color);
    text-align: center;
    padding: 30px;
    width: 200px;
    border-radius: 8px;
}

.countdown-box h2 {
    margin: 0;
}

.countdown-box p {
    margin: 0;
}

/* ---------------------------- */
/* Social and Contact Setting    */
/* ---------------------------- */
.customer-container {
    display: flex;
}

.customer-item:nth-child(1) {
    z-index: 3;
    margin-left: 0;
}

.customer-item:nth-child(2) {
    z-index: 4;
}

.customer-item:nth-child(3) {
    z-index: 5;
}

.customer-item:nth-child(4) {
    z-index: 6;
}

.subscribe-container {
    box-sizing: border-box;
    margin-bottom: -8em;
}

.contact-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 40px;
    height: 2rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}


.social-item {
    border-radius: 8px;
    aspect-ratio: 1/1;
    font-size: 20px;
    width: 2.3rem;
    height: 2.3rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    border: 1px solid #8AD2D7;
    background: var(--primary);
}

.social-item:hover {
    background: var(--accent-color-6);
    color: var(--text-color);
    border: solid 1px var(--accent-color);
}

.social-item.team {
    border: none;
    background: transparent;
}

.social-item.team:hover {
    background: var(--accent-color-6);
    color: var(--text-color);
    border: solid 1px var(--accent-color);
}

.social-container .share-button {
    background-color: var(--accent-color-1);
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.share-button:hover {
    background-color: var(--accent-color-2);
}

/* ---------------------------- */
/* Breadcrumb    */
/* ---------------------------- */
.breadcrumb {
    align-items: center;
    color: var(--text-color);
    font-size: 20px;
}

.breadcrumb .breadcrumb-item {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.breadcrumb .breadcrumb-item>a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 20px;
}

.breadcrumb .breadcrumb-item.active {
    color: var(--text-color);
    font-size: 20px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: none;
    color: var(--text-color-2);
}


/* ---------------------------- */
/* Specific Media Queries       */
/* ---------------------------- */
.video-e119 {
    width: 60%;
    margin-bottom: -3rem;
    margin-left: -3rem;
}

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%;
}

.video-container {
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 5px solid white;
    border-radius: 10px;
}

.video-iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 4rem;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 2rem;
    color: white;
    border: none;
    opacity: 0.7;
}

.video-btn:hover {
    opacity: 1;
    color: white;
}

.request-loader {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50% !important;
    border: solid 1px var(--accent-color);
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 24px;
    aspect-ratio: 1/1;
}

.request-loader.banner {
    position: relative;
    height: 90px;
    width: 90px;
    border-radius: 50% !important;
    border: solid 6px var(--primary);
    background-color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 45px;
    aspect-ratio: 1/1;
}

.request-loader:hover {
    border: solid 2px var(--primary);
    color: var(--accent-color);
    background-color: var(--primary);
}

.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--accent-color);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;

}

.request-loader:hover::after,
.request-loader:hover::before {
    color: var(--primary);
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}

.request-loader.accent {
    width: 40px;
    height: 40px;
    font-size: 16px;
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: var(--primary);
}

.request-loader.accent:hover {
    border: solid 2px var(--text-color);
    color: var(--accent-color-4);
    background-color: var(--text-color);
}


/* ---------------------------- */
/* card Setting       */
/* ---------------------------- */
.card {
    border: none;
    transition: all 0.5s;
    background-color: unset;
}

.card:hover {
    transform: translateY(-10px);
    width: 100%;
    top: 0;
    left: 0;
}

.card-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-title p {
    max-width: 400px;
}

.card-title.middle {
    align-items: center;
    text-align: center;
}

.card-service {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
    color: var(--text-color);
    background-color: #8AD2D7;
    border-radius: 16px;
}

.card-service svg {
    fill: var(--text-color);
}

.card-feature {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    align-items: flex-start;
    background-color: #2D65A9;
    border-radius: 16px;
}


.card-feature.animated-gradient {
    background-image: none;
    background-color: #8AD2D7;
    transition: all 0.5s;
}

.card-feature:hover.animated-gradient {
    width: 100%;
    background-color: rgb(94, 148, 219);
    background-image:
        radial-gradient(at 100% 53%,rgb(66, 140, 201) 0px, transparent 50%),
        radial-gradient(at 87% 99%, rgb(32, 95, 146) 0px, transparent 50%);
    background-size: 130% 130%;
    animation: moveGradient 5s ease-in-out infinite alternate;
    box-shadow: inset 0px 0px 45px rgba(192, 132, 252, 0.12);
}

.card-feature.active.animated-gradient {
    width: 100%;
    background-color:#8AD2D7;
    background-image:
        radial-gradient(at 100% 53%,#2D65A9 0px, transparent 50%),
        radial-gradient(at 87% 99%, #2D65A9 0px, transparent 50%);
    background-size: 130% 130%;
    animation: moveGradient 2s ease-in-out infinite alternate;
    box-shadow: inset 0px 0px 45px rgba(192, 132, 252, 0.12);
}

.stack-container {
    position: relative;
    height: 300px;
    margin-top: 5rem;
}


.animated-gradient {
    background-color: #ffffff;
    background-image:
        radial-gradient(at 82% 16%, rgb(255, 255, 255) 0px, transparent 50%),
        radial-gradient(at 16% 86%,#56999e 0px, transparent 50%);
    background-size: 200% 200%;
    animation: moveGradient 3s ease-in-out infinite alternate;
}

.animated-gradient.heroheader {
    width: 100%;
    background-color: rgb(255, 255, 255);
    background-image:
        radial-gradient(ellipse 30% 60% at 100% 0%, #2b9ca0, transparent 100%),
        radial-gradient(ellipse 60% 50% at 0% 10%, #2b9ca0, transparent 100%),
        radial-gradient(ellipse 60% 60% at 100% 100%,  #2b9ca0, transparent 100%);
    background-size: 130% 130%;
}

.animated-gradient.card-image-single {
    width: 100%;
    background-color: hsla(255, 22%, 10%, 1);
    background-image:
        radial-gradient(ellipse 100% 70% at 100% 100%, hsla(270, 74%, 61%, 1) 0%, transparent 100%),
        radial-gradient(ellipse 80% 50% at 0% 100%, hsla(309, 100%, 73%, 1) 0%, transparent 100%);
    background-size: 160% 110%;
    animation: moveGradient 3s ease-in-out infinite alternate;
}

.animated-gradient.card-service {
    width: 100%;
    background-color: #3887a7;
    background-image:
        radial-gradient(ellipse 100% 70% at 100% 100%, #22B9BB 0%, transparent 100%),
        radial-gradient(ellipse 80% 50% at 0% 100%, #22B9BB 0%, transparent 100%);
    background-size: 160% 110%;
    animation: moveGradient 3s ease-in-out infinite alternate;
    box-shadow: inset 0px 0px 45px rgba(25, 57, 126, 0.12);
}

.animated-gradient.cta {
width: 100%;
    background-color: #070b11;
    background-image: radial-gradient(900px circle at 75% 20%, rgba(59, 183, 173, .35), transparent 55%), radial-gradient(700px circle at 20% 80%, rgba(45, 101, 169, .35), transparent 60%);
    background-size: 150% 100%;
    animation: moveGradient 5s ease-in-out infinite alternate;
}

.animated-gradient.middle {
    width: 100%;
    background-color:#8AD2D7;
    background-image:
        radial-gradient(ellipse 40% 15% at 100% 50%, hsla(266, 74%, 61%, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 60% 20% at 0% 50%, hsla(309, 100%, 73%, 0.5) 0%, transparent 100%);
    background-size: 150% 100%;
    animation: moveGradient 5s ease-in-out infinite alternate;
}

.animated-gradient.team {
    width: 100%;
    background-color: #8AD2D7;
    /* background-image:
        radial-gradient(ellipse 60% 40% at 0% 46%, hsla(266, 74%, 61%, 0.25) 0%, transparent 100%),
        radial-gradient(ellipse 50% 60% at 100% 50%, hsla(309, 100%, 73%, 0.30) 0%, transparent 100%); */
    background-size: 130% 100%;
    animation: moveGradient 2s ease-in-out infinite alternate;
}

.animated-gradient.footer {
    width: 100%;
    background-color:#8AD2D7;
    /* background-image:
        radial-gradient(ellipse 60% 40% at 10% 0%, hsla(266, 74%, 61%, 0.5) 0%, transparent 100%); */
    background-size: 160% 100%;
    animation: moveGradient 5s ease-in-out infinite alternate;
}


@keyframes moveGradient {
    0% {
        background-position: 20% 0%;
    }

    50% {
        background-position: 90% 40%;
    }

    100% {
        background-position: 20% 100%;
    }
}

.glass-box {
    position: relative;
    color: var(--accent-color-2);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(7px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.blog {
    display: flex;
    flex-direction: column;
}

.card-blog {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 16px;
    background-color: #8AD2D7;
    transition: all 0.5s;
    padding: 32px;
    color: var(--text-color);
}

.card-blog:hover {
    box-shadow: inset 0px 0px 45px rgba(192, 132, 252, 0.12);
}

.card-team {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    padding-inline: 32px;
}

.card-image {
    background-color:#163050;
    aspect-ratio: 1/1;
    border-radius: 50%;
    transition: all 0.5s;
    overflow: hidden;
}

.card-image:hover {
    box-shadow: inset 0px 0px 45px #2D65A9;
}

.card-team h6 {
    color: var(--text-color);
    transition: all 0.5s;
}

.card-team:hover h6 {
    color: #2D65A9;
}

.card-about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    background: var(--primary);
    color: var(--text-color);
    border-radius: 16px;
    transition: all 0.5s;
    gap: 32px;
}

.card-about:hover {
    background: #22B9BB;
    box-shadow: inset 0px 0px 45px rgba(192, 132, 252, 0.12);
}

.card-about svg {
    fill: var(--text-color);
}

.card-about:hover svg {
    fill: var(--accent-color);
}

.card-about p {
    max-width: 250px;
}

.card-404 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    background: rgba(250, 250, 250, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 32px;
    margin-top: -10rem;
}

.card-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    background-color: #a3f2f8;
    border-radius: 12px;
    height: 100%;
    transition: all 0.5s;
}

.card-contact:hover {
    box-shadow: inset 0px 0px 45px #22B9BB;
}

.tab-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.tabs {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    width: max-content;
    cursor: pointer;
}

.tab {
    padding: 8px 12px;
    border-radius: 12px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-color);
    transition: all 0.5s;
}

.tab.active {
    color: var(--text-color);
    background: #056BAA;
    border: 1px solid var(--accent-color);
}

.tab:hover {
    color:#056BAA;
    background:  #22B9BB;
    border: 1px solid var(--accent-color);
}

.tab-content {
    width: 100%;
    padding: 10px;
    background-color: var(--accent-color-2);
    border-radius: 16px;
}

.content {
    display: none;
    transition: all 0.5s;
}

.content.active {
    display: block;
}

.background-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.image-hover {
    opacity: 0;
    position: absolute;
}

.image-swiper {
    overflow: hidden;
    transition: all 0.5s;
}

.image-swiper:hover {
    transform: translateY(-8px);

}

.card-pricing {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    padding: 37px;
    border-radius: 16px;
    background-color: var(--accent-color-3);
    transition: all 0.5s;
}

.card-pricing.animated-gradient {
    background-image: none;
    background-color: var(--accent-color-3);
    transition: all 0.5s;
}

.card-pricing:hover.animated-gradient {
    width: 100%;
    background-color: hsla(255, 22%, 10%, 1);
    background-image:
        radial-gradient(at 100% 53%, hsla(266, 74%, 61%, 0.42) 0px, transparent 50%),
        radial-gradient(at 87% 99%, hsla(309, 100%, 73%, 0.35) 0px, transparent 50%);
    background-size: 130% 130%;
    animation: moveGradient 5s ease-in-out infinite alternate;
    box-shadow: inset 0px 0px 45px rgba(192, 132, 252, 0.12);
}

.card-pricing.active.animated-gradient {
    width: 100%;
    background-color: hsla(255, 22%, 10%, 1);
    background-image:
        radial-gradient(at 100% 53%, hsla(266, 74%, 61%, 0.42) 0px, transparent 50%),
        radial-gradient(at 87% 99%, hsla(309, 100%, 73%, 0.35) 0px, transparent 50%);
    background-size: 130% 130%;
    animation: moveGradient 5s ease-in-out infinite alternate;
    box-shadow: inset 0px 0px 45px rgba(192, 132, 252, 0.12);
}

.card-pricing .btn-accent {
    background-color: var(--text-color);
}

.card-overlay {
    position: relative;
}

.card-overlay i {
    font-size: 23px;
    padding: 12px;
    display: inline-block;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    color: var(--primary);
    background-color: var(--accent-color);
    transition: 0.5s all;
}

.card-overlay i:hover {
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--accent-color);
    transform: rotate(45deg);
    transition: 0.5s all;
}

.card-overlay .card-body {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    padding: 3rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.5s;
    background: linear-gradient(0deg, rgba(25, 28, 37, 0.75), rgba(25, 28, 37, 0.75));
}


.card-overlay:hover .card-body {
    transform: scaleY(1);
    opacity: 1;
}

.card:hover .icon-boxs.bg-accent-color {
    background-color: white;
    color: #2D65A9;
}

.card:hover p {
    transition: all 0.5s;
}

.testimonial-container {
    background-color: var(--accent-color-3);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: inset 0px 0px 45px rgba(192, 132, 252, 0.12);
    border-radius: 16px;
    height: 250px;
    justify-content: space-between;
}

.card-counter {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding-inline: 2rem;
    transition: all 0.5s;
}

/* ---------------------------- */
/* Progress and Rating       */
/* ---------------------------- */
.r-progress {
    --value: 17;
    --progress-color: var(--accent-color);
    --secondary-progress-color: var(--accent-color-3);
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 5px;
    background-color: var(--secondary-progress-color);
    display: flex;
    border-radius: 8px;
    /* overflow: hidden; */
}

.r-progress-bar .progress-value {
    height: 100%;
    border-radius: 8px;
    width: calc(var(--progress) * 1%);
    background-color: var(--progress-color);
    position: relative;
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: black;
}

.r-progress-bar.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    display: block;
    position: absolute;
    left: calc((var(--progress) * 1%));
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    font-size: 16px;
    line-height: 1.2;
    /* font-weight: 700; */
    bottom: calc(100% + 0.5rem);
}

.rating {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.rating li {
    color: #f1c644;
}

.rating li.inactive {
    color: #d9d9d9;
}

.glass-effect {
    background: transparent;
}

/* ---------------------------- */
/* Accordion                    */
/* ---------------------------- */
.accordion {
    --bs-accordion-bg: transparent;
}

.accordion .accordion-item {
    border: 1px solid #8AD2D7;
    background-color: #173457;
    color: var(--text-color-2);
    outline: none;
    padding: 0;
    background: #8AD2D7;
    box-shadow: inset 0px 0px 45px rgba(192, 132, 252, 0.12);
    border-radius: 16px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion .accordion-button {
    background-color: transparent;
    padding: 28px !important;
    color: var(--text-color);
    outline: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: left;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 500;
    border-radius: 16px !important;
}

.accordion .accordion-button.accent {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.accordion-button::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23FAFAFA" class="bi bi-plus" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/></svg>');
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23FAFAFA" class="bi bi-dash" viewBox="0 0 16 16"><path d="M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8"/></svg>');
}

.accordion .accordion-button:not(.collapsed) {
    color: var(--text-color);
    background-color: #8AD2D7;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: none;
}

.accordion .accordion-body {
    background-color: transparent;
    font-size: 16px;
    color: var(--text-color-2);
    padding-bottom: 28px;
    padding-left: 28px;
    padding-right: 10rem;
    padding-top: 0;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0;
}

.accordion.hero .accordion-body {
    background-color: var(--accent-color-2);
    font-size: 16px;
    color: var(--text-color-2);
    padding-inline: 0;
    text-align: start;
    border-radius: 16px;
    padding: 32px;
}

.accordion.hero .accordion-button {
    background-color: var(--accent-color-3);
    padding: 12px !important;
    color: var(--text-color);
    outline: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: left;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    border-radius: 16px !important;
}

.accordion.hero .accordion-button span {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50px;
    background-color: var(--accent-color);
    color: var(--accent-color-2);
}

.accordion.hero .accordion-button .title {
    background-color: var(--accent-color-2);
    padding: 12px;
    width: 100%;
    color: var(--text-color);
}

.accordion.hero .accordion-item {
    border: 1px solid var(--accent-color-3);
    background-color: var(--accent-color-2);
    color: var(--text-color-2);
    outline: none;
    padding: 0;
    border-radius: 16px;
}

.accordion.hero .accordion-button::after {
    display: none;
}

.accordion.hero .accordion-button:not(.collapsed)::after {
    background-image: none;
}

.accordion.hero .accordion-button::after {
    background-color: var(--accent-color);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23FFFFFF" class="bi bi-plus" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/></svg>');
}

.accordion.hero .accordion .accordion-button:not(.collapsed) {
    color: var(--accent-color);
    box-shadow: none;
    border: none;
    padding: 0;
}

@media only screen and (max-width:1023px) {

    /* ---------------------------- */
    /* Typography                   */
    /* ---------------------------- */
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 14px;
    }

    p,
    button,
    a {
        font-size: 13px;
    }

    .heading-bg {
        padding: 0;
        margin-left: 0;
    }

    .text-404 {
        font-size: 50px;
    }

    .counter-text {
        font-size: 42px;
    }

    .large-text {
        font-size: 40px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    /* ---------------------------- */
    /* Button and Links Setting     */
    /* ---------------------------- */
    .btn {
        font-size: 13px;
        width: 100%;
    }

    /* ---------------------------- */
    /* Header and Navigation Setting  */
    /* ---------------------------- */
    .logo-container {
        max-width: 100px;
    }

    .nav-link {
        padding-block: 0.2rem;
        text-align: center;
    }

    #header {
        background: transparent;
    }

    .offcanvas-fullwidth {
        width: 100vw !important;
        max-width: 100vw;
    }

    /* ---------------------------- */
    /* Utility Classes              */
    /* ---------------------------- */
    .p-banner {
        color: var(--text-color);
    }

    .w-max-content {
        width: 100%;
    }


.pf-why,.faq-ai-section,.hero-dark,.counter-ai {

    padding: 4em 2em 4em 2em !important;
}
.neo-header {
    padding: 0em 0.8em 0em 0.8em !important;
}
    .doubleContain {
        padding-bottom: 8em;
    }

    .divider {
        width: 330px;
    }

    .fs-very-large {
        font-size: 3.125rem;
    }

    .text-404 {
        font-size: 8rem;
        font-weight: 700;
    }

    .image-absolute-1 {
        left: 45%;
        top: 35%;
    }

    .image-infinite-bg {
        background-size: cover !important;
    }


    .border-custom {
        border-width: 0px 0px 1px 0px;
    }

    .outer-margin {
        margin-right: 0;
    }

    .banner-image {
        margin: 0;
        transform: none;
    }

    .testimonial-img {
        margin: 0;
        margin-bottom: 1rem;
    }

    .dropdown-menu {
        width: 100%;
        box-shadow: none;
    }

    .video-e119 {
        width: 85%;
        margin-left: -1.5rem;
    }

    .dropdown-item {
        padding-block: 0.35rem;
        text-align: center;
        background-color: var(--accent-color-4);
    }

    .floating-image {
        margin-left: 0;
    }

    .floating-price {
        top: -2.5rem;
        right: -7.5rem;
    }

    .floating-heading {
        margin-left: 0;
    }

    .floating-banner {
        top: 0;
        left: 0;
        right: 0;
        margin-right: 1rem;
        margin-left: 1rem;
        margin-top: -10rem;
    }

    .floating-top {
        margin-top: 0;
    }

    .floating-testi {
        margin-bottom: 1rem;
        margin-top: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .floating-services {
        position: relative;
        z-index: 9999;
        margin-top: 3rem;
        margin-bottom: 1rem;
    }

    .floating-services-2 {
        margin-left: 0;
    }

    .floating-services-2 .padding {
        padding-left: 3rem;
    }

    .floating-services-3 {
        position: relative;
        margin-top: 1rem;
        margin-bottom: -3rem;
    }

    .floating-services-3 .padding {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .floating-bottom {
        position: initial;
        top: 0;
        left: 0;
    }

    .floating-bottom-1 {
        position: initial;
        bottom: 0;
        right: 0;
        left: 0;
    }

    .floating-bottom-2 {
        position: initial;
        bottom: 0;
        right: 0;
        left: 0;
        margin-top: 1rem;
    }

    .floating-contact {
        margin-left: 0rem;
    }

    .floating-counter {
        position: relative;
        margin-top: -5rem;
        z-index: 9999;
    }

    .floating-blog {
        margin-top: 0;
    }

    .border-testimonial {
        border-right: none;
    }

    .card-counter {
        align-items: start;
    }

    .card-content {
        flex-direction: column;
    }

    .service-container {
        background-color: transparent;
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
        box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

    .navigation {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: space-between;
        gap: 1rem;
    }

    .navigation img {
        margin-block: 0;
        height: 0;
    }

    .navigation:hover img {
        height: 100%;
    }

    .appointment-box {
        top: -2rem;
        bottom: 0;
        left: 0;
        right: 0;
        height: 8rem;
    }

    .w-md-70 {
        width: 70%;
    }

    .w-md-60 {
        width: 60%;
    }

    .position-responsive {
        position: relative;
    }

    .form-appointment-container {
        position: relative;
        transform: translateY(0);
    }

    .list-flush-horizontal {
        flex-direction: column;
    }

    .list-flush-horizontal .list-item:first-child,
    .list-flush-horizontal .list-item {
        border-right: none;
        border-bottom: 1px solid white;
    }

    .list-flush-horizontal .list-item:last-child {
        border-left: none;
        border-bottom: none;
        border-top: 1px solid white;
    }

    .position-xl-absolute {
        position: static;
    }

    .banner-heading {
        font-size: 2.5rem;
    }

    .tab-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .class-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    footer .d-flex.flex-column {
        text-align: center;
        justify-content: center;
        align-items: center;

        padding: 0 0 0 0;
    }

    footer .link.d-flex.flex-row {
        text-align: center;
        justify-content: center;
        align-items: center;

    }

    footer .list {
        padding: 0 0 0 0;
    }

    .footer {
        position: relative;
    }


    .footer-img {
        position: relative;
    }

    .features-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .testimonial-container {
        background-color: var(--accent-color-2);
        padding: 1rem;
        border-radius: 10px;

    }

    .swiperTestimonials2 {
        height: 500px;
    }

    .swiperImage {
        padding-bottom: 0;
    }

    .service-scroll {
        padding-right: 1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        visibility: hidden;
        display: none;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        visibility: hidden;
        display: none;
    }

    .btn-play {
        margin-left: 70%;
    }

    .card-feature {
        margin-left: 0px;
        max-width: 100%;
    }

    .cta p {
        color: var(--text-color-2);
    }

    .cta h2 {
        color: var(--text-color);
    }
.hero-v3 {
     padding: 11em 2em 0em 2em !important;
    height: 169vh !important
}

}

.card-service {
  background: var(--portus-card);
  border-radius: 22px;
  padding: 28px;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.card-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}
.card-service.featured {
  background: var(--portus-card-feature);
  color: #fff;
}

.card-service.featured h5,
.card-service.featured p {
  color: #ffffff;
}

.card-service.featured::after {
  content: "FEATURED";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.2);
  padding: 6px 10px;
  border-radius: 999px;
}
.circle-gradient {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #20c997, #38d9a9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-service.featured .circle-gradient {
  background: rgba(255,255,255,0.2);
}

.circle-gradient svg path {
  fill: #fff;
}
.card-service h5 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--portus-text);
}

.card-service p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--portus-muted);
  margin-top: 8px;
}

.card-service.featured p {
  color: rgba(255,255,255,0.9);
}
.card-service figure img {
  opacity: 0.85;
  filter: saturate(0.9);
}
.card-service:hover figure img {
  opacity: 1;
  transform: scale(1.03);
}
/* .section {
  background: linear-gradient(
    180deg,
    #f8fdfc 0%,
    #ffffff 100%
  );
} */
.text-accent {
  background: linear-gradient(
    90deg,
    var(--portus-blue),
    var(--portus-teal),
    var(--portus-mint)
  );
  background-size: 180% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
animation: moveGradienttext 3s ease-in-out infinite;
}



@keyframes moveGradienttext {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}


.card-service {
  background: linear-gradient(
    180deg,
    #eef9f8,
    #e6f6f4
  );
}
.card-service.featured {
  background: linear-gradient(
    135deg,
    #2fb7ad,
    #4ccdc3
  );
}
.hero-v3 {
  position: relative;
  height: 90vh;
  padding: 2.5em;
  background:
    radial-gradient(1200px circle at 80% 20%, rgba(59,183,173,.38), transparent 60%),
    radial-gradient(900px circle at 15% 80%, rgba(45,101,169,.32), transparent 65%),
    linear-gradient(180deg, #0e1620 0%, #121c26 100%);
  color: #fff;
  overflow: hidden;
}
.hero-v3::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);

  background-size: 36px 36px;
  opacity: .25;

  pointer-events: none;
}

.hero-v3::after {
  content: "";
  position: absolute;
  inset: -25%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,.06),
    transparent 65%
  );
  transform: rotate(-12deg);
  animation: heroSweep 14s linear infinite;
  pointer-events: none;
}


@keyframes heroSweep {
  from { transform: translateX(-40%) rotate(-12deg); }
  to   { transform: translateX(40%) rotate(-12deg); }
}




/* Pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: rgb(255, 255, 255);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  margin-bottom: 26px;
}

.hero-pill span {
  font-size: 14px;
  font-weight: 500;
  color:  black;
}

/* Headline */
.hero-title {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 600;
color:#58c0c3;
}

.accent-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* Icon tilt */
.icon-boxs.tilt {
  transform: rotate(-12deg);
  background: linear-gradient(135deg, #3bb7ad, #2d65a9);
}

/* Sub text */
.hero-sub {
  margin-top: 22px;
  max-width: 520px;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

/* Image */
.hero-visual {
  position: relative;
}

.hero-mockup {
  width: 82%;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.25));
  transition: transform .25s ease;
}
.text-accent {
  line-height: 1.15;   /* 👈 sab se important */
  padding: 0.05em 0;   /* 👈 tiny breathing space */
}
.text-accent {
  display: inline-block;
  line-height: 1.2;
  padding-bottom: 0.08em;
}


.framework-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* DARK MODE */
body.dark .framework-section {
  background: linear-gradient(180deg, #0b1220 0%, #0e1628 100%);
}

.framework-header {
  max-width: 840px;
  margin: 0 auto 80px;
  text-align: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3bb7ad;
}

.framework-header h2 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin: 16px 0;
}

.framework-header p {
  font-size: 17px;
  color: #5f6b7a;
}

body.dark .framework-header p {
  color: #a9b4c4;
}

/* GRID */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
}

/* CARD */
.framework-card {
  position: relative;
  background: #ffffff;
  padding: 42px 36px;
  border-radius: 20px;
  border: 1px solid #e6ebf0;
  transition: all 0.4s ease;
  overflow: hidden;
}

body.dark .framework-card {
  background: #0f1b30;
  border-color: #1e2a44;
}

/* STEP NUMBER */
.step {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #9aa6b2;
}

/* ICON */
.framework-card .icon {
  font-size: 30px;
  margin-bottom: 18px;
}

/* HOVER GLOW */
.framework-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at var(--x, 50%) var(--y, 50%),
    rgba(59, 183, 173, 0.15),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.framework-card:hover::before {
  opacity: 1;
}

.framework-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}
/* ===============================
   KPI SECTION BASE
================================ */
.kpi-section {
  position: relative;
  padding: 100px 0 80px;
  background: #0b0f14;
  color: #fff;
  overflow: visible; /* IMPORTANT */
  isolation: isolate;
  font-family: Inter, system-ui, -apple-system, sans-serif;
      margin-top: 42px;
    border-radius: 32px;
}

/* ===============================
   AI BACKGROUND LAYERS
================================ */
.kpi-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

.kpi-noise {
  opacity: 0.08;              /* REDUCED */
  mix-blend-mode: soft-light; /* AI look */
  will-change: background-position;
  transform: scale(1.2);      /* soften grain */
}

.kpi-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,.75));
  z-index: 2;
  pointer-events: none;
      border-radius: 32px;
}

.kpi-intel-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(59,183,173,.18), transparent 55%);
  z-index: 1;
  pointer-events: none;
}

/* ===============================
   SCANLINE
================================ */
.kpi-scanline {
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(59,183,173,0.25),
    transparent
  );
  z-index: 3;
  pointer-events: none;
}

/* ===============================
   KPI GRID
================================ */
.kpi-container {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ===============================
   KPI CARD
================================ */
.kpi-item {
  position: relative;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: transform .35s ease, box-shadow .35s ease;
}

.kpi-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

/* ===============================
   KPI TOP
================================ */
.kpi-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.kpi-number {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ===============================
   KPI DELTA
================================ */
.kpi-delta {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: .85;
}

.kpi-delta.up { color: #3bb7ad; }
.kpi-delta.down { color: #ff6b6b; }
.kpi-delta.flat { color: #bfc7d5; }

/* ===============================
   KPI BAR
================================ */
.kpi-bar {
  margin-top: 14px;
  height: 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}

.kpi-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3bb7ad, #5ddcff);
  border-radius: 6px;
}

/* ===============================
   KPI LABEL
================================ */
.kpi-item p {
  margin-top: 14px;
  font-size: 15px;
  color: #ffffff;
  opacity: .85;
}

/* ===============================
   TOOLTIP (CRITICAL FIX)
================================ */
.kpi-tooltip {
  position: fixed; /* IMPORTANT */
  top: 0;
  left: 0;
  width: 260px;
  padding: 14px 16px;
  background: #111722;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  box-shadow: 0 25px 80px rgba(0,0,0,.6);
  color: #fff;
  z-index: 2147483647; /* MAX */
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-9999px,-9999px,0);
  transition: opacity .18s ease;
}

.kpi-tip-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #3bb7ad;
}

.kpi-tip-text {
  font-size: 13px;
  line-height: 1.5;
  opacity: .85;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .kpi-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 576px) {
  .kpi-container {
    grid-template-columns: 1fr;
  }

  .kpi-number {
    font-size: 34px;
  }
.hero-visual {
    margin-top: 51px !important;
}
}
/* =====================================================
   SECTION BASE (Premium SaaS)
===================================================== */



/* =====================================================
   HEADINGS & TEXT
===================================================== */

.section h3 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0b1220;
}

.section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5f6b7a;
}

.text-accent {
  background: linear-gradient(90deg, #2d65a9, #3bb7ad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =====================================================
   BUTTON
===================================================== */

.btn-accent {
  padding: .75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(90deg, #2d65a9, #3bb7ad);
  color: #fff;
  border: none;
  box-shadow: 0 10px 30px rgba(59,183,173,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(59,183,173,.45);
}

/* =====================================================
   SERVICE CARDS (Glass + Depth)
===================================================== */

.card-service {
  position: relative;
  height: 100%;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow:
    0 10px 30px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.6);
  transition: all .35s ease;
}

.card-service:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px rgba(59,183,173,.18),
    inset 0 1px 0 rgba(255,255,255,.7);
}

/* =====================================================
   FEATURED CARD (Center Highlight)
===================================================== */

.card-service.featured {
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.8)),
    radial-gradient(600px circle at 50% 0%, rgba(59,183,173,.15), transparent 60%);
  border: 1px solid rgba(59,183,173,.35);
}

.card-service.featured::after {
  content: "CORE";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(59,183,173,.15);
  color: #2d8f88;
}

/* =====================================================
   ICON BOX
===================================================== */

.icon-boxs {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;

  background:
    linear-gradient(135deg, rgba(59,183,173,.25), rgba(45,101,169,.25));
  box-shadow: 0 8px 18px rgba(59,183,173,.35);
}

/* .icon-box svg {
  fill: #0b1220;
} */

/* =====================================================
   CARD TITLES & TEXT
===================================================== */

.card-service h5 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0b1220;
  margin-bottom: .5rem;
}

.card-service p {
  font-size: .95rem;
  color: #5f6b7a;
}

/* =====================================================
   SVG ILLUSTRATIONS
===================================================== */

.card-service figure {
  margin-bottom: 1.5rem;
  opacity: .85;
  animation: floatSoft 6s ease-in-out infinite;
}

.analytics-svg,
.workflow-svg,
.visibility-svg {
  width: 100%;
  stroke: #3bb7ad;
  fill: none;
}

/* =====================================================
   SUBTLE FLOAT ANIMATION (AI Alive Feel)
===================================================== */

@keyframes floatSoft {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
/* =========================
   HERO AI BASE
========================= */

.hero-ai {
  position: relative;
  min-height: 95vh;
  padding: 6rem 1.5rem;
  background: #070b11;
  overflow: hidden;
  color: #fff;
}

/* gradient wash */
.hero-ai-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px circle at 75% 20%, rgba(59,183,173,.35), transparent 55%),
    radial-gradient(700px circle at 20% 80%, rgba(45,101,169,.35), transparent 60%);
  filter: blur(40px);
  opacity: .9;
}

/* subtle AI noise */
.hero-ai-noise {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.02),
      rgba(255,255,255,.02) 1px,
      transparent 1px,
      transparent 2px
    );
  opacity: .12;
  pointer-events: none;
}

.hero-ai-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}

/* =========================
   HEADER
========================= */

.hero-ai-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
}

.hero-ai-text h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero-ai-text h2 span {
  background: linear-gradient(90deg, #3bb7ad, #6fa8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-ai-text p {
  max-width: 520px;
  margin-top: 1rem;
  color: rgba(255,255,255,.65);
}

/* CTA */
.hero-ai-btn {
  padding: .7rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #3bb7ad, #2d65a9);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(59,183,173,.35);
  transition: all .3s ease;
}

.hero-ai-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(59,183,173,.55);
}

/* =========================
   CARDS GRID
========================= */

.hero-ai-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* =========================
   AI CARD
========================= */

.ai-card {
  position: relative;
  padding: 2.4rem 2rem;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.03)
  );
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 30px 60px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.15);
  transition: transform .4s ease, box-shadow .4s ease;
}

.ai-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 80px rgba(59,183,173,.35);
}

.ai-card h4 {
  margin-top: 1.6rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.ai-card p {
  margin-top: .6rem;
  font-size: .95rem;
  color: rgba(255,255,255,.65);
}

/* =========================
   FEATURED CARD
========================= */

.ai-card.featured {
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
  border-color: rgba(59,183,173,.45);
  box-shadow:
    0 50px 100px rgba(59,183,173,.35);
  transform: translateY(-8px);
}

.ai-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: .65rem;
  letter-spacing: .14em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(59,183,173,.25);
  color: #9ff3ea;
}

/* =========================
   SVG / VISUAL AREA
========================= */

.ai-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .85;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .hero-ai-cards {
    grid-template-columns: 1fr;
  }

  .hero-ai-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===== HEADER BASE ===== */
.neo-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 999;
  pointer-events: none;
}

.neo-wrap {
  max-width: 1320px;
  margin: auto;
  padding: 14px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.65)
  );

  backdrop-filter: blur(22px);
  border-radius: 999px;
  box-shadow:
    0 25px 60px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.06);

  pointer-events: auto;
}

/* ===== LOGO ===== */
.neo-logo img {
  height: 40px;
  transition: transform .35s ease;
}
.neo-logo:hover img {
  transform: rotate(-2deg) scale(1.06);
}

/* ===== CENTER NAV ===== */
.neo-center {
  display: flex;
  gap: 34px;
  padding: 10px 30px;
  border-radius: 999px;

  background: rgba(255,255,255,.03);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.neo-link {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all .3s ease;
}

.neo-link::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,#14b8a6,#38bdf8);
  transform: translateX(-50%);
  transition: width .3s ease;
}

.neo-link:hover,
.neo-link.active {
  color: #fff;
}
.neo-link:hover::before,
.neo-link.active::before {
  width: 18px;
}

/* ===== CTA ===== */
.neo-cta {
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  color: #0f172a;
  background: linear-gradient(135deg,#5eead4,#38bdf8);
  text-decoration: none;

  transition: all .35s ease;
}

.neo-cta:hover {
  transform: translateX(4px);
  box-shadow:
    0 0 30px rgba(56,189,248,.55),
    0 0 60px rgba(20,184,166,.35);
}

/* ===== NEON SCAN LINE ===== */
.neo-scan {
  width: 140px;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    #38bdf8,
    #14b8a6,
    transparent
  );
  opacity: .6;
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% { transform: translateX(-120px); }
  100% { transform: translateX(120px); }
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .neo-center {
    display: none;
  }
}
.command-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.command-box {
  width: 520px;
  background: #0f172a;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
}

.command-box input {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: none;
  padding: 14px;
  color: #fff;
  border-radius: 10px;
  outline: none;
}

.command-box ul {
  margin-top: 12px;
  list-style: none;
  padding: 0;
}
.command-box li {
  padding: 10px 14px;
  color: rgba(255,255,255,.75);
  border-radius: 8px;
}
.command-box li:hover {
  background: rgba(56,189,248,.15);
  color: #fff;
}
.neo-header {
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.neo-wrap {
  position: relative;
  overflow: hidden;
}

.neo-wrap::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    600px circle at var(--x) var(--y),
    rgba(56,189,248,.18),
    transparent 40%
  );
  opacity: 0;
  transition: opacity .3s ease;
}

.neo-wrap:hover::after {
  opacity: 1;
}
.neo-wrap {
  background: linear-gradient(
    270deg,
    #0f172a,
    #0b3c4d,
    #0f172a
  );
  background-size: 600% 600%;
  animation: gradientFlow 14s ease infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.neo-wrap {
  position: relative;
  overflow: hidden;
}

/* REAL GLOW LAYER */
.neo-wrap .cursor-glow {
  position: absolute;
  inset: -200px;
  background: radial-gradient(
    500px circle at var(--x) var(--y),
    rgba(56,189,248,0.22),
    rgba(20,184,166,0.15),
    transparent 60%
  );
  pointer-events: none;
  transition: opacity .2s ease;
  opacity: 0;
  z-index: 0;
}

/* content above glow */
.neo-wrap > * {
  position: relative;
  z-index: 1;
}

.neo-wrap:hover .cursor-glow {
  opacity: 1;
}
/* =========================
   AI COUNTER SECTION
========================= */
.section.counter-ai {
  position: relative;
  padding: 6rem 0;
  background: #f6f8fb;
  overflow: hidden;
}

/* soft AI texture */
.section.counter-ai::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px circle at 20% 20%, rgba(59,183,173,.12), transparent 60%),
    radial-gradient(600px circle at 85% 80%, rgba(45,101,169,.10), transparent 65%);
  opacity: .8;
  z-index: 0;
}

/* very subtle noise */
.section.counter-ai::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,.02),
      rgba(0,0,0,.02) 1px,
      transparent 1px,
      transparent 2px
    );
  opacity: .15;
  pointer-events: none;
  z-index: 1;
}

.section.counter-ai .r-container {
  position: relative;
  z-index: 2;
}


/* =========================
   CARD COUNTER
========================= */
.card-counter {
  position: relative;
  padding: 2.6rem 2.4rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #0b1119 0%, #111a2a 100%);
  border: 1px solid rgba(255,255,255,.12);

  box-shadow:
    0 35px 90px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.10);

  overflow: hidden;
  transition: transform .45s ease, box-shadow .45s ease;
}

.card-counter::before {
  content: "";
  position: absolute;
  inset: -60%;
  background:
    linear-gradient(
      120deg,
      transparent 35%,
      rgba(255,255,255,.14),
      transparent 65%
    );
  transform: translateX(-120%) rotate(-8deg);
  transition: transform 1.1s ease;
  pointer-events: none;
}

.card-counter::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.card-counter:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 60px 150px rgba(59,183,173,.55),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.card-counter:hover::before {
  transform: translateX(120%) rotate(-8deg);
}



/* =========================
   NUMBER STYLE
========================= */

.card-counter h2 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.card-counter .number {
  background: linear-gradient(90deg, #3bb7ad, #6fa8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-counter h6 {
  margin-top: 1rem;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #ffffff;
}


/* =========================
   AI DIVIDER
========================= */

.card-counter hr {
  height: 1px;
  border: none;
  margin: .9rem 0 1.1rem;
  background: linear-gradient(
    90deg,
    rgba(59,183,173,.8),
    rgba(45,101,169,.8),
    transparent
  );
}


/* =========================
   TEXT
========================= */

.card-counter p {
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
  margin: 0;
}

/* =========================
   FEATURED CENTER CARD
========================= */

.card-counter.featured {
  background:
    linear-gradient(180deg, #0e1b2f, #162a45);
  border-color: rgba(59,183,173,.6);
  box-shadow:
    0 70px 180px rgba(59,183,173,.65);
}
@keyframes ambientGloss {
  0%   { transform: translateX(-140%) rotate(-8deg); }
  100% { transform: translateX(140%) rotate(-8deg); }
}

.card-counter.auto-gloss::before {
  animation: ambientGloss 8s linear infinite;
}


.card-counter.featured::before {
  opacity: .75;
}
.card-counter h2,
.card-counter h6,
.card-counter p {
  position: relative;
  z-index: 2;
      color: white;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .card-counter {
    padding: 2rem;
  }
}
.section h3 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #ffffff;
}
.icon-boxs.circle-white {
    background: white;
}/* =========================
   WHY SECTION (WHITE BG)
========================= */
.pf-why{
  background:#fff;
  padding:5.2rem 0;
  position:relative;
}

/* Head */
.pf-why-head{
  max-width: 720px;
  margin-bottom: 2.2rem;
}
.pf-why-title{
  font-size: clamp(1.9rem, 2.3vw, 2.5rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 .8rem 0;
  color:#0b1220;
}
.pf-accent{
  background: linear-gradient(90deg, #2d65a9, #3bb7ad);
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}
.pf-why-sub{
  margin: 0;
  max-width: 520px;
  color: rgba(11,18,32,.68);
  font-size: 1rem;
  line-height: 1.7;
}

/* =========================
   DARK GLOSS CARDS
========================= */
.pf-gloss-card{
  position: relative;
  height: 100%;
  padding: 2.6rem 2.4rem;
  border-radius: 26px;

  background: linear-gradient(180deg, #0b1119 0%, #121c2b 100%);
  color: #eaf0ff;

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 30px 80px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.08);

  overflow: hidden;
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}

/* Reflection sweep */
.pf-gloss-card::before{
  content:"";
  position:absolute;
  inset:-60%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.14), transparent 65%);
  transform: translateX(-120%) rotate(-10deg);
  transition: transform 1.2s ease;
  pointer-events:none;
}

/* Micro noise texture */
.pf-gloss-card::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events:none;
}

/* Hover */
.pf-gloss-card:hover{
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 60px 140px rgba(59,183,173,.40),
    inset 0 1px 0 rgba(255,255,255,.14);
  border-color: rgba(59,183,173,.35);
}
.pf-gloss-card:hover::before{
  transform: translateX(120%) rotate(-10deg);
}

/* Featured card */
.pf-gloss-card--featured{
  background: linear-gradient(180deg, #0e1b2f, #173256);
  border-color: rgba(59,183,173,.55);
  box-shadow: 0 70px 160px rgba(59,183,173,.45);
}

/* Pill */
.pf-pill{
  display: inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;

  color: #86fff6;
  border: 1px solid rgba(59,183,173,.6);
  background: rgba(59,183,173,.12);
  box-shadow: inset 0 0 12px rgba(59,183,173,.25);
}

/* Content */
.pf-card-body{
  margin-top: 2.2rem;
}
.pf-card-title{
  margin: 0 0 .8rem 0;
  font-size: 1.35rem;
  font-weight: 650;
  color: #fff;
}
.pf-card-text{
  margin: 0;
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  max-width: 92%;
}

/* OPTIONAL: auto gloss animation */
@keyframes pfGloss {
  from { transform: translateX(-140%) rotate(-10deg); }
  to   { transform: translateX(140%) rotate(-10deg); }
}
.pf-gloss-card.pf-gloss-anim::before{
  animation: pfGloss 9s linear infinite;
}
/* =========================
   ICON WRAPPER
========================= */
.pf-icon-wrap{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg,
    rgba(59,183,173,.35),
    rgba(45,101,169,.35)
  );

  box-shadow:
    0 10px 30px rgba(59,183,173,.45),
    inset 0 0 18px rgba(255,255,255,.15);

  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 3;
}

.pf-icon-wrap img{
  width: 28px;
  height: 28px;
  filter: brightness(1.2) drop-shadow(0 0 6px rgba(255,255,255,.35));
}

/* =========================
   CARD UPDATE
========================= */
.pf-gloss-card{
  position: relative;
  padding: 3.6rem 2.4rem 2.6rem;
}

/* Pill spacing */
.pf-gloss-card .pf-pill{
  margin-top: .2rem;
}

/* Icon glow on hover */
.pf-gloss-card:hover .pf-icon-wrap{
  transform: scale(1.1) rotate(-4deg);
  box-shadow:
    0 16px 50px rgba(59,183,173,.65),
    inset 0 0 22px rgba(255,255,255,.2);
}

/* Optional subtle float */
@keyframes pfIconFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}
.pf-gloss-card.pf-gloss-anim .pf-icon-wrap{
  animation: pfIconFloat 6s ease-in-out infinite;
}
.dark-stack-section {
  background: radial-gradient(
      1200px circle at 80% 20%,
      rgba(59, 183, 173, 0.25),
      transparent 60%
    ),
    radial-gradient(
      900px circle at 10% 80%,
      rgba(45, 101, 169, 0.25),
      transparent 65%
    ),
    linear-gradient(180deg, #070b11, #0c1219);
  padding: 100px 20px;
  color: #eaf1f7;
}

.dark-stack-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Header */
.dark-stack-header {
  text-align: center;
}

.dark-stack-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.dark-stack-header h2 span {
  background: linear-gradient(90deg, #3bb7ad, #4f8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dark-stack-header p {
  max-width: 420px;
  margin: 16px auto 0;
  color: #a7b3c6;
  font-size: 0.95rem;
}

/* Grid */
.dark-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Cards */
.dark-stack-card {
  position: relative;
  padding: 34px 28px;
  border-radius: 18px;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.35s ease;
}

.dark-stack-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.dark-stack-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.65),
    0 0 40px rgba(59,183,173,0.25);
}

.dark-stack-card:hover::before {
  opacity: 1;
}

/* Icon */
.stack-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3bb7ad, #4f8cff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(79,140,255,0.5);
}

/* Text */
.dark-stack-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.dark-stack-card p {
  font-size: 0.9rem;
  color: #b4c0d3;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Button */
.stack-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #fff;
  background: linear-gradient(90deg, #3bb7ad, #4f8cff);
  text-decoration: none;
  box-shadow: 0 0 18px rgba(79,140,255,0.45);
  transition: all 0.3s ease;
}

.stack-btn:hover {
  box-shadow: 0 0 28px rgba(79,140,255,0.8);
  transform: translateY(-2px);
}
/* ==============================
   GLASS STACK CARD – FIXED
================================ */

.card-content {
    position: absolute;
    inset: 0;
    padding: 42px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgb(65 98 167 / 17%), rgb(70 173 172 / 23%));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.10);
    transition: transform 0.45s cubic-bezier(.2, .8, .2, 1), box-shadow 0.45s ease, opacity 0.4s ease;
}

/* ==============================
   SOFT GLOSS SHEEN
================================ */
.card-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,0.18),
    transparent 65%
  );

  opacity: 0.35;
  pointer-events: none;
}

/* ==============================
   HOVER – PREMIUM LIFT
================================ */
.card-content:hover {
  transform: translateY(-10px) scale(1.01);

  box-shadow:
    0 40px 90px rgba(0,0,0,0.75),
    0 0 60px rgba(59,183,173,0.35),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

/* ==============================
   TEXT READABILITY FIX
================================ */
.card-content h2 {
  color: #ffffff;
  font-weight: 600;
}

.card-content p {
  color: rgba(230,240,245,0.85);
  line-height: 1.6;
}

/* ==============================
   BUTTON GLOW BALANCE
================================ */
.card-content .btn {
  box-shadow:
    0 10px 30px rgba(79,140,255,0.45);
}

.card-content .btn:hover {
  box-shadow:
    0 18px 45px rgba(79,140,255,0.65);
}
/* ===============================
   FAQ AI SECTION
================================ */
.faq-ai-section {
  padding: 110px 0;
  background:
    radial-gradient(900px circle at 70% 40%, rgba(59,183,173,.12), transparent 60%),
    linear-gradient(180deg, #f7f9fc, #eef2f7);
}

.faq-container {
  max-width: 1406px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* ===============================
   LEFT SIDE
================================ */
.faq-left h3 {
  font-weight: 700;
  color: #0b1220;
}

.faq-accent {
  background: linear-gradient(90deg, #3bb7ad, #4f8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-left p {
  max-width: 340px;
  color: #55627a;
}

/* ===============================
   FAQ CARDS
================================ */
.faq-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-card {
  background: linear-gradient(160deg, #0e1627, #111b2f);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);

  transition: all .4s ease;
}

.faq-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 45px rgba(59,183,173,0.25);
}

/* ===============================
   QUESTION
================================ */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #e9f0ff;
  font-weight: 500;
  cursor: pointer;
}

.faq-toggle {
  font-size: 22px;
  opacity: .7;
}

/* ===============================
   ANSWER
================================ */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  color: rgba(230,238,255,.85);
  line-height: 1.7;
  transition: all .45s ease;
}

.faq-card.active .faq-answer {
  max-height: 220px;
  padding: 0 26px 24px;
}

.faq-card.active .faq-toggle {
  opacity: 1;
}

/* ===============================
   RIGHT VISUAL
================================ */
.faq-visual {
  position: relative;
}

.faq-visual img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 45px 90px rgba(0,0,0,.4);
}

/* ===============================
   FLOATING ICONS
================================ */
.faq-icon {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    160deg,
    rgba(255,255,255,.28),
    rgba(255,255,255,.06)
  );
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.25);

  box-shadow:
    0 18px 45px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.35);

  animation: faqFloat 6s ease-in-out infinite;
}

.faq-icon img {
  width: 26px;
}

.top-right { top: 18%; right: 22%; }
.mid-left  { top: 46%; left: 18%; animation-delay: 2s; }
.bottom-right { bottom: 22%; right: 14%; animation-delay: 4s; }

@keyframes faqFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 991px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}

.hero-dark {
  position: relative;
  min-height: 50vh;
  background:
    radial-gradient(circle at right, rgba(0,180,255,0.15), transparent 40%),
    linear-gradient(135deg, #050914, #0b1e33);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BACKGROUND MARQUEE */
.marquee-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  pointer-events: none;
}

/* EACH ROW */
.marquee-row {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}


/* animations */
.marquee-row.left .marquee-track {
  animation: scroll-left 35s linear infinite;
}

.marquee-row.right .marquee-track {
  animation: scroll-right 35s linear infinite;
}

.marquee-row.slow .marquee-track {
  animation-duration: 55s;
}

/* ICON STYLE */
.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0,200,255,0.18);
  opacity: 0.35;
}

/* KEYFRAMES – NO JUMP */
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* CENTER CARD */
.hero-card {
  position: relative;
  z-index: 5;
  padding: 54px 78px;
  border-radius: 24px;
  text-align: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 35px 110px rgba(0,0,0,0.65);
}

.hero-card h5 {
  color: #b9c6ff;
}

.hero-card h1 {
  color: #fff;
  font-size: 44px;
  margin: 18px 0 32px;
}

.hero-card span {
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-btn {
  padding: 14px 36px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 14px 45px rgba(0,242,254,0.45);
}
.icon-box {
  margin-right: 240px; /* 🔥 gap yahin shift */
}
.marquee-track {
  will-change: transform;
}
.marquee-row.left .marquee-track {
  animation-name: scroll-left;
}

.marquee-row.right .marquee-track {
  animation-name: scroll-right;
}
.ai-insights {
  background: #ffffff;
  padding: 100px 0;
  overflow: hidden;
}

.ai-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.ai-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 30px;
}

.ai-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
}

.ai-header h2 span {
  background: linear-gradient(90deg,#2563eb,#14b8a6);
  -webkit-background-clip: text;
  color: transparent;
}

.ai-header p {
  max-width: 420px;
  color: #475569;
  margin-top: 12px;
}

/* BUTTON */
.ai-btn-glow {
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg,#2563eb,#14b8a6);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(20,184,166,.35);
  transition: transform .35s ease, box-shadow .35s ease;
}

.ai-btn-glow:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(37,99,235,.45);
}

/* GRID */
.ai-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 35px;
}

/* FEATURE */
.ai-feature {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(15,23,42,.08);
  overflow: hidden;
  transition: transform .45s ease;
}

.ai-feature:hover {
  transform: translateY(-8px);
}

.ai-image-wrap {
  position: relative;
  overflow: hidden;
}

.ai-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .8s ease;
}

.ai-feature:hover img {
  transform: scale(1.12);
}

/* AI GLOW */
.ai-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(20,184,166,.35), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(37,99,235,.35), transparent 65%);
  opacity: 0;
  transition: opacity .6s ease;
}

.ai-feature:hover .ai-glow {
  opacity: 1;
}

.ai-content {
  padding: 30px;
}

.ai-meta {
  display: flex;
  gap: 18px;
  font-size: .85rem;
  color: #64748b;
  margin-bottom: 10px;
}

.ai-content h3 {
  font-size: 1.45rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.ai-content p {
  color: #475569;
}

/* STACK CARDS */
.ai-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ai-cards {
  background: #fff;
  padding: 24px 26px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15,23,42,.07);
  position: relative;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}

.ai-cards::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(20,184,166,.25), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}

.ai-cards:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 90px rgba(15,23,42,.15);
}

.ai-cards:hover::after {
  opacity: 1;
}

.ai-cards h4 {
  color: #0f172a;
  margin: 10px 0;
      font-size: 22px;
}

.ai-cards p {
  color: #475569;
  font-size: .95rem;
}

/* SCROLL reveals */
.reveals {
  opacity: 0;
  transform: translateY(40px);
  transition: all .9s cubic-bezier(.2,.65,.3,1);
}

.reveals.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width:900px){
  .ai-grid { grid-template-columns: 1fr; }
  .ai-header { flex-direction: column; align-items: flex-start; }
}
/* ===== MARQUEE WRAPPER ===== */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(15,23,42,0.95),
      rgba(15,23,42,0.85)
    );
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* subtle AI glow edges */
.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(15,23,42,1),
    transparent
  );
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(15,23,42,1),
    transparent
  );
}

/* ===== MARQUEE CONTENT ===== */
.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

/* pause on hover (premium touch) */
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

/* ===== ITEMS ===== */
.marquee-item h3 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

/* accent text pop */
.marquee-item h3.text-accent {
  background: linear-gradient(
    90deg,
    #38bdf8,
    #14b8a6
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DOT SEPARATOR */
.marquee-item i {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.35);
}

/* subtle glow on hover word */
.marquee-item h3:hover {
  color: #fff;
  text-shadow:
    0 0 18px rgba(56,189,248,0.45);
}

/* ===== ANIMATION ===== */
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ===============================
   FOOTER AI
================================ */
.footer-ai {
  position: relative;
  background: linear-gradient(
    160deg,
    #0b1220,
    #0e1a2b
  );
  color: #fff;
  overflow: hidden;
}

/* background glow */
.footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(56,189,248,.25), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(20,184,166,.22), transparent 45%);
  z-index: 0;
}

/* noise */
.footer-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px 40px;
}

/* ===============================
   NEWSLETTER
================================ */
.footer-newsletter {
  text-align: center;
  margin-bottom: 60px;
}

.footer-newsletter h3 {
  font-size: 2rem;
  font-weight: 600;
  background: linear-gradient(90deg, #38bdf8, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-form {
  margin-top: 25px;
  display: flex;
  max-width: 620px;
  margin-inline: auto;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 6px;
}

.footer-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 18px;
  color: #fff;
  outline: none;
}

.footer-form button {
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  background: linear-gradient(135deg, #3b82f6, #14b8a6);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(59,130,246,.4);
  transition: transform .25s ease, box-shadow .25s ease;
}

.footer-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(20,184,166,.6);
}

/* ===============================
   DIVIDER
================================ */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 35px;
}

/* ===============================
   BOTTOM
================================ */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
}

/* brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand img {
  width: 200px;
}

.footer-brand span {
  font-size: .85rem;
  opacity: .7;
}

/* links */
.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  text-decoration: none;
  transition: color .25s ease;
}

.footer-links a:hover {
  color: #38bdf8;
}

/* socials */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(56,189,248,.5);
}

/* ===============================
   COPYRIGHT
================================ */
.footer-copy {
  margin-top: 30px;
  text-align: center;
  font-size: .8rem;
  opacity: .6;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-socials {
    justify-content: center;
  }
}

.footer-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #14b8a6, #3b82f6);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: .9rem;
  box-shadow: 0 20px 50px rgba(20,184,166,.45);
  opacity: 0;
  transform: translateY(20px) scale(.95);
  pointer-events: none;
  transition: all .45s cubic-bezier(.4,0,.2,1);
  z-index: 9999;
}

.footer-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.footer-form input:focus {
  box-shadow: 0 0 0 2px rgba(56,189,248,.45);
}

.footer-form input.invalid {
  box-shadow: 0 0 0 2px rgba(239,68,68,.6);
      border-radius: 110px;
}

.footer-form input.valid {
  box-shadow: 0 0 0 2px rgba(34,197,94,.6);
      border-radius: 42px;
}
.footer-ai {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(.4,0,.2,1);
}

.footer-ai.reveal {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top {
position: fixed;
    bottom: 28px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    z-index: 9999;
    background: linear-gradient(135deg, #14b8a6, #3b82f6);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(20, 184, 166, .45), inset 0 1px 0 rgba(255, 255, 255, .35);
    opacity: 0;
    transform: translateY(20px) scale(.9);
    pointer-events: none;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    right: 13px;
}

/* visible state */
.back-to-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* hover magic */
.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 25px 60px rgba(59,130,246,.55),
    0 0 30px rgba(20,184,166,.6);
}

.neo-wrap{
  max-width:1200px;
  margin:auto;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.neo-logo img{
  height:38px;
}

/* DESKTOP NAV */
.neo-center{
  display:flex;
  gap:28px;
}

.neo-link{
  color:#cbd5e1;
  text-decoration:none;
  font-size:15px;
  position:relative;
}

.neo-link.active,
.neo-link:hover{
  color:#22d3ee;
}

/* CTA */
.neo-cta{
  padding:10px 22px;
  border-radius:999px;
  background:linear-gradient(135deg,#4f46e5,#22d3ee);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 15px 40px rgba(34,211,238,.35);
}

/* ================= HAMBURGER ================= */
.neo-hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.neo-hamburger span{
  width:26px;
  height:2px;
  background:#fff;
  transition:.35s ease;
}

/* ================= MOBILE MENU CARD ================= */
.neo-mobile-menu{
    position: absolute;
    top: 100%;
    left: 50%;
    width: 92%;
    max-width: 360px;
    background: linear-gradient(155deg, #0f172a, #0b3c4d, #0f172a);
    border-radius: 22px;
    padding: 26px 22px 30px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
    --ty: -30px;
    transform: translateX(-50%) translateY(var(--ty));
    opacity: 0;
    pointer-events: none;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), opacity .25s ease;
    will-change: transform, opacity;
    color: white;
}

.neo-mobile-menu.active{
  --ty: 12px;   /* slide DOWN */
  opacity:1;
  pointer-events:auto;
}


/* LINKS */
.neo-m-link{
display: block;
    padding: 14px 0;
    font-size: 17px;
    color: white;
    text-decoration: none;
}

.neo-m-link.active{
  color:#2bb0aa;
      font-weight: 900;
}

/* CTA */
.neo-m-cta{
  margin-top:22px;
  display:block;
  padding:16px;
  border-radius:14px;
  background:linear-gradient(135deg,#4fd1c5,#22d3ee);
  color:#fff;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 18px 40px rgba(34,211,238,.45);
}

/* ================= RESPONSIVE ================= */
@media (max-width:900px){

  .neo-hamburger{
    display:flex;
  }

  .neo-center,
  .neo-right{
    display:none;
  }
}



.neo-hamburger.active span:nth-child(1){
  transform:rotate(45deg) translateY(10px);
}
.neo-hamburger.active span:nth-child(2){
  opacity:0;
}
.neo-hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translateY(-10px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .neo-center,
  .neo-right{
    display:none;
  }

  .neo-hamburger{
    display:flex;
  }
}

@media (max-width: 576px) {
  
.hero-visual {
    margin-top: 51px !important;
}

    .hero-v3 {

        height: 177vh !important;
    }
}
