:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
}


/* Header Styles */

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


/* Hero Section - Updated for Dark Theme */

.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.05)"><polygon points="0,100 1000,0 1000,100"/></svg>');
    background-size: cover;
}

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

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

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Hero Section Styles - Consolidated */

.navbar-fixed-top {
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(25px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    z-index: 1000 !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    height: 65px;
}

.navbar-fixed-top.scrolled {
    background: rgba(15, 23, 42, 0.99);
    backdrop-filter: blur(30px);
    padding: 0.8rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.navbar-brand-custom {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1.6rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.navbar-brand-custom:hover {
    color: #10b981;
    transform: translateY(-1px);
}

.navbar-brand-custom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #10b981, #059669);
    transition: width 0.3s ease;
}

.navbar-brand-custom:hover::after {
    width: 100%;
}

.navbar-brand-icon {
    color: #10b981;
    margin-right: 0.6rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.navbar-brand-custom:hover .navbar-brand-icon {
    transform: rotate(15deg) scale(1.1);
}

.navbar-brand-tagline {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navbar-toggler-custom {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler-custom:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.navbar-toggler-custom:focus {
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
    outline: none;
}


/* Custom hamburger icon styles */

.navbar-toggler-icon {
    background-image: none !important;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}


/* Hamburger animation when menu is open */

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}


/* Mobile menu collapse styles */

.navbar-collapse {
    transition: all 0.3s ease;
}

.navbar-collapse.collapsing {
    transition: height 0.3s ease;
}

.navbar-collapse.show {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(25px);
    border-radius: 12px;
    margin-top: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}


/* Slide down animation for mobile menu */

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


/* Mobile menu touch improvements */

@media (max-width: 991.98px) {
    .nav-link-custom {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .btn-demo-custom {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navbar-toggler-custom {
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.navbar-nav-custom {
    gap: 2.5rem;
    align-items: center;
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    padding: 0.5rem 0 !important;
}

.nav-link-custom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #10b981, #059669);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-custom:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-link-custom:hover::before {
    width: 100%;
}

.nav-link-custom i {
    margin-right: 0.4rem;
    font-size: 15px;
    transition: all 0.3s ease;
}

.nav-link-custom:hover i {
    transform: scale(1.2);
    color: #10b981;
}

.btn-demo-custom {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    border: none !important;
    padding: 0.8rem 1.8rem !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
}

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

.btn-demo-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.btn-demo-custom:hover::before {
    left: 100%;
}

.btn-demo-custom i {
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.btn-demo-custom:hover i {
    transform: translateX(2px);
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
}

.animated-circle {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.animated-circle-1 {
    top: 10%;
    left: 10%;
    width: 120px;
    height: 120px;
    background: rgba(59, 130, 246, 0.15);
}

.animated-circle-2 {
    top: 20%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: rgba(16, 185, 129, 0.12);
    animation: float 10s ease-in-out infinite reverse;
}

.animated-circle-3 {
    bottom: 30%;
    left: 20%;
    width: 140px;
    height: 140px;
    background: rgba(20, 184, 166, 0.1);
    animation: float 9s ease-in-out infinite;
}

.animated-circle-4 {
    bottom: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.1);
    animation: float 7s ease-in-out infinite reverse;
}

.enterprise-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
}

.enterprise-grid-pattern {
    background-image: linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    width: 100%;
    height: 100%;
}

.hero-content {
    z-index: 2;
}

.enterprise-badge {
    margin-bottom: 2.5rem;
}

.enterprise-badge-content {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    color: #10b981;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.enterprise-badge-icon {
    color: #fbbf24;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.hero-headline-gradient {
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    position: relative;
}

.hero-headline-gradient::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 540px;
}

.enterprise-stats {
    margin-bottom: 3rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    border: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
    color: #ffffff;
    text-decoration: none;
}

.btn-secondary-custom {
    background: transparent;
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.btn-secondary-custom:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    text-decoration: none;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.btn-icon {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-secondary-custom .btn-shine {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.btn-primary-custom:hover .btn-shine,
.btn-secondary-custom:hover .btn-shine {
    left: 100%;
}

.trust-indicators {
    margin-top: 3rem;
}

.trust-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-companies {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.trust-company {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-company-icon-1 {
    color: #10b981;
}

.trust-company-icon-2 {
    color: #fbbf24;
}

.trust-company-icon-3 {
    color: #3b82f6;
}

.hero-visual {
    z-index: 2;
}

.hero-visual-container {
    text-align: center;
    position: relative;
}

.enterprise-globe {
    position: relative;
    display: inline-block;
}

.globe-background {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
}

.globe-icon {
    font-size: 24rem;
    color: rgba(255, 255, 255, 0.12);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-card-1 {
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-card-2 {
    top: 20%;
    right: 8%;
    animation: float 7s ease-in-out infinite reverse;
}

.floating-card-3 {
    bottom: 30%;
    left: 3%;
    animation: float 8s ease-in-out infinite;
}

.floating-card-4 {
    bottom: 20%;
    right: 5%;
    animation: float 6.5s ease-in-out infinite reverse;
}

.floating-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-card-icon {
    font-size: 1.4rem;
}

.floating-card-icon-1 {
    color: #14b8a6;
}

.floating-card-icon-2 {
    color: #10b981;
}

.floating-card-icon-3 {
    color: #f59e0b;
}

.floating-card-icon-4 {
    color: #ef4444;
}

.floating-card-text {
    color: #1e293b;
    font-weight: 700;
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator-container {
    width: 35px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    position: relative;
}

.scroll-indicator-dot {
    width: 5px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2.5s infinite;
}

.stats-section {
    background: #f8fafc;
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Enhanced hover effects for trust indicators */

.trust-stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 12px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.trust-stat:hover .trust-number {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.trust-stat:hover i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}


/* Enhanced hover effects for module cards */

.module-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 12px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.module-card:hover .module-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.module-card:hover .module-title {
    color: #10b981 !important;
    transition: color 0.3s ease;
}


/* Enhanced hover effects for API cards */

.api-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 12px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.api-card:hover .api-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.api-card:hover h4 {
    color: #3b82f6 !important;
    transition: color 0.3s ease;
}


/* Hover effects for buttons */

.hero-section a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
    .hero-section .col-lg-6:last-child {
        margin-top: 3rem;
    }
    .trust-stat {
        margin-bottom: 1rem;
    }
    .module-card,
    .api-card {
        margin-bottom: 1rem;
    }
    /* Features Section Mobile Styles */
    .features-section {
        padding: 4rem 0;
    }
    .feature-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    .feature-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
    }
    .feature-icon i {
        font-size: 1.6rem;
    }
    .feature-title {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    .feature-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem !important;
    }
    .feature-highlights {
        gap: 0.6rem;
        margin-top: 1.2rem;
    }
    .highlight-tag {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        border-radius: 16px;
    }
}

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

@keyframes ctaGlow {
    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes flame {
    0% {
        transform: scale(1) rotate(-5deg);
    }
    100% {
        transform: scale(1.1) rotate(5deg);
    }
}


/* Hover effects for CTA buttons */

.cta-section a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-section a:hover div {
    left: 100%;
}


/* Hover effects for stat cards */

.cta-section .col-md-3 .col-6 div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2.5rem !important;
    }
    .cta-section .d-flex {
        flex-direction: column;
        align-items: center;
    }
    .cta-section .d-flex a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

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

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

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Enhanced hover effects for trust indicators */

.trust-stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 12px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.trust-stat:hover .trust-number {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.trust-stat:hover i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}


/* Enhanced hover effects for module cards */

.module-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 12px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.module-card:hover .module-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.module-card:hover .module-title {
    color: #10b981 !important;
    transition: color 0.3s ease;
}


/* Enhanced hover effects for API cards */

.api-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 12px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.api-card:hover .api-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.api-card:hover h4 {
    color: #3b82f6 !important;
    transition: color 0.3s ease;
}


/* Hover effects for buttons */

.hero-section a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
    .hero-section .col-lg-6:last-child {
        margin-top: 3rem;
    }
    .trust-stat {
        margin-bottom: 1rem;
    }
    .module-card,
    .api-card {
        margin-bottom: 1rem;
    }
}


/* Features Section Styles */

.features-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
}

.features-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.badge-gradient-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.section-title {
    color: #1e293b;
    line-height: 1.2;
}

.section-title-gradient {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #475569;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.feature-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 21px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(25px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6, #14b8a6, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(16, 185, 129, 0.2);
}

.feature-icon-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 85px;
    height: 85px;
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 23px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon-purple {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.feature-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-icon-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.feature-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.feature-icon i {
    color: white;
    font-size: 2rem;
}

.feature-title {
    color: #1e293b;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.025em;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #0f172a;
}

.feature-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
    color: #475569;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
    align-items: center;
}

.feature-highlights.dj-gap-13 {
    gap: 13px;
}

.highlight-tag {
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    margin: 0.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.highlight-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover .highlight-tag::before {
    left: 100%;
}

.highlight-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.highlight-tag-purple {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.highlight-tag-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.highlight-tag-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.highlight-tag-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.highlight-tag-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}


/* Modules Section Styles */

.modules-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
}

.modules-bg-interactive {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.floating-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.dot-1 {
    top: 10%;
    left: 10%;
    width: 8px;
    height: 8px;
    background: rgba(59, 130, 246, 0.3);
}

.dot-2 {
    top: 20%;
    right: 15%;
    width: 12px;
    height: 12px;
    background: rgba(16, 185, 129, 0.3);
    animation: float 8s ease-in-out infinite reverse;
}

.dot-3 {
    bottom: 30%;
    left: 20%;
    width: 10px;
    height: 10px;
    background: rgba(20, 184, 166, 0.3);
    animation: float 7s ease-in-out infinite;
}

.dot-4 {
    bottom: 20%;
    right: 10%;
    width: 6px;
    height: 6px;
    background: rgba(245, 158, 11, 0.3);
    animation: float 9s ease-in-out infinite reverse;
}

.dot-5 {
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: rgba(59, 130, 246, 0.3);
    animation: float 5s ease-in-out infinite;
}

.interactive-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.module-card-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: rotate 30s linear infinite;
}

.module-card-bg-green {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.module-card-bg-blue {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotate 25s linear infinite reverse;
}

.module-card-bg-purple {
    background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
    animation: rotate 28s linear infinite;
}

.module-card-bg-orange {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    animation: rotate 32s linear infinite reverse;
}

.module-card-bg-red {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
    animation: rotate 26s linear infinite;
}

.module-card-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.modules-bg-interactive {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.dot {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.dot-1 {
    top: 10%;
    left: 10%;
    width: 8px;
    height: 8px;
    background: rgba(59, 130, 246, 0.3);
}

.dot-2 {
    top: 20%;
    right: 15%;
    width: 12px;
    height: 12px;
    background: rgba(16, 185, 129, 0.3);
    animation: float 8s ease-in-out infinite reverse;
}

.dot-3 {
    bottom: 30%;
    left: 20%;
    width: 10px;
    height: 10px;
    background: rgba(20, 184, 166, 0.3);
    animation: float 7s ease-in-out infinite;
}

.dot-4 {
    bottom: 20%;
    right: 10%;
    width: 6px;
    height: 6px;
    background: rgba(245, 158, 11, 0.3);
    animation: float 9s ease-in-out infinite reverse;
}

.dot-5 {
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: rgba(59, 130, 246, 0.3);
    animation: float 5s ease-in-out infinite;
}

.badge-gradient-success {
    background: linear-gradient(135deg, #10b981, #059669);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gradient-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.module-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    max-height: 500px;
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.module-card-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: rotate 30s linear infinite;
}

.module-card-bg-green {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.module-card-bg-blue {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotate 25s linear infinite reverse;
}

.module-card-bg-purple {
    background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
    animation: rotate 28s linear infinite;
}

.module-card-bg-orange {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    animation: rotate 32s linear infinite reverse;
}

.module-card-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.module-icon-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.module-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.module-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.module-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.module-icon-purple {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.module-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.module-icon i {
    color: white;
    font-size: 2rem;
}

.module-title {
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex: 1;
    margin-bottom: 1rem;
    min-height: 60px;
    max-height: 80px;
    overflow: hidden;
}

.module-stats {
    text-align: center;
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.stat-badge {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0.3rem;
    color: white;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: badgePulse 3s ease-in-out infinite;
}

.stat-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.stat-badge:hover::before {
    left: 100%;
}

@keyframes badgePulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.stat-badge-green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.stat-badge-green:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.stat-badge-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.stat-badge-blue:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.stat-badge-purple {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.stat-badge-purple:hover {
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.stat-badge-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.stat-badge-orange:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.stat-badge-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.stat-badge-red:hover {
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.module-card-bg-blue {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotate 25s linear infinite reverse;
}

.module-card-bg-purple {
    background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
    animation: rotate 28s linear infinite;
}

.module-card-bg-orange {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    animation: rotate 32s linear infinite reverse;
}

.module-card-bg-red {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
    animation: rotate 26s linear infinite;
}

.module-card-bg-green {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    animation: rotate 29s linear infinite reverse;
}

.module-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.module-icon-purple {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.module-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.module-icon-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.module-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}


/* API Integrations Section Styles */


/* ========================================
   INTEGRATIONS SECTION - MODERN TABBED INTERFACE
   ======================================== */


/* Background & Layout */

.integrations-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.integrations-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.integrations-bg-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #14b8a6, #06b6d4);
    border-radius: 50%;
    opacity: 0.3;
    animation: integrationsFloat 6s ease-in-out infinite;
}

.integrations-bg-dot-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.integrations-bg-dot-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.integrations-bg-dot-3 {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.integrations-bg-dot-4 {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

.integrations-bg-dot-5 {
    top: 80%;
    left: 60%;
    animation-delay: 4s;
}

.integrations-bg-dot-6 {
    top: 40%;
    right: 40%;
    animation-delay: 5s;
}

@keyframes integrationsFloat {
    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.6;
    }
}

.integrations-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 50px 50px;
    z-index: 1;
}

.integrations-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 23, 42, 0.8) 50%, transparent 100%);
}


/* Tabbed Interface */

.integrations-tabs-container {
    position: relative;
    z-index: 10;
}

.integrations-tabs {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 20px;
    padding: 8px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
}

.integrations-tab {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.integrations-tab:hover {
    background: rgba(14, 184, 166, 0.1);
    color: #14b8a6;
    transform: translateY(-2px);
}

.integrations-tab.active {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    color: white;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
    transform: translateY(-2px);
}

.integrations-tab i {
    font-size: 1.1rem;
}

.tab-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 8px;
}

.integrations-tab.active .tab-count {
    background: rgba(255, 255, 255, 0.3);
}


/* Category Titles */

.integrations-category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

.integrations-category-title i {
    color: #14b8a6;
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.integrations-category-section {
    margin-bottom: 4rem;
}


/* Category Hero Section */

.integrations-category-hero {
    text-align: center;
    background: linear-gradient(135deg, rgba(14, 184, 166, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 24px;
    padding: 25px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.integrations-category-hero-icon {
    font-size: 4rem;
    color: #14b8a6;
    margin-bottom: 1rem;
    display: block;
}

.integrations-category-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.integrations-category-hero-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    margin: 0;
}


/* All Integrations Hero Section */

.integrations-all-hero {
    text-align: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 24px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.integrations-all-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 24px;
    z-index: 1;
}

.integrations-all-hero-content {
    position: relative;
    z-index: 2;
}

.integrations-all-hero-icon {
    font-size: 4rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    display: block;
    animation: integrationsGlobe 4s ease-in-out infinite;
}

@keyframes integrationsGlobe {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(5deg) scale(1.05);
    }
}

.integrations-all-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.integrations-all-hero-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    margin: 0;
}


/* Integration Cards */

.integration-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.integration-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 184, 166, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.integration-card-featured {
    border-color: rgba(14, 184, 166, 0.2);
    background: rgba(15, 23, 42, 0.9);
}

.integration-card-featured:hover {
    border-color: rgba(14, 184, 166, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.integration-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.integration-card:hover .integration-card-glow {
    opacity: 0.1;
}

.integration-card-glow-blue {
    background: radial-gradient(circle, #3b82f6, transparent 70%);
}

.integration-card-glow-green {
    background: radial-gradient(circle, #10b981, transparent 70%);
}

.integration-card-glow-orange {
    background: radial-gradient(circle, #f59e0b, transparent 70%);
}

.integration-card-glow-red {
    background: radial-gradient(circle, #ef4444, transparent 70%);
}

.integration-card-glow-purple {
    background: radial-gradient(circle, #8b5cf6, transparent 70%);
}

.integration-card-glow-teal {
    background: radial-gradient(circle, #14b8a6, transparent 70%);
}

.integration-card-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}


/* Integration Icons */

.integration-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    transition: all 0.3s ease;
}

.integration-icon-large {
    width: 80px;
    height: 80px;
    font-size: 2.2rem;
    border-radius: 24px;
}

.integration-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.integration-icon-green {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.integration-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
}

.integration-icon-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.3);
}

.integration-icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.integration-icon-teal {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: white;
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.3);
}

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


/* Integration Content */

.integration-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.integration-title-large {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.integration-description {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}


/* Feature Tags */

.integration-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.integration-feature-tag {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(20, 184, 166, 0.2);
    transition: all 0.3s ease;
}

.integration-feature-tag:hover {
    background: rgba(20, 184, 166, 0.2);
    transform: translateY(-2px);
}

.integration-feature-tag-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.2);
}

.integration-feature-tag-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.2);
}

.integration-feature-tag-orange {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.2);
}

.integration-feature-tag-red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.2);
}

.integration-feature-tag-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.2);
}

.integration-feature-tag-teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
    border-color: rgba(20, 184, 166, 0.2);
}


/* Category Badge */

.integration-card-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #94a3b8;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* Action Button */

.integration-card-action {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-learn-more {
    background: transparent;
    border: 1px solid rgba(20, 184, 166, 0.3);
    color: #14b8a6;
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.integration-learn-more:hover {
    background: rgba(20, 184, 166, 0.1);
    border-color: #14b8a6;
    color: #14b8a6;
    transform: translateY(-2px);
}


/* Empty State */

.integrations-empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.integrations-empty-icon {
    font-size: 4rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.integrations-empty-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.integrations-empty-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    margin: 0;
}


/* Responsive Design */

@media (max-width: 991.98px) {
    .integrations-section {
        padding: 6rem 0;
    }
    .integrations-tabs {
        padding: 6px;
        border-radius: 16px;
    }
    .integrations-tab {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    .integrations-category-hero {
        padding: 2rem 1.5rem;
    }
    .integrations-category-hero-icon {
        font-size: 3rem;
    }
    .integrations-category-hero-title {
        font-size: 2rem;
    }
    .integration-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .integrations-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    .integrations-tab {
        justify-content: center;
        padding: 14px 20px;
    }
    .integrations-category-hero-title {
        font-size: 1.75rem;
    }
    .integration-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    .integration-title-large {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .integrations-section {
        padding: 4rem 0;
    }
    .integrations-category-hero {
        padding: 1.5rem 1rem;
    }
    .integrations-category-hero-icon {
        font-size: 2.5rem;
    }
    .integrations-category-hero-title {
        font-size: 1.5rem;
    }
    .integration-card {
        padding: 1.25rem;
    }
    .integration-icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }
    .integration-icon-large {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
    }
}


/* Legacy API Category Titles (for backward compatibility) */

.api-category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
}

.api-category-title i {
    color: #14b8a6;
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.api-category-section {
    margin-bottom: 4rem;
}

.api-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.api-section-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.api-section-bg-dot {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.api-section-bg-dot-1 {
    top: 15%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
}

.api-section-bg-dot-2 {
    top: 25%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    animation: float 10s ease-in-out infinite reverse;
}

.api-section-bg-dot-3 {
    bottom: 30%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: rgba(20, 184, 166, 0.1);
    animation: float 12s ease-in-out infinite;
}

.api-section-bg-dot-4 {
    bottom: 20%;
    right: 10%;
    width: 70px;
    height: 70px;
    background: rgba(245, 158, 11, 0.1);
    animation: float 9s ease-in-out infinite reverse;
}

.api-section-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
}

.api-section-grid-pattern {
    background-image: linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    width: 100%;
    height: 100%;
}

.api-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.api-card-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: rotate 25s linear infinite;
}

.api-card-bg-green {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.api-card-bg-blue {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite reverse;
}

.api-card-bg-purple {
    background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
    animation: rotate 28s linear infinite;
}

.api-card-bg-red {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
    animation: rotate 32s linear infinite reverse;
}

.api-card-bg-orange {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    animation: rotate 26s linear infinite;
}

.api-card-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.api-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.api-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.api-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.api-icon-purple {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.api-icon-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.api-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.api-icon i {
    color: white;
    font-size: 2rem;
}

.api-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.api-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex: 1;
    margin-bottom: 1.5rem;
}

.api-feature-tags {
    text-align: center;
    margin-top: auto;
    flex-shrink: 0;
}

.api-feature-tag {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.25rem;
    display: inline-block;
}

.api-feature-tag-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.api-feature-tag-purple {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.api-feature-tag-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.api-feature-tag-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}


/* B2B & B2C Section Styles */

.b2b-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.b2b-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.b2b-floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.1), rgba(25, 135, 84, 0.1));
    animation: b2bFloat 20s infinite linear;
}

.b2b-element-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.b2b-element-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 10%;
    animation-delay: -5s;
}

.b2b-element-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 15%;
    animation-delay: -10s;
}

.b2b-element-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 5%;
    animation-delay: -15s;
}

@keyframes b2bFloat {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.b2b-solution-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.b2b-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #198754);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.b2b-solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.b2b-solution-card-b2c::before {
    background: linear-gradient(90deg, #0d6efd, #198754);
}

.b2b-solution-card-b2b::before {
    background: linear-gradient(90deg, #6f42c1, #fd7e14);
}

.b2b-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.b2b-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    background: linear-gradient(135deg, #0d6efd, #198754);
}

.b2b-icon-wrapper-b2b {
    background: linear-gradient(135deg, #6f42c1, #fd7e14);
}

.b2b-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: b2bIconGlow 3s infinite;
}

@keyframes b2bIconGlow {
    0%,
    100% {
        opacity: 0;
        transform: rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: rotate(180deg);
    }
}

.b2b-icon {
    font-size: 24px;
    color: white;
    z-index: 2;
    position: relative;
}

.b2b-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #0d6efd, #198754);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.b2b-solution-card-b2b .b2b-card-title {
    background: linear-gradient(135deg, #6f42c1, #fd7e14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.b2b-card-subtitle {
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.b2b-features-list {
    margin-bottom: 25px;
}

.b2b-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(248, 249, 250, 0.5);
    transition: all 0.3s ease;
}

.b2b-feature-item:hover {
    background: rgba(13, 110, 253, 0.05);
    transform: translateX(5px);
}

.b2b-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d6efd, #198754);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.b2b-solution-card-b2b .b2b-feature-icon {
    background: linear-gradient(135deg, #6f42c1, #fd7e14);
}

.b2b-feature-icon i {
    color: white;
    font-size: 16px;
}

.b2b-feature-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 6px;
}

.b2b-feature-content p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.b2b-stats-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 8px;
}

.b2b-stat-item {
    text-align: center;
    flex: 1;
}

.b2b-stat-number {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 4px;
}

.b2b-solution-card-b2b .b2b-stat-number {
    color: #6f42c1;
}

.b2b-stat-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.b2b-unified-benefits {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.b2b-benefits-title {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    background: linear-gradient(135deg, #0d6efd, #198754, #6f42c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.b2b-benefit-card {
    text-align: center;
    padding: 24px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.b2b-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.b2b-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #198754);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
}

.b2b-benefit-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #0d6efd, #198754, #6f42c1);
    z-index: -1;
    opacity: 0.3;
    animation: b2bBenefitPulse 2s infinite;
}

@keyframes b2bBenefitPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.b2b-benefit-icon i {
    color: white;
    font-size: 20px;
}

.b2b-benefit-card h5 {
    font-size: 17px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.b2b-benefit-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.b2b-cta-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.b2b-cta-btn {
    background: linear-gradient(135deg, #0d6efd, #198754);
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.b2b-cta-btn::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;
}

.b2b-cta-btn:hover::before {
    left: 100%;
}

.b2b-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

.b2b-cta-subtitle {
    color: #6c757d;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}


/* Responsive Design */

@media (max-width: 768px) {
    .b2b-section {
        padding: 60px 0;
    }
    .b2b-solution-card {
        padding: 28px 18px;
        margin-bottom: 28px;
    }
    .b2b-card-title {
        font-size: 22px;
    }
    .b2b-feature-item {
        flex-direction: column;
        text-align: center;
        padding: 14px;
    }
    .b2b-feature-icon {
        margin: 0 auto 14px;
        width: 48px;
        height: 48px;
    }
    .b2b-stats-row {
        flex-direction: column;
        gap: 14px;
        padding: 18px 0;
    }
    .b2b-benefit-card {
        margin-bottom: 18px;
        padding: 20px 16px;
    }
    .b2b-benefits-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .b2b-section {
        padding: 50px 0;
    }
    .b2b-solution-card {
        padding: 24px 16px;
    }
    .b2b-card-title {
        font-size: 20px;
    }
    .b2b-feature-content h5 {
        font-size: 15px;
    }
    .b2b-feature-content p {
        font-size: 13px;
    }
    .b2b-stat-number {
        font-size: 18px;
    }
    .b2b-benefits-title {
        font-size: 22px;
    }
    .b2b-benefit-card {
        padding: 18px 14px;
    }
}

.b2b-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.b2b-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.b2b-content ul {
    list-style: none;
    padding: 0;
}

.b2b-content li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
}

.b2b-content i {
    color: var(--success-color);
    margin-right: 1rem;
    font-size: 1.1rem;
}


/* Testimonials Section Styles */

.testimonials-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.quote-marks {
    position: absolute;
    top: 10%;
    left: 10%;
    font-size: 15rem;
    color: rgba(59, 130, 246, 0.1);
    font-family: serif;
}

.floating-stars {
    position: relative;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.star-1 {
    top: 20%;
    right: 15%;
    font-size: 2rem;
    color: rgba(245, 158, 11, 0.1);
}

.star-2 {
    top: 40%;
    left: 20%;
    font-size: 1.5rem;
    color: rgba(16, 185, 129, 0.1);
    animation: float 8s ease-in-out infinite reverse;
}

.star-3 {
    bottom: 30%;
    right: 25%;
    font-size: 2.5rem;
    color: rgba(20, 184, 166, 0.1);
    animation: float 7s ease-in-out infinite;
}

.star-4 {
    bottom: 20%;
    left: 15%;
    font-size: 1.8rem;
    color: rgba(59, 130, 246, 0.1);
    animation: float 9s ease-in-out infinite reverse;
}

.star-5 {
    top: 60%;
    left: 50%;
    font-size: 2.2rem;
    color: rgba(16, 185, 129, 0.1);
    animation: float 5s ease-in-out infinite;
}

.badge-gradient-warning {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gradient-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.enhanced-card {
    position: relative;
    overflow: hidden;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-text {
    color: #1e293b;
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonial-metrics {
    margin-bottom: 1.5rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
}

.metric-label {
    color: #64748b;
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar img {
    width: 70px;
    height: 70px;
}

.testimonial-info h6 {
    color: #1e293b;
    font-size: 1.1rem;
}

.testimonial-info p {
    color: #64748b;
    font-weight: 600;
}

.company-badge {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.company-badge-purple {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.company-badge-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.company-badge-green {
    background: linear-gradient(135deg, #10b981, #059669);
}


/* Trust Indicators Section Styles */

.trust-stat {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trust-stat-purple {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(15, 118, 110, 0.1));
    border: 1px solid rgba(20, 184, 166, 0.3);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.trust-stat-orange {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.trust-stat-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.trust-stat-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: rotate 30s linear infinite;
}

.trust-stat-bg-green {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.trust-stat-bg-purple {
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
}

.trust-stat-bg-orange {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
}

.trust-stat-bg-blue {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotate 22s linear infinite reverse;
}

.trust-number {
    color: #10b981;
    text-shadow: 0 4px 8px rgba(16, 185, 129, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    font-size: 3.5rem;
}

.trust-number-purple {
    color: #14b8a6;
    text-shadow: 0 4px 8px rgba(20, 184, 166, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trust-number-orange {
    color: #fbbf24;
    text-shadow: 0 4px 8px rgba(251, 191, 36, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trust-number-blue {
    color: #3b82f6;
    text-shadow: 0 4px 8px rgba(59, 130, 246, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trust-label {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.trust-icon {
    margin-top: 1rem;
}

.trust-icon i {
    color: #10b981;
    font-size: 1.5rem;
    opacity: 0.8;
}

.trust-icon-purple i {
    color: #14b8a6;
}

.trust-icon-orange i {
    color: #fbbf24;
}

.trust-icon-blue i {
    color: #3b82f6;
}


/* Pricing Section Styles */

.pricing-section {
    padding: 8rem 0;
    background: var(--light-color);
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--secondary-color);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark-color);
}

.pricing-features i {
    color: var(--success-color);
    font-size: 1.1rem;
}


/* CTA Section Styles */

.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
}

.cta-bg-circle {
    position: absolute;
    border-radius: 50%;
    animation: ctaFloat 10s ease-in-out infinite;
}

.cta-bg-circle-1 {
    top: 15%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.15);
}

.cta-bg-circle-2 {
    top: 25%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.12);
    animation: ctaFloat 8s ease-in-out infinite reverse;
}

.cta-bg-circle-3 {
    bottom: 20%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: rgba(20, 184, 166, 0.1);
    animation: ctaFloat 12s ease-in-out infinite;
}

.cta-bg-circle-4 {
    bottom: 30%;
    right: 5%;
    width: 70px;
    height: 70px;
    background: rgba(245, 158, 11, 0.1);
    animation: ctaFloat 9s ease-in-out infinite reverse;
}

.cta-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
}

.cta-grid-pattern-bg {
    background-image: linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    width: 100%;
    height: 100%;
}

.cta-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaGlow 6s ease-in-out infinite;
}

.cta-enterprise-badge {
    margin-bottom: 3rem;
}

.cta-badge-content {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    display: inline-flex;
    align-items: center;
    animation: pulse 3s ease-in-out infinite;
}

.cta-badge-icon {
    margin-right: 1rem;
    animation: flame 2s ease-in-out infinite alternate;
}

.cta-headline {
    font-size: 50px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.cta-headline-gradient {
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.cta-headline-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 3px;
}

.cta-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    margin-bottom: 4rem;
}

.cta-stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease;
}

.cta-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-stat-number-purple {
    color: #14b8a6;
}

.cta-stat-number-orange {
    color: #fbbf24;
}

.cta-stat-number-blue {
    color: #3b82f6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-btn-secondary {
    background: #ffffff;
    color: #1e293b;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
    border: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    color: #1e293b;
    text-decoration: none;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    border: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
    color: #ffffff;
    text-decoration: none;
}

.cta-btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.cta-btn-icon {
    margin-right: 0.75rem;
    font-size: 1.3rem;
}

.cta-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn-secondary:hover .cta-btn-shine {
    left: 100%;
}

.cta-sla-guarantee {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-sla-title {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-sla-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.cta-sla-icon {
    color: #10b981;
    font-size: 1.5rem;
}

.cta-sla-item {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-sla-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.cta-sla-title strong {
    color: #10b981;
}

.cta-floating-icons {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 1;
}

.cta-floating-icon {
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    animation: ctaFloat 5s ease-in-out infinite;
}

.cta-floating-icon-reverse {
    animation: ctaFloat 6s ease-in-out infinite reverse;
}

.cta-floating-icon-7s {
    animation: ctaFloat 7s ease-in-out infinite;
}

.cta-floating-icon-5-5s {
    animation: ctaFloat 5.5s ease-in-out infinite reverse;
}

.cta-floating-icon-6-5s {
    animation: ctaFloat 6.5s ease-in-out infinite;
}


/* Inquiry Form Section Styles */

.inquiry-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
}

.badge-gradient-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    font-size: 1rem;
    font-weight: 600;
}

.inquiry-form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.inquiry-form-card .form-group {
    margin-bottom: 1.5rem;
}

.inquiry-form-card label {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.inquiry-form-card .form-control {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.inquiry-form-card .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.inquiry-form-card .form-control::placeholder {
    color: #94a3b8;
}

.inquiry-form-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.inquiry-form-card .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.inquiry-form-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}


/* Technology Stack Section Styles */

.tech-stack-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
}

.tech-stack-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.tech-stack-grid-pattern {
    background-image: linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    width: 100%;
    height: 100%;
}

.badge-gradient-info {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gradient-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.4);
}

.tech-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.tech-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tech-icon-cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.tech-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.tech-icon-purple {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.tech-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.tech-icon-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.tech-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.tech-icon i {
    color: white;
    font-size: 2rem;
}

.tech-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.tech-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    flex: 1;
    margin-bottom: 1.5rem;
}

.tech-features {
    margin-top: auto;
    flex-shrink: 0;
}

.tech-feature-tag {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.25rem;
    display: inline-block;
}

.tech-feature-tag-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.tech-feature-tag-purple {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.tech-feature-tag-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.tech-feature-tag-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.tech-feature-tag-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}


/* Compliance & Security Section Styles */

.compliance-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
}

.compliance-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.compliance-grid-pattern {
    background-image: linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    width: 100%;
    height: 100%;
}

.badge-gradient-success {
    background: linear-gradient(135deg, #10b981, #059669);
    font-size: 1rem;
    font-weight: 600;
}

.compliance-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.compliance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.compliance-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.compliance-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.compliance-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.compliance-icon-purple {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.compliance-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.compliance-icon i {
    color: white;
    font-size: 2rem;
}

.compliance-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.compliance-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex: 1;
    margin-bottom: 1.5rem;
}

.compliance-features {
    text-align: center;
    margin-top: auto;
    flex-shrink: 0;
}

.compliance-feature-tag {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.25rem;
    display: inline-block;
}

.compliance-feature-tag-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.compliance-feature-tag-purple {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.compliance-feature-tag-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}


/* Resellers Section Styles */

.resellers-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
}

.resellers-filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.resellers-filter-label {
    color: #1e293b;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.resellers-filter-select {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
    min-width: 200px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.resellers-filter-select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.resellers-filter-select:hover {
    border-color: #10b981;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.reseller-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.reseller-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6, #14b8a6, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.reseller-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.reseller-header {
    text-align: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.reseller-country-flag {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.reseller-card:hover .reseller-country-flag {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.reseller-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.reseller-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.reseller-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.reseller-icon-purple {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.reseller-icon i {
    color: white;
    font-size: 2rem;
}

.reseller-card h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.reseller-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.reseller-company {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.reseller-company-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.reseller-company-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.reseller-card:hover .reseller-company-icon {
    transform: scale(1.1);
}

.reseller-company-info h5 {
    color: #1e293b;
    font-weight: 700;
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
}

.reseller-company-info p {
    color: #64748b;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
}

.reseller-quote {
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #f59e0b;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.reseller-quote-green {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: #10b981;
}

.reseller-quote-purple {
    background: rgba(20, 184, 166, 0.1);
    border-left-color: #14b8a6;
}

.reseller-quote p {
    color: #1e293b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.reseller-card:hover .reseller-quote {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.reseller-card p {
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.reseller-stats {
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.reseller-stats .row {
    margin: 0;
}

.reseller-stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.reseller-stat-item-green {
    background: rgba(16, 185, 129, 0.1);
}

.reseller-stat-item-purple {
    background: rgba(20, 184, 166, 0.1);
}

.reseller-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.reseller-stat-number-green {
    color: #10b981;
}

.reseller-stat-number-purple {
    color: #14b8a6;
}

.reseller-stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    line-height: 1.2;
}

.reseller-card:hover .reseller-stat-item {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.reseller-contact {
    text-align: center;
    margin-top: 1rem;
    flex-shrink: 0;
}

.reseller-contact a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(245, 158, 11, 0.1);
    font-size: 0.9rem;
}

.reseller-contact a:hover {
    color: #d97706;
    background: rgba(245, 158, 11, 0.2);
    transform: translateY(-1px);
}

.reseller-contact-green a {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.reseller-contact-green a:hover {
    color: #059669;
    background: rgba(16, 185, 129, 0.2);
}

.reseller-contact-purple a {
    color: #14b8a6;
    background: rgba(20, 184, 166, 0.1);
}

.reseller-contact-purple a:hover {
    color: #0f766e;
    background: rgba(20, 184, 166, 0.2);
}

.reseller-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.reseller-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-color);
}

.reseller-features i {
    color: var(--success-color);
    font-size: 1rem;
}

.reseller-network-stats {
    margin-top: 4rem;
}

.reseller-network-stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reseller-network-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.reseller-network-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.reseller-network-stat-number-green {
    color: #10b981;
}

.reseller-network-stat-number-purple {
    color: #14b8a6;
}

.reseller-network-stat-number-orange {
    color: #f59e0b;
}

.reseller-network-stat-number-blue {
    color: #3b82f6;
}

.reseller-network-stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    line-height: 1.2;
}


/* Responsive Design for Resellers Section */

@media (max-width: 768px) {
    .resellers-section {
        padding: 4rem 0;
    }
    .resellers-filter-container {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    .resellers-filter-select {
        min-width: 100%;
        max-width: 300px;
    }
    .reseller-card {
        min-height: 500px;
        padding: 2rem;
    }
    .reseller-country-flag {
        width: 60px;
        height: 60px;
    }
    .reseller-country-flag i {
        font-size: 1.5rem !important;
    }
    .reseller-card h4 {
        font-size: 1.1rem;
    }
    .reseller-company-icon {
        width: 50px;
        height: 50px;
    }
    .reseller-company-icon i {
        font-size: 1.2rem !important;
    }
    .reseller-company-info h5 {
        font-size: 1rem;
    }
    .reseller-quote {
        padding: 1rem;
    }
    .reseller-quote p {
        font-size: 0.9rem;
    }
    .reseller-stat-number {
        font-size: 1.3rem;
    }
    .reseller-stat-label {
        font-size: 0.7rem;
    }
    .reseller-network-stat-card {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }
    .reseller-network-stat-number {
        font-size: 2rem;
    }
    .reseller-network-stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .resellers-section {
        padding: 3rem 0;
    }
    .reseller-card {
        min-height: 450px;
        padding: 1.5rem;
    }
    .reseller-country-flag {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    .reseller-country-flag i {
        font-size: 1.2rem !important;
    }
    .reseller-card h4 {
        font-size: 1rem;
    }
    .reseller-card p {
        font-size: 0.9rem;
    }
    .reseller-company-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .reseller-company-icon {
        width: 45px;
        height: 45px;
    }
    .reseller-company-icon i {
        font-size: 1.1rem !important;
    }
    .reseller-quote {
        padding: 0.75rem;
    }
    .reseller-quote p {
        font-size: 0.85rem;
    }
    .reseller-stat-item {
        padding: 0.75rem;
    }
    .reseller-stat-number {
        font-size: 1.2rem;
    }
    .reseller-stat-label {
        font-size: 0.65rem;
    }
    .reseller-contact a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .reseller-network-stat-card {
        padding: 1rem 0.5rem;
        min-height: 80px;
    }
    .reseller-network-stat-number {
        font-size: 1.8rem;
    }
    .reseller-network-stat-label {
        font-size: 0.8rem;
    }
}


/* Footer Section Styles */

.footer-section {
    color: white;
    padding: 4rem 0 2rem;
}


/* Enhanced Footer Styles */

.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer .row {
    align-items: stretch;
}


/* Enhanced Footer Column Balance */

.footer-section {
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.footer-links {
    flex-grow: 1;
}

.footer-title {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
    padding-bottom: 0.5rem;
}

.footer .col-lg-4 .footer-title {
    border-bottom: 2px solid rgba(16, 185, 129, 0.5);
}

.footer .col-lg-4 .dj-footer-description {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.footer .col-lg-4 .dj-social-links {
    margin-top: auto;
}

.footer-section {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0.75rem 0;
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.4rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    border-radius: 1px;
}

.dj-footer-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 280px;
    font-weight: 400;
}

.dj-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    margin-bottom: 0.5rem;
}

.dj-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-right: 0;
}

.dj-social-link:hover {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    border-color: rgba(16, 185, 129, 0.3);
}

.dj-social-link i {
    transition: transform 0.3s ease;
}

.dj-social-link:hover i {
    transform: scale(1.2);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
    font-weight: 600;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}


/* Responsive Footer Styles */

@media (max-width: 768px) {
    .footer {
        padding: 3.5rem 0 1.5rem;
    }
    .footer .row {
        gap: 1.25rem;
        align-items: flex-start;
    }
    .footer-section {
        padding: 0.75rem 0;
    }
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .footer-title i {
        font-size: 0.9rem;
    }
    .dj-footer-description {
        font-size: 0.85rem;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    .dj-social-links {
        gap: 0.5rem;
        margin-bottom: 0.25rem;
    }
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    .footer-links a {
        font-size: 0.8rem;
    }
    .dj-social-link {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    .footer .row {
        gap: 1.25rem;
    }
    .footer-section {
        padding: 0.5rem 0;
    }
    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    .footer-title i {
        font-size: 0.85rem;
    }
    .dj-footer-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    .dj-social-links {
        gap: 0.4rem;
        margin-bottom: 0.25rem;
    }
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    .footer-links a {
        font-size: 0.75rem;
    }
    .dj-social-link {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    .footer-bottom p {
        font-size: 0.75rem;
    }
}


/* Responsive Design */

@media (max-width: 768px) {
    .navbar-fixed-top {
        padding: 0.8rem 0;
    }
    .navbar-brand-custom {
        font-size: 1.4rem;
    }
    .navbar-nav-custom {
        gap: 0;
        align-items: stretch;
        padding-top: 1rem;
    }
    .nav-item {
        margin-bottom: 0.8rem;
    }
    .nav-link-custom {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 0.5rem;
        text-align: center;
        transition: all 0.3s ease;
    }
    .nav-link-custom:hover {
        background: rgba(16, 185, 129, 0.15);
        transform: translateY(0);
    }
    .btn-demo-custom {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    .navbar-collapse.show {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
    }
}

.hero-headline {
    font-size: 2.5rem !important;
}

.hero-section .col-lg-6:last-child {
    margin-top: 3rem;
}

.trust-stat {
    margin-bottom: 1rem;
}

.module-card,
.api-card,
.tech-card,
.compliance-card,
.reseller-card {
    margin-bottom: 1rem;
}

.module-card {
    min-height: 400px;
}

.module-description {
    min-height: 50px;
    max-height: 70px;
}

.cta-buttons {
    flex-direction: column;
}

.cta-buttons a {
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

@media (max-width: 576px) {
    .navbar-fixed-top {
        padding: 0.6rem 0;
    }
    .navbar-brand-custom {
        font-size: 1.2rem;
    }
    .navbar-brand-icon {
        font-size: 1.4rem;
        margin-right: 0.4rem;
    }
    .navbar-toggler-custom {
        padding: 0.4rem;
        border-radius: 6px;
    }
    .navbar-toggler-icon {
        width: 22px;
    }
    .navbar-toggler-icon::before {
        top: -6px;
    }
    .navbar-toggler-icon::after {
        top: 6px;
    }
    .nav-link-custom {
        font-size: 0.85rem;
        padding: 0.7rem 0.8rem;
    }
    .btn-demo-custom {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
    .navbar-collapse.show {
        margin-top: 0.8rem;
        padding: 1.2rem;
    }
    .hero-headline {
        font-size: 2rem !important;
    }
    .section-title {
        font-size: 2rem !important;
    }
    .cta-headline {
        font-size: 2.5rem !important;
    }
    .pricing-card {
        margin-bottom: 2rem;
    }
    .stat-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    .module-stats {
        gap: 0.3rem;
    }
}


/* Module Cards with Inline Styles - Purple Theme */

.module-card-purple-inline {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.module-card-purple-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
    animation: rotate 31s linear infinite;
}

.module-card-purple-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.module-icon-wrapper-center {
    text-align: center;
}

.module-icon-purple-inline {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.module-icon-purple-inline i {
    color: white;
    font-size: 2rem;
}

.module-title-purple-inline {
    color: #1e293b;
    text-align: center;
}

.module-description-purple-inline {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex: 1;
}

.module-stats-center {
    text-align: center;
}

.stat-badge-purple-inline {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.25rem;
}


/* Module Cards with Inline Styles - Orange Theme */

.module-card-orange-inline {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.module-card-orange-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    animation: rotate 27s linear infinite reverse;
}

.module-icon-orange-inline {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.module-icon-orange-inline i {
    color: white;
    font-size: 2rem;
}

.module-title-orange-inline {
    color: #1e293b;
    text-align: center;
}

.module-description-orange-inline {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex: 1;
}

.stat-badge-orange-inline {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.25rem;
}


/* Module Cards with Inline Styles - Blue Theme */

.module-card-blue-inline {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.module-card-blue-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotate 33s linear infinite;
}

.module-icon-blue-inline {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.module-icon-blue-inline i {
    color: white;
    font-size: 2rem;
}

.module-title-blue-inline {
    color: #1e293b;
    text-align: center;
}

.module-description-blue-inline {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex: 1;
}

.stat-badge-blue-inline {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.25rem;
}


/* Module Cards with Inline Styles - Green Theme */

.module-card-green-inline {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.module-card-green-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    animation: rotate 24s linear infinite reverse;
}

.module-icon-green-inline {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.module-icon-green-inline i {
    color: white;
    font-size: 2rem;
}

.module-title-green-inline {
    color: #1e293b;
    text-align: center;
}

.module-description-green-inline {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex: 1;
}

.stat-badge-green-inline {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.25rem;
}


/* Module Cards with Inline Styles - Purple Theme (Second) */

.module-card-purple-inline-2 {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.module-card-purple-glow-2 {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.module-icon-purple-inline-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.module-icon-purple-inline-2 i {
    color: white;
    font-size: 2rem;
}

.module-title-purple-inline-2 {
    color: #1e293b;
    text-align: center;
}

.module-description-purple-inline-2 {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex: 1;
}

.stat-badge-purple-inline-2 {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.25rem;
}


/* Module Cards with Inline Styles - Blue Theme (Second) */

.module-card-blue-inline-2 {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.module-card-blue-glow-2 {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotate 28s linear infinite reverse;
}

.module-icon-blue-inline-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.module-icon-blue-inline-2 i {
    color: white;
    font-size: 2rem;
}

.module-title-blue-inline-2 {
    color: #1e293b;
    text-align: center;
}

.module-description-blue-inline-2 {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex: 1;
}

.stat-badge-blue-inline-2 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.25rem;
}


/* API Cards with Inline Styles - Blue Theme */

.api-card-blue-inline {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.api-card-blue-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite reverse;
}

.api-card-blue-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.api-icon-blue-inline {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.api-icon-blue-inline i {
    color: white;
    font-size: 2rem;
}

.api-card-blue-title {
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.api-card-blue-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex: 1;
}

.api-feature-tags-center {
    text-align: center;
    margin-top: 1.5rem;
}

.api-feature-tag-blue-inline {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.25rem;
}


/* API Cards with Inline Styles - Purple Theme */

.api-card-purple-inline {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.api-card-purple-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
    animation: rotate 28s linear infinite;
}

.api-icon-purple-inline {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.api-icon-purple-inline i {
    color: white;
    font-size: 2rem;
}

.api-card-purple-title {
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.api-card-purple-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex: 1;
}

.api-feature-tag-purple-inline {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.25rem;
}


/* API Cards with Inline Styles - Red Theme */

.api-card-red-inline {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.api-card-red-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
    animation: rotate 32s linear infinite reverse;
}

.api-icon-red-inline {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.api-icon-red-inline i {
    color: white;
    font-size: 2rem;
}

.api-card-red-title {
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.api-card-red-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex: 1;
}

.api-feature-tag-red-inline {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.25rem;
}


/* Testimonials Section with Inline Styles */

.testimonial-author-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar-img {
    width: 70px;
    height: 70px;
}

.testimonial-author-name {
    color: #1e293b;
    font-size: 1.1rem;
}

.testimonial-author-title {
    color: #64748b;
    font-weight: 600;
}

.testimonial-author-company {
    color: #64748b;
}

.company-badge-green-inline {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}


/* Trust Indicators with Inline Styles */

.trust-stat-green-inline {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trust-stat-green-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.trust-stat-green-content {
    position: relative;
    z-index: 2;
}

.trust-number-green-inline {
    color: #10b981;
    text-shadow: 0 4px 8px rgba(16, 185, 129, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    font-size: 3.5rem;
}

.trust-label-green-inline {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.trust-icon-green-inline {
    margin-top: 1rem;
}

.trust-icon-green-inline i {
    color: #10b981;
    font-size: 1.5rem;
    opacity: 0.8;
}


/* Technology Stack Cards with Inline Styles */

.tech-card-purple-inline {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    text-align: center;
}

.tech-icon-purple-inline {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tech-icon-purple-inline i {
    color: white;
    font-size: 2rem;
}

.tech-card-purple-title {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.tech-card-purple-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.tech-features-purple {
    margin-top: 1.5rem;
}

.tech-feature-tag-purple-inline {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.25rem;
}


/* Technology Stack Cards - Green Theme */

.tech-card-green-inline {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    text-align: center;
}

.tech-icon-green-inline {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tech-icon-green-inline i {
    color: white;
    font-size: 2rem;
}

.tech-card-green-title {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.tech-card-green-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.tech-feature-tag-green-inline {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.25rem;
}


/* Technology Stack Cards - Orange Theme */

.tech-card-orange-inline {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    text-align: center;
}

.tech-icon-orange-inline {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tech-icon-orange-inline i {
    color: white;
    font-size: 2rem;
}

.tech-card-orange-title {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.tech-card-orange-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.tech-feature-tag-orange-inline {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.25rem;
}


/* Compliance Section with Inline Styles */

.compliance-section-inline {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
}

.compliance-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.compliance-bg-circle-1 {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.compliance-bg-circle-2 {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.compliance-bg-circle-3 {
    position: absolute;
    bottom: 30%;
    left: 20%;
    width: 120px;
    height: 120px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    animation: float 9s ease-in-out infinite;
}

.compliance-badge-green-inline {
    background: linear-gradient(135deg, #10b981, #059669);
    font-size: 1rem;
    font-weight: 600;
}

.compliance-card-inline {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.compliance-icon-green-inline {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.compliance-icon-green-inline i {
    color: white;
    font-size: 2rem;
}

.compliance-card-green-title {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
}

.compliance-card-green-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
}

.compliance-feature-tag-green-inline {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.compliance-icon-blue-inline {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.compliance-icon-blue-inline i {
    color: white;
    font-size: 2rem;
}

.compliance-card-blue-title {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
}

.compliance-card-blue-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
}

.compliance-feature-tag-blue-inline {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.compliance-icon-purple-inline {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.compliance-icon-purple-inline i {
    color: white;
    font-size: 2rem;
}

.compliance-card-purple-title {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
}

.compliance-card-purple-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
}

.compliance-feature-tag-purple-inline {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}


/* Security Features Grid */

.security-feature-inline {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.security-feature-icon-green {
    color: #10b981;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.security-feature-icon-blue {
    color: #3b82f6;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.security-feature-icon-purple {
    color: #14b8a6;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.security-feature-icon-orange {
    color: #f59e0b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.security-feature-title {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.security-feature-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}


/* Resellers Section with Inline Styles */

.reseller-country-flag-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.reseller-country-flag-blue i {
    color: white;
    font-size: 2rem;
}

.reseller-country-flag-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.reseller-country-flag-green i {
    color: white;
    font-size: 2rem;
}

.reseller-country-flag-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.reseller-country-flag-red i {
    color: white;
    font-size: 2rem;
}

.reseller-company-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.reseller-company-icon-orange i {
    color: white;
    font-size: 1.5rem;
}

.reseller-company-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.reseller-company-icon-green i {
    color: white;
    font-size: 1.5rem;
}

.reseller-company-icon-purple {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.reseller-company-icon-purple i {
    color: white;
    font-size: 1.5rem;
}

.reseller-company-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.reseller-company-icon-blue i {
    color: white;
    font-size: 1.5rem;
}


/* Testimonials Section with Inline Styles */

.testimonial-strong-green {
    color: #10b981;
}

.testimonial-strong-purple {
    color: #14b8a6;
}

.testimonial-strong-blue {
    color: #3b82f6;
}

.metric-number-purple {
    color: #14b8a6;
}

.metric-number-blue {
    color: #3b82f6;
}


/* Trust Indicators Section with Inline Styles */

.trust-stat-content-relative {
    position: relative;
    z-index: 2;
}


/* CTA Section with Inline Styles */

.cta-container-relative {
    position: relative;
    z-index: 2;
}

.cta-strong-green {
    color: #10b981;
}


/* Compliance Section with Inline Styles */

.compliance-section-title-white {
    color: white;
    line-height: 1.2;
}

.compliance-section-title-gradient {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.compliance-section-subtitle-white {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.compliance-feature-tag-center {
    text-align: center;
    margin-top: 1.5rem;
}


/* Quick Links Section */

.quick-links-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.quick-links-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 50%, rgba(20, 184, 166, 0.1) 100%);
    pointer-events: none;
}

.quick-links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.quick-link-card {
    display: block;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 21px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quick-link-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #3b82f6, #14b8a6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.quick-link-card:hover::before {
    left: 100%;
}

.quick-link-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
}

.quick-link-card:hover::after {
    opacity: 1;
}

.quick-link-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.25);
    position: relative;
}

.quick-link-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #10b981, #3b82f6, #14b8a6);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 30px rgba(20, 184, 166, 0.4);
}

.quick-link-card:hover .quick-link-icon::before {
    opacity: 1;
}

.quick-link-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.025em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.quick-link-card:hover h4 {
    color: #f8fafc;
}

.quick-link-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.quick-link-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}


/* Responsive adjustments for quick links */

@media (max-width: 768px) {
    .quick-links-section {
        padding: 4rem 0;
    }
    .quick-link-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    .quick-link-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        border-radius: 15px;
    }
    .quick-link-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    .quick-link-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .quick-links-section {
        padding: 3rem 0;
    }
    .quick-link-card {
        padding: 1.8rem 1.3rem;
        margin-bottom: 1.2rem;
    }
    .quick-link-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        border-radius: 14px;
        margin-bottom: 1.2rem;
    }
    .quick-link-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }
    .quick-link-card p {
        font-size: 0.85rem;
    }
}


/* Contact Section Styles */

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-bg-circle-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.contact-bg-circle-2 {
    position: absolute;
    top: 60%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.contact-bg-circle-3 {
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
}


/* Contact Info Card */

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.contact-info-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.contact-info-icon-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.contact-info-icon-success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.contact-info-icon-info {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.contact-info-icon-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.contact-info-content h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-info-content p {
    color: #cbd5e1;
    margin: 0;
    font-size: 14px;
}


/* Contact Trust Indicators */

.contact-trust-indicators {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.contact-trust-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

.contact-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-trust-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}


/* Demo Request Card */

.demo-request-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.demo-request-header {
    text-align: center;
}

.demo-request-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 15px;
}

.demo-request-subtitle {
    color: #cbd5e1;
    font-size: 16px;
    margin: 0;
}


/* Demo Request Form */

.demo-request-form .form-group {
    margin-bottom: 0;
}

.demo-request-form .form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.demo-request-form .form-label.required::after {
    content: ' *';
    color: #ef4444;
}

.demo-request-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.demo-request-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.demo-request-form .form-control::placeholder {
    color: #94a3b8;
}

.demo-request-form .form-control.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}


/* Demo Preferences */

.demo-preferences {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-preferences-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

.demo-preferences .form-check {
    margin-bottom: 10px;
}

.demo-preferences .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
}

.demo-preferences .form-check-input:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.demo-preferences .form-check-label {
    color: #e2e8f0;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
}


/* Demo Submit Button */

.demo-submit-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demo-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.demo-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.demo-submit-btn:hover::before {
    left: 100%;
}

.demo-guarantee {
    color: #cbd5e1;
    font-size: 14px;
    margin: 0;
}


/* Contact Methods */

.contact-methods-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.contact-methods-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 24px;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.contact-method-icon-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.contact-method-icon-success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.contact-method-icon-info {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.contact-method-icon-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.contact-method-card h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-method-card p {
    color: #cbd5e1;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-method-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.contact-method-link:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}


/* Global Presence */

.global-presence {
    text-align: center;
    position: relative;
    z-index: 2;
}

.global-presence-header {
    margin-bottom: 40px;
}

.global-presence-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 15px;
}

.global-presence-subtitle {
    color: #cbd5e1;
    font-size: 16px;
    margin: 0;
}

.global-presence-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.global-presence-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.global-presence-number {
    color: #3b82f6;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.global-presence-label {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
}


/* Responsive Design for Contact */

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    .contact-info-card,
    .demo-request-card {
        margin-bottom: 30px;
    }
    .demo-preferences .row {
        flex-direction: column;
    }
    .demo-preferences .col-md-6 {
        width: 100%;
    }
    .global-presence-stat {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .contact-info-card,
    .demo-request-card,
    .contact-methods-card {
        padding: 20px;
    }
    .demo-request-title {
        font-size: 24px;
    }
    .global-presence-title {
        font-size: 24px;
    }
    .global-presence-number {
        font-size: 28px;
    }
}


/* ===========================================
   ENHANCED HEADER NAVIGATION STYLES
   =========================================== */


/* Mega Menu Dropdowns */

.dropdown-menu-mega {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    margin-top: 0.5rem;
    min-width: 250px;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #334155;
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    margin-right: 0.75rem;
    width: 20px;
    opacity: 0.7;
}

.dropdown-item:hover i {
    opacity: 1;
}


/* Search Functionality */

.nav-search {
    position: relative;
}

.nav-search-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-search-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-search-input {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 14px;
    transition: border-color 0.3s ease;
    width: 100%;
}

.nav-search-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}


/* Language Selector */

.nav-language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-language-selector:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
}

.nav-language-text {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
}


/* Right Side Navigation */

.navbar-nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* Newsletter Footer Styles */

.footer-newsletter {
    margin-bottom: 1.5rem;
}

.footer-newsletter-title {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-newsletter-input:focus {
    border-color: #10b981;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-input.is-invalid {
    border-color: #ef4444;
    animation: shake 0.5s ease;
}

.footer-newsletter-btn {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    transition: all 0.3s ease;
}

.footer-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.footer-newsletter-disclaimer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.4;
}


/* Certification Badges */

.footer-certifications {
    margin-top: 1.5rem;
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.certification-badge:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    transform: translateY(-1px);
}

.certification-badge i {
    color: #10b981;
}


/* Awards Section */

.footer-awards {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-awards-title {
    color: #10b981;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-award {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-award:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    transform: translateY(-3px);
}

.footer-award-icon {
    color: #10b981;
    font-size: 1.5rem;
}

.footer-award-text {
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}


/* Footer Status Links */

.footer-meta-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-status-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-status-link:hover {
    color: #059669;
    text-decoration: none;
}

.footer-uptime {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.footer-powered {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 0.25rem;
}


/* Live Chat Widget */

.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-widget-trigger {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.chat-widget-trigger:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6);
}

.chat-widget-trigger.pulse {
    animation: chatPulse 2s infinite;
}

.chat-widget-icon {
    color: white;
    font-size: 24px;
}

.chat-widget-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid white;
}

.chat-badge-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin: 3px auto;
    animation: chatBlink 1.5s infinite;
}

.chat-widget-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.chat-widget-trigger:hover .chat-widget-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.chat-widget-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    max-height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
}

.chat-widget-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-widget-header {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 1rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-agent-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-agent-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-status-online {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 2px solid white;
    border-radius: 50%;
}

.chat-agent-details h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.chat-agent-details p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.chat-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-widget-body {
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.chat-welcome-message {
    margin-bottom: 1rem;
}

.chat-welcome-message p {
    margin: 0 0 0.5rem 0;
    font-size: 14px;
    color: #334155;
    line-height: 1.4;
}

.chat-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chat-quick-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.chat-quick-btn:hover {
    background: #f8fafc;
    border-color: #2563eb;
    color: #2563eb;
    transform: translateX(5px);
}

.chat-widget-footer {
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
}

.chat-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.chat-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.chat-input:focus {
    border-color: #2563eb;
    outline: none;
}

.chat-send-btn {
    padding: 0.75rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chat-send-btn:hover {
    background: #1d4ed8;
}

.chat-footer-text {
    font-size: 12px;
    color: #64748b;
    text-align: center;
    margin: 0;
}

.chat-footer-text a {
    color: #2563eb;
    text-decoration: none;
}

.chat-footer-text a:hover {
    text-decoration: underline;
}


/* Animations */

@keyframes chatPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes chatBlink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}


/* Enhanced Mobile Responsive */

@media (max-width: 768px) {
    .chat-widget-panel {
        width: 300px;
        bottom: 80px;
        right: 10px;
    }
    .nav-search-dropdown {
        min-width: 250px;
        right: -50px;
    }
    .footer-meta-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .certification-badges {
        justify-content: center;
    }
    .navbar-nav-right {
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
        margin-top: 1rem;
    }
    .nav-search-dropdown {
        position: relative;
        width: 100%;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .dropdown-menu-mega {
        position: relative !important;
        transform: none !important;
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.1);
    }
    .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
    }
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }
    /* Enhanced Footer Mobile */
    .footer .row {
        row-gap: 2rem !important;
    }
    .footer-section {
        text-align: center;
    }
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }
    .footer-links li {
        margin-bottom: 0;
    }
    .dj-social-links {
        justify-content: center;
    }
    .footer-awards .row {
        row-gap: 1rem;
    }
    .footer-award {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .footer-section {
        padding: 0 0.5rem;
    }
    .footer-title {
        font-size: 16px;
        margin-bottom: 1rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-links a {
        padding: 0.5rem;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    .footer-links a:hover {
        background: rgba(16, 185, 129, 0.2);
        transform: translateY(-1px);
    }
    .dj-footer-description {
        font-size: 14px;
        line-height: 1.5;
    }
    .footer-awards-title {
        font-size: 14px;
    }
    .footer-award {
        padding: 0.75rem;
    }
    .footer-award-text {
        font-size: 12px;
    }
}