/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* Responsive Media Queries */
@media screen and (max-width: 576px) {
    .counter-wrapper .col-sm-4 {
        border: none !important;
    }
}

@media screen and (min-width: 769px) {
    .features-section-tab-one-col-two img {
        width: 125% !important;
        margin-left: 0%;
        margin-top: 0%;
    }
}

/* Utility Classes */
.box-radius {
    border-radius: 20px;
}

.box-shadoww {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.text-color {
    color: #175aa9 !important;
    font-weight: 600;
}

/* Login Section Styles */
.login-section .box-radius {
    border-radius: 20px;
    background-color: white;
}

.login-section .box-shadoww {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 8px;
}

.login-section .text-color {
    color: #175aa9 !important;
    font-weight: 600;
}

.login-section .btn-primary {
    color: #fff;
    background-color: #2168be;
    border-color: #2168be;
}

.login-section .btn {
    border: 1px solid transparent;
    font-size: 15px;
    border-radius: 20px;
    padding: 2px 15px;
    width: 75px;
}

@media screen and (max-width: 375px) {
    .login-section .row-second h6 {
        font-size: 13px;
    }

    .login-section .row-second h6 .me-4 {
        margin-left: 10px;
    }

    .login-section .row-second .d-flex .w-100 .me-4 {
        margin-right: 0.5rem !important;
    }

    .login-section .row-second .d-flex img {
        margin-right: 0.5rem !important;
    }
}

/* Professional Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-heading-animate {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero-text-animate {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.hero-button-animate {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.hero-card-animate {
    animation: fadeInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.hero-card-inner {
    animation: fadeInScale 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.hero-card-animate:hover .hero-card-inner {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.3) !important;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Professional Button Animations */
.modern-hero-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1E5CAA 0%, #1E5CAA 50%, #3b82f6 100%) !important;
    background-size: 200% 200% !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    animation: buttonPulse 3s ease-in-out infinite, gradientShift 4s ease infinite, buttonFloat 3s ease-in-out infinite;
}

@keyframes buttonPulse {

    0%,
    100% {
        box-shadow: 0 10px 25px -5px rgba(30, 92, 170, 0.3), 0 4px 6px -2px rgba(30, 92, 170, 0.1);
    }

    50% {
        box-shadow: 0 15px 35px -5px rgba(30, 92, 170, 0.4), 0 6px 10px -2px rgba(30, 92, 170, 0.15);
    }
}

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

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

    100% {
        background-position: 0% 50%;
    }
}

@keyframes buttonFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-2px) scale(1.01);
    }
}

.modern-hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shineSweep 3s ease-in-out infinite;
}

@keyframes shineSweep {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.modern-hero-btn:hover {
    background: linear-gradient(135deg, #174a85 0%, #1e40af 50%, #1e3a8a 100%) !important;
    background-size: 200% 200% !important;
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 0 20px 40px -5px rgba(30, 92, 170, 0.5), 0 10px 15px -3px rgba(30, 92, 170, 0.2) !important;
    animation: buttonPulse 2s ease-in-out infinite, gradientShift 3s ease infinite, buttonFloat 2s ease-in-out infinite !important;
}

.modern-hero-btn:active {
    transform: translateY(-1px) scale(0.98) !important;
    box-shadow: 0 5px 15px -3px rgba(30, 92, 170, 0.3) !important;
}

.modern-hero-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.modern-hero-btn:active::after {
    width: 300px;
    height: 300px;
}

/* Hero Image Wrapper with Animated SVG Background Elements */
.hero-image-wrapper {
    position: relative !important;
    overflow: visible !important;
    min-height: 500px !important;
}

/* Scoped to hero section only */
.modern-hero-section .hero-svg-bg-elements {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 150% !important;
    height: 150% !important;
    z-index: 1 !important;
    pointer-events: none !important;
    overflow: visible !important;
}

/* SVG background for form container */
.hero-form-container {
    position: relative !important;
    overflow: visible !important;
}

.hero-form-container .hero-svg-bg-elements {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 150% !important;
    height: 150% !important;
    z-index: 0 !important;
    pointer-events: none !important;
    overflow: visible !important;
}

.hero-form-wrapper {
    position: relative !important;
    z-index: 2 !important;
}

.modern-hero-section .hero-main-image {
    position: relative !important;
    z-index: 5 !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    opacity: 1 !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Blob styles scoped to hero section only */
.modern-hero-section .svg-blob {
    position: absolute !important;
    width: auto !important;
    height: auto !important;
    pointer-events: none !important;
    filter: blur(1px) !important;
    will-change: transform, opacity !important;
}

.modern-hero-section .svg-blob-1 {
    top: 10% !important;
    right: 5% !important;
    width: 600px !important;
    height: 600px !important;
    animation: blobFloat1 20s ease-in-out infinite, blobPulse1 8s ease-in-out infinite !important;
    z-index: 1 !important;
    opacity: 0.9 !important;
}

.modern-hero-section .svg-blob-2 {
    bottom: 15% !important;
    left: 0% !important;
    width: 500px !important;
    height: 500px !important;
    animation: blobFloat2 18s ease-in-out infinite, blobPulse2 10s ease-in-out infinite !important;
    z-index: 1 !important;
    opacity: 0.85 !important;
}

.modern-hero-section .svg-blob-3 {
    top: 50% !important;
    right: 10% !important;
    width: 400px !important;
    height: 400px !important;
    animation: blobFloat3 22s ease-in-out infinite, blobPulse3 9s ease-in-out infinite !important;
    z-index: 1 !important;
    opacity: 0.8 !important;
}

.modern-hero-section .svg-blob-4 {
    top: 20% !important;
    left: 10% !important;
    width: 300px !important;
    height: 300px !important;
    animation: blobFloat4 16s ease-in-out infinite, blobPulse4 7s ease-in-out infinite !important;
    z-index: 1 !important;
    opacity: 0.75 !important;
}

.modern-hero-section .svg-blob-5 {
    bottom: 5% !important;
    right: 20% !important;
    width: 350px !important;
    height: 350px !important;
    animation: blobFloat5 19s ease-in-out infinite, blobPulse5 11s ease-in-out infinite !important;
    z-index: 1 !important;
    opacity: 0.88 !important;
}

.modern-hero-section .svg-blob-6 {
    top: 60% !important;
    left: 5% !important;
    width: 450px !important;
    height: 300px !important;
    animation: blobFloat6 24s ease-in-out infinite, blobPulse6 12s ease-in-out infinite !important;
    z-index: 1 !important;
    opacity: 0.82 !important;
}

@keyframes floatOval1 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px) rotate(0deg) scale(1) !important;
    }
    33% {
        transform: translate(-50%, -50%) translateY(-40px) translateX(30px) rotate(60deg) scale(1.15) !important;
    }
    66% {
        transform: translate(-50%, -50%) translateY(20px) translateX(-15px) rotate(-30deg) scale(0.95) !important;
    }
}

