.font-rammetto {
    font-family: "Rammetto One";
    font-weight: 400;
    font-style: normal;
}
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

.bg-custom{
    background: rgba(0, 0, 0, 0.001);
}
.btn-grd{
    background: linear-gradient(93.23deg, #D000FF 15%, #FF000C 85%);
}
.header-text{
    background: linear-gradient(93.23deg, #D000FF 15%, #FF000C 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 42px;
    text-transform: uppercase;
}
.text-gray-custom{
    color: #90A1B9;
}
.text-gray-dark-custom{
    color: #4E545D;
}
.box-shadow2{
    box-shadow: inset 0 4px 10px 0 rgba(0, 0, 0, 0.05);
}
.box-shadow3{
    box-shadow: inset 0 4px 10px 0 rgba(0, 0, 0, 0.05), 0px 4px 25px rgba(0, 0, 0, 0.05);
}
.headerLine2{
    background: linear-gradient(93.23deg, #D000FF 15%, #FF000C 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 58px;
    line-height: 80px;
}
.headerLine3{
    background: linear-gradient(93.23deg, #D000FF 15%, #FF000C 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 42px;
    line-height: 46px;
}
.bg_client{
    background-image: url("/assets/images/bg_client.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 300px;
}
.active{
    border-bottom: 2px solid #90A1B9;
    font-weight: 500;
    color: #90A1B9;
}

/* Top Section Gradient Shadow - Covers Header & Hero */
.top-gradient-shadow {
    position: relative;
}

.top-gradient-shadow::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background: radial-gradient(ellipse at top right,
        rgba(208, 0, 255, 0.15) 0%,
        rgba(255, 0, 12, 0.12) 25%,
        transparent 60%);
    filter: blur(90px);
    z-index: -1;
    pointer-events: none;
}

.top-gradient-shadow::after {
    content: '';
    position: fixed;
    top: 10%;
    right: 5%;
    width: 35%;
    height: 70vh;
    background: radial-gradient(ellipse at top right,
        rgba(255, 0, 12, 0.1) 0%,
        rgba(208, 0, 255, 0.08) 35%,
        transparent 65%);
    filter: blur(70px);
    z-index: -1;
    pointer-events: none;
    animation: top-gradient-pulse 8s ease-in-out infinite;
}

@keyframes top-gradient-pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) translateY(-10px);
    }
}

/* Wallet Icon Animations */
.wallet-animation-container {
    position: relative;
}

.floating-icon {
    position: absolute;
    z-index: 1;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    opacity: 0.6;
}

.floating-icon-1 {
    top: -10px;
    left: -80px;
    animation: gentle-float-1 10s ease-in-out infinite;
}

.floating-icon-2 {
    top: 80px;
    right: -70px;
    animation: gentle-float-2 12s ease-in-out infinite;
}

.floating-icon-3 {
    bottom: 120px;
    left: -50px;
    animation: gentle-float-3 9s ease-in-out infinite;
}

.floating-icon-4 {
    bottom: 50px;
    right: -80px;
    animation: gentle-float-4 11s ease-in-out infinite;
}

.floating-icon-5 {
    top: 150px;
    left: -70px;
    animation: gentle-float-5 13s ease-in-out infinite;
}

.floating-icon-6 {
    top: 220px;
    right: -50px;
    animation: gentle-float-6 10s ease-in-out infinite;
}

@keyframes gentle-float-1 {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) translateX(8px);
        opacity: 0.8;
    }
}

@keyframes gentle-float-2 {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(18px) translateX(-10px);
        opacity: 0.8;
    }
}

@keyframes gentle-float-3 {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-12px) translateX(12px);
        opacity: 0.75;
    }
}

@keyframes gentle-float-4 {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(15px) translateX(-8px);
        opacity: 0.8;
    }
}

@keyframes gentle-float-5 {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) translateX(10px);
        opacity: 0.7;
    }
}

@keyframes gentle-float-6 {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(12px) translateX(-6px);
        opacity: 0.75;
    }
}

/* Section Background Colors - Brand Themed */
.bg-brand-light-purple {
    background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 100%);
    background: #FEFEFE;
}

.bg-brand-light-pink {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8EC 100%);
}