@keyframes floatOval2 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px) rotate(45deg) scale(1) !important;
    }
    33% {
        transform: translate(-50%, -50%) translateY(35px) translateX(-25px) rotate(105deg) scale(0.85) !important;
    }
    66% {
        transform: translate(-50%, -50%) translateY(-25px) translateX(20px) rotate(15deg) scale(1.1) !important;
    }
}

@keyframes floatOval3 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px) rotate(-30deg) scale(1) !important;
    }
    33% {
        transform: translate(-50%, -50%) translateY(-30px) translateX(25px) rotate(45deg) scale(1.2) !important;
    }
    66% {
        transform: translate(-50%, -50%) translateY(15px) translateX(-20px) rotate(-75deg) scale(0.9) !important;
    }
}

@keyframes floatCircle1 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px) rotate(0deg) scale(0.8) !important;
    }
    33% {
        transform: translate(-50%, -50%) translateY(-35px) translateX(35px) rotate(120deg) scale(1) !important;
    }
    66% {
        transform: translate(-50%, -50%) translateY(25px) translateX(-25px) rotate(240deg) scale(0.85) !important;
    }
}

@keyframes floatCircle2 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px) rotate(0deg) scale(1.2) !important;
    }
    33% {
        transform: translate(-50%, -50%) translateY(30px) translateX(-30px) rotate(-120deg) scale(0.95) !important;
    }
    66% {
        transform: translate(-50%, -50%) translateY(-20px) translateX(25px) rotate(-240deg) scale(1.1) !important;
    }
}

@keyframes floatRing1 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px) rotate(0deg) scale(1) !important;
    }
    50% {
        transform: translate(-50%, -50%) translateY(-25px) translateX(20px) scale(1.1) !important;
    }
}

@keyframes floatRing2 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px) rotate(0deg) scale(1) !important;
    }
    50% {
        transform: translate(-50%, -50%) translateY(30px) translateX(-25px) scale(0.9) !important;
    }
}

@keyframes floatPolygon1 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px) rotate(0deg) scale(1) !important;
    }
    50% {
        transform: translate(-50%, -50%) translateY(-30px) translateX(25px) rotate(180deg) scale(1.15) !important;
    }
}

@keyframes floatPolygon2 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px) rotate(0deg) scale(1) !important;
    }
    50% {
        transform: translate(-50%, -50%) translateY(35px) translateX(-30px) rotate(-180deg) scale(0.85) !important;
    }
}

/* Modern Blob Animations - Enhanced Smooth Floating and Morphing */
@keyframes blobFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg) !important;
    }
    20% {
        transform: translate(40px, -50px) scale(1.12) rotate(6deg) !important;
    }
    40% {
        transform: translate(-30px, -70px) scale(0.92) rotate(-4deg) !important;
    }
    60% {
        transform: translate(50px, -40px) scale(1.08) rotate(5deg) !important;
    }
    80% {
        transform: translate(-20px, -60px) scale(0.96) rotate(-3deg) !important;
    }
}

@keyframes blobFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg) !important;
    }
    20% {
        transform: translate(-45px, 35px) scale(0.88) rotate(-5deg) !important;
    }
    40% {
        transform: translate(30px, 55px) scale(1.18) rotate(7deg) !important;
    }
    60% {
        transform: translate(-35px, 40px) scale(1.06) rotate(-3deg) !important;
    }
    80% {
        transform: translate(25px, 45px) scale(0.94) rotate(4deg) !important;
    }
}

@keyframes blobFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg) !important;
    }
    25% {
        transform: translate(35px, -40px) scale(1.1) rotate(4deg) !important;
    }
    50% {
        transform: translate(-40px, 30px) scale(0.9) rotate(-6deg) !important;
    }
    75% {
        transform: translate(30px, -35px) scale(1.05) rotate(3deg) !important;
    }
}

@keyframes blobFloat4 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg) !important;
    }
    20% {
        transform: translate(-30px, -35px) scale(1.15) rotate(-4deg) !important;
    }
    40% {
        transform: translate(40px, -20px) scale(0.85) rotate(6deg) !important;
    }
    60% {
        transform: translate(-25px, -45px) scale(1.08) rotate(-3deg) !important;
    }
    80% {
        transform: translate(35px, -30px) scale(0.92) rotate(5deg) !important;
    }
}

@keyframes blobFloat5 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg) !important;
    }
    20% {
        transform: translate(50px, 30px) scale(0.92) rotate(5deg) !important;
    }
    40% {
        transform: translate(-35px, 45px) scale(1.12) rotate(-7deg) !important;
    }
    60% {
        transform: translate(40px, 25px) scale(1.04) rotate(4deg) !important;
    }
    80% {
        transform: translate(-30px, 40px) scale(0.96) rotate(-3deg) !important;
    }
}

@keyframes blobFloat6 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg) !important;
    }
    20% {
        transform: translate(-40px, -30px) scale(1.08) rotate(-3deg) !important;
    }
    40% {
        transform: translate(35px, -50px) scale(0.88) rotate(5deg) !important;
    }
    60% {
        transform: translate(-30px, -40px) scale(1.1) rotate(-4deg) !important;
    }
    80% {
        transform: translate(40px, -35px) scale(0.94) rotate(6deg) !important;
    }
}

/* Pulse animations for breathing effect */
@keyframes blobPulse1 {
    0%, 100% {
        opacity: 0.9;
        filter: blur(1px);
    }
    50% {
        opacity: 0.7;
        filter: blur(1.5px);
    }
}

@keyframes blobPulse2 {
    0%, 100% {
        opacity: 0.85;
        filter: blur(1px);
    }
    50% {
        opacity: 0.65;
        filter: blur(1.5px);
    }
}

@keyframes blobPulse3 {
    0%, 100% {
        opacity: 0.8;
        filter: blur(1px);
    }
    50% {
        opacity: 0.6;
        filter: blur(1.5px);
    }
}

@keyframes blobPulse4 {
    0%, 100% {
        opacity: 0.75;
        filter: blur(1px);
    }
    50% {
        opacity: 0.55;
        filter: blur(1.5px);
    }
}

@keyframes blobPulse5 {
    0%, 100% {
        opacity: 0.88;
        filter: blur(1px);
    }
    50% {
        opacity: 0.68;
        filter: blur(1.5px);
    }
}

@keyframes blobPulse6 {
    0%, 100% {
        opacity: 0.82;
        filter: blur(1px);
    }
    50% {
        opacity: 0.62;
        filter: blur(1.5px);
    }
}

@keyframes rotateRing1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) !important;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) !important;
    }
}