.bg-brand-gradient-subtle {
    background: linear-gradient(135deg, #FAF5FF 0%, #FFF5F7 100%);
}

.bg-brand-light-glow {
    background: radial-gradient(ellipse at top, #FAF5FF 0%, #FFFFFF 50%, #FFF5F7 100%);
}

/* Hero Section Text Animations */
.hero-text-slide-up {
    opacity: 0;
    animation: slideUpFade 1s ease-out forwards;
}

.hero-text-slide-up-delay-1 {
    opacity: 0;
    animation: slideUpFade 1s ease-out 0.3s forwards;
}

.hero-text-slide-up-delay-2 {
    opacity: 0;
    animation: slideUpFade 1s ease-out 0.6s forwards;
}

.hero-text-slide-up-delay-3 {
    opacity: 0;
    animation: slideUpFade 1s ease-out 0.9s forwards;
}

/* Bouncing Icon Animation */
.animate-bounce-slow {
    animation: bounceGentleSlow 3s ease-in-out infinite;
}

@keyframes bounceGentleSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-description-fade {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 1.2s forwards;
}

.hero-buttons-fade {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient Text Animation */
.hero-gradient-animate {
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

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

/* Professional Text Reveal Effect */
.hero-text-reveal {
    opacity: 0;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    animation: revealText 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes revealText {
    0% {
        opacity: 0;
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }
    100% {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Section Heading Split Animation */
.section-heading-split {
    opacity: 1;
    overflow: hidden !important;
}

.section-heading-split .line-1 {
    opacity: 0;
    transform: translateX(-50px);
    display: block;
    overflow: hidden !important;
}

.section-heading-split .line-2 {
    opacity: 0;
    transform: translateX(50px);
    display: block;
    overflow: hidden !important;
}

.section-heading-split .line-3 {
    opacity: 0;
    transform: translateX(-50px);
    display: block;
    overflow: hidden !important;
}

.section-heading-split.animate-in .line-1 {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.section-heading-split.animate-in .line-2 {
    animation: slideInFromRight 0.8s ease-out 0.2s forwards;
}

.section-heading-split.animate-in .line-3 {
    animation: slideInFromLeft 0.8s ease-out 0.4s forwards;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features List Redesign - Glass Effect */
.feature-item {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 4px 10px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: rgba(208, 0, 255, 0.2);
    transform: translateX(8px);
    box-shadow: inset 0 4px 10px 0 rgba(0, 0, 0, 0.05), 0 8px 24px rgba(208, 0, 255, 0.15);
}

.feature-icon {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 4px 10px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #D000FF 0%, #FF000C 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
}

.feature-text {
    color: #4E545D;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.feature-item:hover .feature-text {
    color: #10182B;
}

/* Phone Images Highlight */
.wallet-animation-container img {
    filter: drop-shadow(0 25px 50px rgba(208, 0, 255, 0.25))
            drop-shadow(0 15px 35px rgba(255, 0, 12, 0.15));
    transition: all 0.4s ease;
}

.wallet-animation-container img:hover {
    filter: drop-shadow(0 30px 60px rgba(208, 0, 255, 0.35))
            drop-shadow(0 20px 45px rgba(255, 0, 12, 0.25));
    transform: translateY(-5px);
}

/* API Features Cards */
.api-feature-card {
    padding: 28px;
    border-radius: 20px;
}

.api-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #D000FF 0%, #FF000C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(208, 0, 255, 0.25);
}

.api-feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.api-feature-description {
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive: Hide floating icons on mobile */
@media (max-width: 768px) {
    .floating-icon {
        display: none;
    }

    .wallet-animation-container img {
        filter: drop-shadow(0 15px 30px rgba(208, 0, 255, 0.2))
                drop-shadow(0 10px 25px rgba(255, 0, 12, 0.12));
    }
}


/* === Large Desktop (≥1280px) === */
@media (min-width: 1280px) {
    nav {
        padding-left: 90px;
        padding-right: 90px;
    }

    .desktop-menu{
        display: flex !important;
    }

    .desktop-buttons{
        display: flex !important;
    }

    #mobile-menu-button{
        display: none !important;
    }

}

/* === Laptop & Tablet (992px – 1279px) === */
@media (max-width: 1279px) and (min-width: 992px) {
    nav {
        padding-left: 40px;
        padding-right: 40px;
    }

    nav .lg\\:flex {
        display: flex !important;
    }

    nav .hidden {
        display: none !important;
    }

    nav a {
        font-size: 15px;
    }

    .desktop-menu{
        display: flex !important;
    }

    .desktop-buttons{
        display: flex !important;
    }

    #mobile-menu-button{
        display: none !important;
    }
}

/* === Tablet (768px – 991px) === */
@media (max-width: 991px) and (min-width: 768px) {
    nav {
        padding-left: 30px;
        padding-right: 30px;
    }

    .desktop-menu{
        display: none !important;
    }

    .desktop-buttons{
        display: none !important;
    }

    #mobile-menu-button {
        display: flex;
    }

    #mobile-menu {
        width: 70%;
        right: 0;
    }

    #mobile-menu a {
        font-size: 15px;
    }
}

/* === Mobile (≤767px) === */
@media (max-width: 767px) {
    nav {
        padding: 16px 20px;
    }

    nav img {
        width: 110px;
    }

    #mobile-menu {
        width: 100%;
    }

    #mobile-menu a {
        font-size: 16px;
    }

    #mobile-menu-button span {
        background-color: #111827; /* dark gray for visibility */
    }

    #mobile-solutions-menu {
        padding-left: 12px;
    }
   
    .desktop-menu{
        display: none !important;
    }

    .desktop-buttons{
        display: none !important;
    }
}

/* === Very Small Mobile (≤480px) === */
@media (max-width: 480px) {
    nav {
        padding: 14px 16px;
    }

    #mobile-menu {
        padding: 16px;
    }

    #mobile-menu a {
        font-size: 14px;
    }

    #mobile-menu-button {
        width: 36px;
        height: 36px;
    }

    #mobile-menu-button span {
        width: 24px;
    }
    .desktop-menu{
        display: none !important;
    }

    .desktop-buttons{
        display: none !important;
    }
}