@keyframes rotateRing2 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) !important;
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg) !important;
    }
}

/* Additional responsive adjustments for SVG blob elements - Scoped to hero section only */
@media (max-width: 768px) {
    .modern-hero-section .hero-svg-bg-elements {
        display: none !important; /* Hide on mobile for performance */
    }
}

@media (max-width: 991.98px) {
    .modern-hero-section .svg-blob {
        opacity: 0.6 !important; /* Reduce opacity on tablets */
    }
    
    .modern-hero-section .svg-blob-1 {
        width: 400px !important;
        height: 400px !important;
    }
    
    .modern-hero-section .svg-blob-2 {
        width: 350px !important;
        height: 350px !important;
    }
    
    .modern-hero-section .svg-blob-3 {
        width: 300px !important;
        height: 300px !important;
    }
    
    .modern-hero-section .svg-blob-4 {
        width: 250px !important;
        height: 250px !important;
    }
    
    .modern-hero-section .svg-blob-5 {
        width: 280px !important;
        height: 280px !important;
    }
    
    .modern-hero-section .svg-blob-6 {
        width: 350px !important;
        height: 230px !important;
    }
}

@keyframes dashRotate1 {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 100;
    }
}

@keyframes dashRotate2 {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -100;
    }
}

.hero-main-image {
    position: relative !important;
    z-index: 5 !important;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1)) !important;
    transition: transform 0.3s ease !important;
}

.hero-image-wrapper:hover .hero-main-image {
    transform: translateY(-5px) scale(1.02) !important;
}

/* Hero section styles consolidated below */

/* Continue background elements throughout page */
body {
    position: relative;
}

.page-bg-m {
    position: fixed;
    font-size: 30rem;
    font-weight: 900;
    color: rgba(30, 92, 170, 0.03);
    line-height: 1;
    z-index: -1;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.08em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    text-transform: uppercase;
    animation: pageFloatM 25s ease-in-out infinite;
}

@keyframes pageFloatM {

    0%,
    100% {
        transform: translateY(-50%) translateX(0) scale(1);
        opacity: 0.03;
    }

    50% {
        transform: translateY(-50%) translateX(40px) scale(1.05);
        opacity: 0.05;
    }
}

/* Trusted By Section */
.trusted-by-section {
    padding: 3rem 0 !important;
    background: transparent !important;
    position: relative !important;
    overflow: hidden !important;
}

.trusted-by-section .container-fluid {
    max-width: 100% !important;
    margin: 0 auto !important;
}

.trusted-by-section .text-center.mb-5 {
    margin-bottom: 2rem !important;
}

.trusted-by-heading {
    font-family: 'Montserrat', 'Inter', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.trusted-by-heading .premium-underline {
    color: #1E5CAA !important;
}

.trusted-by-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.trusted-by-carousel {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    width: fit-content;
    animation: scrollRight 100s linear infinite;
    /* Default: left to right */
}

/* Second row: right to left */
.trusted-by-carousel.reverse {
    animation: scrollLeft 100s linear infinite !important;
}

.trusted-by-carousel:hover,
.trusted-by-carousel.reverse:hover {
    animation-play-state: paused !important;
}

.trusted-by-carousel-row {
    display: flex;
    gap: 1.5rem;
}

/* Right to left animation (2nd row) */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

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

/* Left to right animation (1st row) */
@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Trusted By Cards - Force transparent background and color logos */
.trusted-by-section .trusted-by-card,
.trusted-by-carousel-wrapper .trusted-by-card,
.trusted-by-carousel .trusted-by-card {
    flex: 0 0 auto !important;
    min-width: 180px !important;
    width: 180px !important;
    height: 100px !important;
    background: transparent !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.trusted-by-section .trusted-by-card:hover,
.trusted-by-carousel-wrapper .trusted-by-card:hover,
.trusted-by-carousel .trusted-by-card:hover {
    transform: translateY(-4px) scale(1.05) !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.trusted-by-section .trusted-by-card img,
.trusted-by-carousel-wrapper .trusted-by-card img,
.trusted-by-carousel .trusted-by-card img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

.trusted-by-section .trusted-by-card:hover img,
.trusted-by-carousel-wrapper .trusted-by-card:hover img,
.trusted-by-carousel .trusted-by-card:hover img {
    opacity: 0.9 !important;
    filter: none !important;
    -webkit-filter: none !important;
}

.trusted-by-card-text {
    font-family: 'Inter', 'Poppins', 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    text-align: center;
}

.modern-hero-heading {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    color: #000 !important;
    margin-bottom: 2rem !important;
    -webkit-font-smoothing: antialiased !important;
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
}

.modern-hero-heading .hero-heading-second-line {
    color: #000 !important;
}

/* Responsive font sizes */
@media (max-width: 991.98px) {
    .modern-hero-heading {
        font-size: 2.5rem !important;
    }
}

@media (min-width: 992px) {
    .modern-hero-heading {
        font-size: 2.5rem !important;
    }
}

/* Responsive paragraph text */
.modern-hero-text {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #4b5563 !important;
    margin-bottom: 2rem !important;
    max-width: 32rem !important;
}

@media (min-width: 768px) {
    .modern-hero-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}

@media (min-width: 1024px) {
    .modern-hero-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}

/* Why Moneypex Section Animations */
.why-moneypex-section {
    position: relative;
    font-family: 'Inter', 'Montserrat', sans-serif;
}

.why-moneypex-heading,
.why-moneypex-description,
.why-moneypex-cta,
.why-card-title,
.why-card-text {
    font-family: 'Inter', 'Montserrat', sans-serif;
}

.why-moneypex-heading {
    animation: fadeInDown 0.8s ease-out;
}

.why-moneypex-description {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.why-moneypex-cta {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.why-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.why-card:hover {
    transform: translateY(-8px) scale(1.02);
    border: none !important;
    box-shadow: none !important;
}

.why-card:hover .why-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px -5px rgba(30, 92, 170, 0.3);
}

.why-card-icon {
    position: relative;
}

.why-card-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(30, 92, 170, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.why-card:hover .why-card-icon::before {
    width: 120%;
    height: 120%;
}

.why-card-title {
    transition: color 0.3s ease;
}

.why-card:hover .why-card-title {
    color: #1E5CAA;
}

.why-card-text {
    transition: color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-moneypex-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .why-moneypex-heading {
        font-size: 2rem !important;
    }

    .why-moneypex-description,
    .why-moneypex-cta {
        font-size: 1rem !important;
    }
}

/* Hero Section Responsive Min-Height */
.modern-hero-section {
    min-height: 100vh;
}

/* Mobile devices (up to 576px) */
@media (max-width: 576px) {
    .modern-hero-section {
        min-height: 80vh !important;
        padding-top: 4rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Small tablets (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .modern-hero-section {
        min-height: 90vh !important;
        padding-top: 5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

/* Tablets (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .modern-hero-section {
        min-height: 95vh !important;
    }
}

/* Large screens (993px and above) */
@media (min-width: 993px) {
    .modern-hero-section {
        min-height: 100vh !important;
    }
}

/* Hero Section SVG Background - Match Home Page Exactly */
.modern-hero-section {
    padding-top: 6rem !important;
    padding-bottom: 3rem !important;
    padding-left: 4.3rem !important;
    padding-right: 4.3rem !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    background: transparent !important;
    position: relative !important;
    overflow: visible !important;
    background-image: url('/lines-bg-header.svg') !important;
    background-repeat: no-repeat !important;
    background-position: left top !important;
    background-size: auto !important;
}

.modern-hero-section .hero-container-wrapper {
    max-width: 100% !important;
    margin: 0 auto !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Responsive Side Spacing */
@media (max-width: 768px) {
    .modern-hero-section {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .modern-hero-section {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

@media (min-width: 993px) {
    .modern-hero-section {
        padding-left: 4.3rem !important;
        padding-right: 4.3rem !important;
    }
}

.modern-hero-section .hero-row-wrapper {
    gap: 4rem;
}

.modern-hero-section .hero-content-wrapper {
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.modern-hero-section .hero-right-column {
    position: relative !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
}

.modern-hero-section .hero-right-column .position-relative {
    position: relative !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
}

.modern-hero-section .hero-right-wrapper {
    position: relative !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
}

/* Hero Form Styling - Modern Design - Match Home Page Layout */
.modern-hero-section .hero-form-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 0;
}

.modern-hero-section .hero-form-wrapper {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    padding: 2.5rem 3rem;
    width: 100%;
    max-width: 580px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
    margin-right: 0;
    animation: formFadeIn 0.6s ease-out 0.3s both;
}

@keyframes formFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modern-hero-section .hero-form-wrapper:hover {
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15), 0 10px 20px -5px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px) scale(1.01);
}

.modern-hero-section .hero-form-title {
    color: #1E5CAA;
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 0;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    animation: titleFadeIn 0.6s ease-out 0.2s both;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Form Input Styling with Animations */
.modern-hero-section .modern-form .form-label {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.modern-hero-section .modern-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background-color: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

@keyframes inputFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.modern-hero-section .modern-form .mb-3:first-of-type .form-control {
    animation: inputFadeIn 0.5s ease-out 0.1s both;
}

.modern-hero-section .modern-form .mb-3:nth-of-type(2) .form-control {
    animation: inputFadeIn 0.5s ease-out 0.2s both;
}

.modern-hero-section .modern-form .mb-3:nth-of-type(3) .form-control {
    animation: inputFadeIn 0.5s ease-out 0.3s both;
}

.modern-hero-section .modern-form .form-control:focus {
    background-color: #ffffff;
    border-color: #1E5CAA;
    box-shadow: 0 0 0 4px rgba(30, 92, 170, 0.1);
    transform: translateY(-2px);
}

.modern-hero-section .modern-form .form-control::placeholder {
    color: #9ca3af;
    font-size: 0.9375rem;
}

.modern-hero-section .modern-form .form-check-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.modern-hero-section .modern-form .form-check-input {
    width: 1.125rem;
    height: 1.125rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modern-hero-section .modern-form .form-check-input:checked {
    background-color: #1E5CAA;
    border-color: #1E5CAA;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.modern-hero-section .modern-form .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(30, 92, 170, 0.1);
}

.modern-hero-section .modern-form .form-check-label a {
    color: #1E5CAA;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.modern-hero-section .modern-form .form-check-label a:hover {
    color: #174a85;
    text-decoration: underline;
}

.modern-hero-section .modern-form .btn-modern {
    background: linear-gradient(135deg, #1E5CAA 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 700;
    font-family: 'Montserrat', 'Inter', sans-serif;
    border-radius: 0.75rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px 0 rgba(30, 92, 170, 0.39);
    position: relative;
    overflow: hidden;
    animation: buttonFadeIn 0.6s ease-out 0.4s both;
}

@keyframes buttonFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-hero-section .modern-form .btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.modern-hero-section .modern-form .btn-modern:hover {
    background: linear-gradient(135deg, #174a85 0%, #1E5CAA 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(30, 92, 170, 0.5);
}

.modern-hero-section .modern-form .btn-modern:hover::before {
    left: 100%;
}

.modern-hero-section .modern-form .btn-modern:active {
    transform: translateY(0);
    box-shadow: 0 4px 14px 0 rgba(30, 92, 170, 0.39);
}

.modern-hero-section .modern-form .mb-3 {
    animation: fieldFadeIn 0.5s ease-out both;
}

.modern-hero-section .modern-form .mb-3:nth-of-type(1) {
    animation-delay: 0.1s;
}

.modern-hero-section .modern-form .mb-3:nth-of-type(2) {
    animation-delay: 0.2s;
}

.modern-hero-section .modern-form .mb-3:nth-of-type(3) {
    animation-delay: 0.3s;
}

@keyframes fieldFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Explore More Features Section - Modern Two-Column Design */
.explore-features-section-modern {
    padding: 6rem 4.3rem !important;
    background: transparent !important;
    position: relative !important;
    overflow: visible !important;
    min-height: auto !important;
    display: block !important;
}

.explore-features-heading-wrapper {
    margin-bottom: 4rem !important;
}

.explore-features-heading {
    font-family: 'Montserrat', 'Inter', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

.explore-features-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.125rem !important;
    color: #64748b !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

.explore-features-container {
    max-width: 100% !important;
    margin: 0 auto !important;
}

.explore-features-row {
    align-items: center !important;
    gap: 4rem !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    margin-top: 2rem !important;
}

/* Left Column: Feature Descriptions */
.explore-features-left {
    padding: 3rem 2rem !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    height: 100% !important;
}

.explore-features-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
}

.explore-feature-item {
    padding: 1.75rem 2rem !important;
    border-radius: 1rem !important;
    border: 1px solid #1E5CAA !important;
    background: white !important;
    backdrop-filter: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    animation: featureItemFadeIn 0.6s ease-out both !important;
    position: relative !important;
    z-index: 1 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.explore-feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.explore-feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.explore-feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.explore-feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes featureItemFadeIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.explore-feature-item:hover {
    background: white !important;
    border-color: #1E5CAA !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 4px 12px rgba(30, 92, 170, 0.15) !important;
    z-index: 5 !important;
}

.explore-feature-item:hover ~ * {
    z-index: 1 !important;
}

.explore-feature-item.active {
    background: white !important;
    border: 1px solid #1E5CAA !important;
    box-shadow: 0 4px 12px rgba(30, 92, 170, 0.2) !important;
}

.explore-feature-title {
    font-family: 'Montserrat', 'Inter', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #1E5CAA !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
    transition: color 0.3s ease !important;
}

.explore-feature-item:hover .explore-feature-title,
.explore-feature-item.active .explore-feature-title {
    color: #1E5CAA !important;
}

.explore-feature-description {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #64748b !important;
    margin: 0 !important;
    transition: color 0.3s ease !important;
}

.explore-feature-item:hover .explore-feature-description,
.explore-feature-item.active .explore-feature-description {
    color: #475569 !important;
}

/* Right Column: Dashboard Visual */
.explore-features-right {
    padding: 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 10 !important;
    height: 100% !important;
    align-self: center !important;
}

.explore-features-visual {
    width: 100% !important;
    max-width: 700px !important;
    position: relative !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


@keyframes visualFadeIn {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.feature-dashboard-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 1rem !important;
    object-fit: contain !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    animation: visualFadeIn 0.8s ease-out 0.2s both !important;
}

.explore-feature-item:hover ~ .explore-features-right .feature-dashboard-image,
.explore-features-right:hover .feature-dashboard-image {
    transform: scale(1.05) !important;
    z-index: 100 !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .explore-features-section-modern {
        padding: 4rem 2rem !important;
        min-height: auto !important;
    }

    .explore-features-heading {
        font-size: 2rem !important;
    }

    .explore-features-subtitle {
        font-size: 1rem !important;
    }

    .explore-features-row {
        gap: 3rem !important;
        flex-wrap: wrap !important;
    }

    .explore-features-left {
        padding: 2rem 1rem !important;
        width: 100% !important;
    }

    .explore-features-right {
        width: 100% !important;
        padding: 2rem 1rem !important;
    }

    .explore-features-content {
        gap: 2rem !important;
    }

    .explore-feature-item {
        padding: 1.5rem 1.5rem !important;
    }

    .explore-feature-title {
        font-size: 1.25rem !important;
    }

    .explore-feature-description {
        font-size: 0.9375rem !important;
    }
}

@media (max-width: 768px) {
    .explore-features-section-modern {
        padding: 3rem 1rem !important;
    }

    .explore-features-heading {
        font-size: 1.75rem !important;
    }

    .explore-features-subtitle {
        font-size: 0.9375rem !important;
    }

    .explore-features-heading-wrapper {
        margin-bottom: 3rem !important;
    }

    .explore-features-row {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .explore-features-left {
        padding: 1.5rem 0.5rem !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        order: 1 !important;
    }

    .explore-features-right {
        padding: 1rem !important;
        width: 100% !important;
        order: 2 !important;
    }

    .explore-feature-item {
        padding: 1.25rem 1.25rem !important;
    }

    .feature-visual-wrapper {
        padding: 0.75rem !important;
    }
}

/* FAQ Section Styling - Match Home Page */
.faq-growth-section {
    padding: 6rem 4.3rem !important;
    background-color: transparent !important;
    background-image: url('/lines-bg-header.svg') !important;
    background-repeat: no-repeat !important;
    background-position: left bottom !important;
    background-size: auto !important;
    position: relative !important;
}

.faq-growth-section .container {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.faq-section-heading {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
    font-family: 'Montserrat', 'Inter', sans-serif !important;
}

.faq-section-subtitle {
    font-size: 1.125rem !important;
    color: #64748b !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

.modern-faq .accordion-item {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 1rem !important;
    margin-bottom: 1.25rem !important;
    overflow: visible !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
}

.modern-faq .accordion-collapse {
    overflow: visible !important;
}

.modern-faq .accordion-collapse.show .accordion-body,
.modern-faq .accordion-collapse.collapsing .accordion-body {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.modern-faq .accordion-body {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.modern-faq .accordion-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    border-color: #cbd5e1 !important;
}

.modern-faq .accordion-button {
    padding: 1.5rem !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    color: #1f2937 !important;
    background: white !important;
    box-shadow: none !important;
    border: none !important;
    font-family: 'Montserrat', 'Inter', sans-serif !important;
}

.modern-faq .accordion-button:not(.collapsed) {
    color: #1E5CAA !important;
    background-color: #f8fafc !important;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125) !important;
}

.modern-faq .accordion-button:focus {
    border: none !important;
    box-shadow: none !important;
}

.faq-icon-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    border-radius: 0.5rem !important;
    background-color: #eff6ff !important;
    color: #1E5CAA !important;
    margin-right: 1.25rem !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.modern-faq .accordion-button:not(.collapsed) .faq-icon-wrapper {
    background-color: #1E5CAA !important;
    color: white !important;
}

.faq-icon {
    width: 1.25rem !important;
    height: 1.25rem !important;
}

.modern-faq .accordion-body {
    padding: 1.5rem 1.5rem 2rem 5.25rem !important;
    color: #1e293b !important;
    line-height: 1.7 !important;
    font-size: 1.05rem !important;
    background: white !important;
    font-family: 'Inter', sans-serif !important;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-growth-section {
        padding: 4rem 2rem !important;
    }

    .faq-section-heading {
        font-size: 2rem !important;
    }

    .faq-section-subtitle {
        font-size: 1rem !important;
    }

    .modern-faq .accordion-body {
        padding: 1.25rem 1.25rem 1.5rem 1.25rem !important;
    }

    .faq-icon-wrapper {
        margin-right: 1rem !important;
        width: 2rem !important;
        height: 2rem !important;
    }

    .modern-faq .accordion-body {
        padding-left: 4rem !important;
    }
}

/* Paperless Section - Match FBR Section Design */
.paperless-section {
    padding: 6rem 4.3rem !important;
    background: transparent !important;
    overflow: visible !important;
    background-image: url('/lines-bg-header.svg') !important;
    background-repeat: no-repeat !important;
    background-position: right top !important;
    background-size: auto !important;
    position: relative !important;
}

.paperless-container {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.paperless-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: center !important;
}

/* Left Side: Content and Features */
.paperless-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
}

.paperless-heading {
    font-family: 'Montserrat', 'Inter', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
}

.paperless-description {
    font-family: 'Inter', 'Montserrat', sans-serif !important;
    font-size: 1.125rem !important;
    color: #64748b !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
}

/* Features List */
.paperless-features {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

.paperless-feature-item {
    display: flex !important;
    gap: 1rem !important;
    align-items: flex-start !important;
    transition: transform 0.3s ease !important;
}

.paperless-feature-item:hover {
    transform: translateX(5px) !important;
}

.paperless-feature-icon {
    width: 3rem !important;
    height: 3rem !important;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%) !important;
    border-radius: 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.paperless-feature-item:hover .paperless-feature-icon {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(30, 92, 170, 0.2) !important;
}

.paperless-feature-icon svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
    color: #1E5CAA !important;
}

.paperless-feature-content {
    flex: 1 !important;
}

.paperless-feature-title {
    font-family: 'Montserrat', 'Inter', sans-serif !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    color: #111827 !important;
    margin-bottom: 0.5rem !important;
}

.paperless-feature-text {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9375rem !important;
    color: #6b7280 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* CTA Button */
.paperless-cta {
    margin-top: 1rem !important;
}

.paperless-cta .btn-premium {
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 9999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    background: linear-gradient(135deg, #1E5CAA 0%, #3b82f6 100%) !important;
    color: white !important;
    text-decoration: none !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 10px 25px -5px rgba(30, 92, 170, 0.4), 0 8px 10px -6px rgba(30, 92, 170, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    z-index: 1 !important;
}

.paperless-cta .btn-premium::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    transition: left 0.5s ease !important;
    z-index: 2 !important;
}

.paperless-cta .btn-premium span,
.paperless-cta .btn-premium svg {
    position: relative !important;
    z-index: 3 !important;
}

.paperless-cta .btn-premium:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 15px 30px -5px rgba(30, 92, 170, 0.5) !important;
    background: linear-gradient(135deg, #174a85 0%, #1E5CAA 100%) !important;
}

.paperless-cta .btn-premium:hover::before {
    left: 100% !important;
}

.paperless-cta .btn-premium:hover svg {
    transform: translateX(5px) !important;
}

.paperless-cta .btn-premium svg {
    width: 1.125rem !important;
    height: 1.125rem !important;
    transition: transform 0.3s ease !important;
}

/* Right Side: Demo Image */
.paperless-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.paperless-image-wrapper {
    width: 100% !important;
    max-width: 600px !important;
    border-radius: 1rem !important;
    overflow: hidden !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.paperless-image-wrapper:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15), 0 15px 15px -5px rgba(0, 0, 0, 0.06) !important;
}

.paperless-image-wrapper img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .paperless-section {
        padding: 4rem 2rem !important;
    }

    .paperless-row {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .paperless-heading {
        font-size: 2rem !important;
    }

    .paperless-description {
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    .paperless-section {
        padding: 3rem 1rem !important;
    }

    .paperless-row {
        gap: 2rem !important;
    }

    .paperless-heading {
        font-size: 1.75rem !important;
    }

    .paperless-feature-item {
        gap: 0.75rem !important;
    }

    .paperless-feature-icon {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }

    .paperless-feature-icon svg {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }

    .paperless-feature-title {
        font-size: 1rem !important;
    }

    .paperless-feature-text {
        font-size: 0.875rem !important;
    }
}

/* Responsive Form Styling - Match Home Page */
@media (max-width: 991.98px) {
    .modern-hero-section .hero-form-container {
        justify-content: center !important;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .modern-hero-section .hero-form-wrapper {
        padding: 2rem 2rem;
        max-width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .modern-hero-section .hero-form-title {
        font-size: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .modern-hero-section .hero-form-wrapper {
        padding: 1.75rem 1.5rem;
        border-radius: 1.25rem;
    }

    .modern-hero-section .hero-form-title {
        font-size: 1.375rem;
        padding-bottom: 1.25rem;
    }

    .modern-hero-section .modern-form .form-control {
        padding: 0.75rem 0.875rem;
        font-size: 0.9375rem;
    }
}

/* Remove old form section styles that cause conflicts */
.modern-hero-section .feature-page-hero-section-form {
    margin-top: 0 !important;
    padding: 0 !important;
}

.modern-hero-section .feature-page-hero-section-form .container-fluid,
.modern-hero-section .feature-page-hero-section-form .row,
.modern-hero-section .feature-page-hero-section-form [class*="col-"] {
    padding: 0 !important;
    margin: 0 !important;
}

/* Modern Feature Cards Section - Match Home Page Design */
.modern-section-white {
    padding: 6rem 4.3rem !important;
    background: white !important;
    position: relative !important;
    overflow: visible !important;
}

.features-section-heading {
    font-family: 'Montserrat', 'Inter', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

.features-section-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.125rem !important;
    color: #64748b !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

.modern-container {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Modern Card Styling - Professional Design */
.modern-card {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 1.25rem !important;
    padding: 2.5rem 1.5rem !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.modern-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #93c5fd 0%, #60a5fa 100%) !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.3s ease !important;
    z-index: 1 !important;
}

.modern-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border-color: #bfdbfe !important;
}

.modern-card:hover::before {
    transform: scaleX(1) !important;
}

/* Modern Card Icon */
.modern-card-icon {
    width: 4rem !important;
    height: 4rem !important;
    border-radius: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
}

.modern-card:hover .modern-card-icon {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 10px 15px -3px rgba(30, 92, 170, 0.2) !important;
}

.modern-card-icon img {
    width: 3rem !important;
    height: 3rem !important;
    object-fit: contain !important;
}

/* Modern Card Title */
.modern-card-title {
    font-family: 'Montserrat', 'Inter', sans-serif !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.2 !important;
    transition: color 0.3s ease !important;
}

.modern-card:hover .modern-card-title {
    color: #1E5CAA !important;
}

/* Modern Card Text */
.modern-card-text {
    font-family: 'Inter', 'Montserrat', sans-serif !important;
    font-size: 1rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    transition: color 0.3s ease !important;
}

/* Fade-in Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpCard 0.6s ease-out forwards;
}

.fade-in-up.delay-100 {
    animation-delay: 0.1s;
}

.fade-in-up.delay-200 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-300 {
    animation-delay: 0.3s;
}

@keyframes fadeInUpCard {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Modern Section */
@media (max-width: 768px) {
    .modern-section-white {
        padding: 3rem 1rem !important;
    }

    .features-section-heading {
        font-size: 2rem !important;
    }

    .features-section-subtitle {
        font-size: 1rem !important;
    }

    .modern-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .modern-card {
        padding: 2rem 1.5rem !important;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .modern-section-white {
        padding: 4rem 2rem !important;
    }

    .modern-container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

    #typewriter-text {
        color: #1E5CAA !important;
        font-weight: 700 !important;
        font-family: 'Montserrat', 'Inter', sans-serif !important;
    }

    /* Hero Section Features List with Blue Dots */
    .hero-section-features-list {
        margin-top: 1rem !important;
    }

    .hero-section-features-list span {
        position: relative;
        padding-left: 1.5rem;
        display: inline-block;
        margin-right: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-section-features-list span::before {
        content: '•';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        color: #1E5CAA;
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1;
    }

    /* Hero Section Features List with Blue Dots */
    .hero-section-features-list {
        margin-top: 1rem !important;
    }

    .hero-section-features-list span {
        position: relative;
        padding-left: 1.5rem;
        display: inline-block;
        margin-right: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-section-features-list span::before {
        content: '•';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        color: #1E5CAA;
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1;
    }

    .hero-button-animate {
        margin-top: 2rem !important;
        display: inline-block !important;
}

/* Why Moneypex Section SVG Background */
.why-moneypex-section {
    background-image: url('/lines-bg-why-decentro.svg') !important;
    background-repeat: no-repeat !important;
    background-position: right bottom !important;
    background-size: auto !important;
    background-attachment: scroll !important;
}

/* Background M Letter - Responsive */
.hero-bg-m {
    position: absolute !important;
    font-size: 80rem !important;
    font-weight: 900 !important;
    color: rgba(30, 92, 170, 0.30) !important;
    line-height: 1 !important;
    z-index: -1 !important;
    left: -10% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-family: 'Inter', 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    letter-spacing: -0.08em !important;
    pointer-events: none !important;
    animation: floatM 20s ease-in-out infinite !important;
    user-select: none !important;
    white-space: nowrap !important;
    opacity: 0.15 !important;
    visibility: visible !important;
    display: block !important;
    text-transform: uppercase !important;
}

@keyframes floatM {
    0%,
    100% {
        transform: translateY(-50%) translateX(0) scale(1) !important;
        opacity: 0.15 !important;
        visibility: visible !important;
    }

    50% {
        transform: translateY(-50%) translateX(20px) scale(1.03) !important;
        opacity: 0.2 !important;
        visibility: visible !important;
    }
}

/* Responsive M Letter - Professional scaling */
@media (min-width: 1921px) {
    .hero-bg-m {
        font-size: 100rem !important;
        left: -12% !important;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .hero-bg-m {
        font-size: 85rem !important;
        left: -10% !important;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {
    .hero-bg-m {
        font-size: 75rem !important;
        left: -8% !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-bg-m {
        font-size: 65rem !important;
        left: -6% !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-bg-m {
        font-size: 55rem !important;
        left: -5% !important;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .hero-bg-m {
        font-size: 45rem !important;
        left: -4% !important;
    }
}

@media (max-width: 575px) {
    .hero-bg-m {
        font-size: 35rem !important;
        left: -3% !important;
    }
}

/* Gradient Orbs */
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite;
    z-index: 0;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #1E5CAA, #60a5fa);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #1E5CAA, #60a5fa);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1E5CAA, #60a5fa);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Content z-index */
.modern-hero-section>.container-fluid {
    position: relative;
    z-index: 1;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1E5CAA, #60a5fa);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #174a85, #3b82f6);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #1E5CAA #f1f1f1;
}

/* Premium Wavy Underline */
.premium-underline {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.premium-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='330' height='12' viewBox='0 0 330 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 9.42302C32.0673 4.24443 62.4088 2.65171 92.6841 3.29298C126.852 4.01673 160.912 7.02554 194.949 9.38914C237.957 12.3756 281.365 10.9754 324.032 6.00244' stroke='%232563eb' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.7;
    z-index: -1;
}

/* CTA Subtext */
.cta-subtext {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.75rem;
    font-weight: 500;
    text-align: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* Why Moneypex Cards Beautification */
.why-moneypex-section .why-card {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 1.25rem !important;
    padding: 2.5rem 1.5rem !important;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.why-moneypex-section .why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #bfdbfe !important;
}

.why-moneypex-section .why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #93c5fd 0%, #60a5fa 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-moneypex-section .why-card:hover::before {
    transform: scaleX(1);
}

.why-moneypex-section .why-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-moneypex-section .why-card:hover .why-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-moneypex-section .why-card-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* Benefit Cards Modern */
.benefit-card-modern {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #93c5fd 0%, #60a5fa 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #bfdbfe;
    z-index: 2;
}

.benefit-card-modern:hover::before {
    transform: scaleX(1);
}

.benefit-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card-modern:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.benefit-icon {
    width: 2rem;
    height: 2rem;
    color: #1E5CAA;
}

.benefit-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Empowering Businesses Section */
.empowering-businesses-section {
    padding: 5rem 0;
    background: transparent;
    position: relative;
}

.empowering-businesses-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.empowering-businesses-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.empowering-businesses-section .section-title {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.empowering-businesses-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.empowering-businesses-section .stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.empowering-businesses-section .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #93c5fd 0%, #60a5fa 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.empowering-businesses-section .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #93c5fd;
}

.empowering-businesses-section .stat-card:hover::before {
    transform: scaleX(1);
}

.empowering-businesses-section .stat-icon {
    width: 4.5rem;
    height: 4.5rem;
    background: #93c5fd;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.empowering-businesses-section .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.empowering-businesses-section .stat-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.empowering-businesses-section .stat-icon path {
    stroke: white;
    fill: none;
}

.empowering-businesses-section .stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.empowering-businesses-section .stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.empowering-businesses-section .stat-number#counterd {
    font-size: 1.75rem;
    white-space: normal;
}

.empowering-businesses-section .stat-label {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

@media (max-width: 1200px) {
    .empowering-businesses-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .empowering-businesses-section {
        padding: 3.5rem 0;
    }

    .empowering-businesses-section .container {
        padding: 0 1.5rem;
    }

    .empowering-businesses-section .section-header {
        margin-bottom: 3rem;
    }

    .empowering-businesses-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .empowering-businesses-section .stat-card {
        padding: 2rem 1.5rem;
    }

    .empowering-businesses-section .stat-icon {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1.25rem;
    }

    .empowering-businesses-section .stat-icon svg {
        width: 2.25rem;
        height: 2.25rem;
    }

    .empowering-businesses-section .stat-number {
        font-size: 2rem;
    }

    .empowering-businesses-section .stat-number#counterd {
        font-size: 1.5rem;
    }

    .empowering-businesses-section .stat-label {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .empowering-businesses-section {
        padding: 3rem 0;
    }

    .empowering-businesses-section .container {
        padding: 0 1rem;
    }

    .empowering-businesses-section .stat-card {
        padding: 1.75rem 1.25rem;
    }
}

/* Testimonials Growth Section */
.testimonials-growth-section {
    position: relative;
}

.testimonial-card-growth {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 1.25rem !important;
    padding: 2.5rem 1.5rem !important;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.testimonial-card-growth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #93c5fd 0%, #60a5fa 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial-card-growth:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border-color: #bfdbfe !important;
}

.testimonial-card-growth:hover::before {
    transform: scaleX(1);
}

@media (max-width: 1024px) {
    .testimonials-grid-modern {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .testimonials-growth-section {
        padding: 3rem 0 !important;
    }

    .testimonials-growth-section h2 {
        font-size: 2rem !important;
    }

    .testimonials-growth-section p {
        font-size: 1rem !important;
    }

    .testimonials-grid-modern {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1.25rem !important;
    }

    .testimonial-card-growth {
        padding: 1.5rem !important;
    }
}

/* CTA Growth Section */
.cta-card-growth {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 1.5rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-card-growth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #93c5fd 0%, #60a5fa 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.cta-card-growth:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 40px -10px rgba(0, 0, 0, 0.12), 0 15px 20px -10px rgba(0, 0, 0, 0.08) !important;
    border-color: #bfdbfe !important;
}

.cta-card-growth:hover::before {
    transform: scaleX(1);
}

.cta-card-growth:hover .modern-hero-btn {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.4);
    background-color: #1d4ed8;
}

@media (max-width: 768px) {
    .cta-growth-section {
        padding: 5rem 0 !important;
    }

    .cta-growth-section h2 {
        font-size: 2.25rem !important;
    }

    .cta-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

.testimonial-card-growth img {
    transition: transform 0.3s ease;
}

.testimonial-card-growth:hover img {
    transform: scale(1.05);
}

.faq-growth-section .accordion-button {
    transition: all 0.3s ease;
}

.faq-growth-section .accordion-button:hover {
    background: #f9fafb !important;
}

.faq-growth-section .accordion-collapse {
    transition: all 0.3s ease;
}

.faq-growth-section .accordion-collapse.show,
.faq-growth-section .accordion-collapse.collapsing {
    display: block !important;
    visibility: visible !important;
}

/* FAQ Modern Styles */
.modern-faq .accordion-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    margin-bottom: 1.25rem;
    overflow: visible;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.modern-faq .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.modern-faq .accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1f2937;
    background: white;
    box-shadow: none !important;
    border: none;
}

.modern-faq .accordion-button:not(.collapsed) {
    color: #1E5CAA;
    background-color: #f8fafc;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

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

.faq-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: #eff6ff;
    color: #1E5CAA;
    margin-right: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.modern-faq .accordion-button:not(.collapsed) .faq-icon-wrapper {
    background-color: #1E5CAA;
    color: white;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.modern-faq .accordion-body {
    padding: 1.5rem 1.5rem 2rem 5.25rem;
    color: #1e293b;
    line-height: 1.7;
    font-size: 1.05rem;
    background: white;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.modern-faq .accordion-collapse {
    overflow: visible !important;
}

.modern-faq .accordion-collapse.show .accordion-body,
.modern-faq .accordion-collapse.collapsing .accordion-body {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.modern-faq .accordion-collapse.collapse:not(.show) .accordion-body {
    display: none;
}

.modern-faq .accordion-collapse.collapse.show .accordion-body {
    display: block !important;
}

/* Product Items Styling */
.product-item {
    cursor: pointer;
    padding: 1.5rem !important;
    border-radius: 1rem !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: 2px solid #e5e7eb !important;
    background: white !important;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.product-item:hover:not(.active) {
    transform: translateX(8px);
    border-color: #93c5fd !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.product-item.active {
    transform: translateX(12px) scale(1.02);
    border-color: #1E5CAA !important;
    background: linear-gradient(135deg, #1E5CAA 0%, #3b82f6 100%) !important;
    box-shadow: 0 20px 25px -5px rgba(30, 92, 170, 0.3), 0 10px 10px -5px rgba(30, 92, 170, 0.2);
    z-index: 100 !important;
}

.product-item.active:hover {
    z-index: 100 !important;
}

/* Tab indicator that appears in front of selected item */
.product-item::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 16px;
    height: 60%;
    background: linear-gradient(135deg, #1E5CAA 0%, #3b82f6 100%);
    border-radius: 8px 0 0 8px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -4px 0 12px rgba(30, 92, 170, 0.3);
    z-index: 11;
    opacity: 0;
}

.product-item.active::before {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
    height: 70%;
    z-index: 101;
}

/* Additional tab accent on the left edge */
.product-item::after {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 4px;
    height: 0;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 12;
    opacity: 0;
}

.product-item.active::after {
    transform: translateY(-50%) scaleY(1);
    height: 40%;
    opacity: 1;
}

.product-item.active .product-title {
    color: white !important;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-item.active .product-icon {
    background-color: rgba(255, 255, 255, 0.25) !important;
    transform: scale(1.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pricing Cards Styling */
.pricing-card {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 1.5rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6 0%, #1E5CAA 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
    border-color: #3b82f6 !important;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.bckgrnd-color {
    background: #1E5CAA !important;
    border-color: #1E5CAA !important;
}

.pricing-card.bckgrnd-color::before {
    background: white;
}

.pricing-card.bckgrnd-color:hover {
    border-color: white !important;
}

@media (max-width: 768px) {
    .modern-faq .accordion-button {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .modern-faq .accordion-body {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .faq-icon-wrapper {
        margin-right: 1rem;
        width: 2rem;
        height: 2rem;
    }
}

/* Industries We Serve - Modern Card Design */
.industry-card {
    margin-bottom: 2rem;
}

.industry-card-inner {
    position: relative;
    background: white !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.industry-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    border-radius: 1.25rem;
    pointer-events: none;
}

.industry-card-inner:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    border-color: transparent !important;
}

.industry-card-inner:hover::before {
    opacity: 1;
}

.industry-card-inner:hover::before {
    opacity: 1;
}

.industry-card-inner:hover .industry-card-title,
.industry-card-inner:hover .industry-card-description {
    color: white !important;
    position: relative;
    z-index: 2;
}

.industry-card-inner:hover .industry-icon-wrapper {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: scale(1.15) rotate(5deg) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.industry-card-inner:hover .industry-icon-wrapper svg {
    color: white !important;
    transform: scale(1.1);
}

.industry-card-inner:hover .industry-card-link {
    color: white !important;
}

.industry-card-inner:hover .industry-card-link svg {
    transform: translateX(4px);
    color: white !important;
}

.industry-icon-wrapper {
    position: relative;
    z-index: 2;
}

.industry-card-title {
    position: relative;
    z-index: 2;
}

.industry-card-description {
    position: relative;
    z-index: 2;
}

.industry-card-link {
    position: relative;
    z-index: 2;
}

.industry-card-link:hover svg {
    transform: translateX(6px);
}

/* Responsive adjustments for industry cards */
@media (max-width: 991.98px) {
    .industry-card {
        flex: 0 0 33.333% !important;
    }
}

@media (max-width: 768px) {
    .industry-card {
        flex: 0 0 50% !important;
        padding: 0 0.5rem !important;
    }
    
    .industry-card-inner {
        padding: 2rem 1.5rem !important;
    }
    
    .industry-icon-wrapper {
        width: 3.5rem !important;
        height: 3.5rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .industry-card-title {
        font-size: 1.25rem !important;
    }
    
    .industry-card-description {
        font-size: 0.9375rem !important;
    }
}

@media (max-width: 576px) {
    .industry-card {
        flex: 0 0 100% !important;
    }
}