/* Global Styles */
:root {
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --accent-color: #8b5cf6;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --text-color: #374151;
    --gray-color: #6b7280;
    --card-bg: #ffffff;
    --gradient-primary: linear-gradient(135deg, #4f46e5, #6366f1);
    --gradient-secondary: linear-gradient(135deg, #10b981, #059669);
    --gradient-accent: linear-gradient(135deg, #8b5cf6, #6366f1);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-color: #e5e7eb;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #334155;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    padding: 12px 28px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.15);
    position: relative;
    overflow: hidden;
    border: none;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.25);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--gradient-secondary);
    border: none;
}

.btn-success:hover {
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
}

.btn-outline-light {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(99, 102, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

.section-title {
    margin-bottom: 50px;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    font-size: 2.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Header Styles */
.header {
    background: rgba(15, 23, 42, 0.92);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(15, 23, 42, 0.95);
}

.navbar-brand img {
    height: 40px;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 6px;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
    width: calc(100% - 24px);
}

.navbar-dark .navbar-nav .nav-link::after {
    display: none;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.login-btn, .signup-btn {
    margin-left: 10px;
    padding: 8px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    background: var(--dark-color);
    color: white;
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.4) 0%, rgba(16, 185, 129, 0.1) 100%);
    opacity: 0.4;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #f1f5f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 90%;
    font-weight: 400;
    color: #e2e8f0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    align-items: center;
}

.hero-buttons .btn {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 30px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%);
    border: none;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.hero-buttons .btn-outline-light {
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.shine-hover {
    transition: all 0.3s ease;
}

.shine-hover:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Hero Stats - Smaller and Side by Side */
.hero-stats-container {
    margin-top: 1.5rem;
}

.hero-stats {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: flex-start;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 4px 15px rgba(31, 38, 135, 0.1);
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.hero-stat:hover {
    transform: translateY(-3px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 20px rgba(31, 38, 135, 0.15);
}

.stat-icon-container {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.hero-stat:hover .stat-icon-container {
    transform: rotate(5deg) scale(1.1);
}

.stat-text {
    font-weight: 500;
    font-size: 0.875rem;
    white-space: nowrap;
    color: #121a32 !important;
}

@media (max-width: 767.98px) {
    .hero-stats {
        justify-content: center;
    }
    
    .hero-stat {
        padding: 0.375rem 0.75rem;
    }
    
    .stat-text {
        font-size: 0.75rem;
    }
    
    .stat-icon-container {
        width: 1.75rem;
        height: 1.75rem;
    }
}

.hero-image-container {
    max-height: 500px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.logo-img {
    max-height: 40px;
    width: auto;
}

.hero-wave {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: var(--light-color);
    position: relative;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 25px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    text-align: center;
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(79, 70, 229, 0.03), transparent);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 35px rgba(15, 23, 42, 0.08);
    border-color: rgba(79, 70, 229, 0.1);
}

.feature-card:hover::before {
    transform: translateY(-100%);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.gradient-icon {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.1);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

/* Products Section */
.products-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 10;
}

.product-badge-green {
    background: var(--secondary-color);
}

.product-stats {
    display: flex;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat {
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-size: 14px;
    color: var(--gray-color);
}

.stat i {
    margin-right: 5px;
    color: var(--primary-color);
}

.section-wave {
    position: relative;
    bottom: -5px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.product-title {
    padding: 25px 25px 10px;
    font-weight: 700;
    color: var(--dark-color);
}

.product-text {
    padding: 0 25px 25px;
    color: var(--gray-color);
}

/* Commission Section - Modern Redesign */
.commission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f1f4ff 100%);
    position: relative;
    overflow: hidden;
}

.commission-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(79, 70, 229, 0.05) 100%);
    top: -100px;
    left: -100px;
    z-index: 0;
}

.commission-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(79, 70, 229, 0.04) 100%);
    bottom: -200px;
    right: -200px;
    z-index: 0;
}

.text-gradient-primary {
    background: linear-gradient(90deg, #4f46e5, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.commission-card-wrapper {
    position: relative;
    z-index: 1;
    height: 100%;
    transition: transform 0.3s ease;
}

.commission-card-wrapper:hover {
    transform: translateY(-8px);
}

.commission-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.commission-card.featured {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1px solid rgba(79, 70, 229, 0.2);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.15);
}

.commission-card-wrapper:hover .commission-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
    z-index: 2;
}

.card-top {
    padding: 30px 30px 0;
    text-align: center;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.commission-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.icon-wrapper i {
    font-size: 30px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.pricing {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amount {
    font-size: 36px;
    font-weight: 800;
    color: #4f46e5;
    line-height: 1;
}

.period {
    font-size: 14px;
    color: #64748b;
    margin-top: 5px;
}

.card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.commission-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.commission-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #475569;
    font-size: 16px;
}

.commission-features li i {
    margin-right: 10px;
    font-size: 18px;
}

.btn-outline {
    color: #4f46e5;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(79, 70, 229, 0.1);
}

/* Modern Button Styles */
.btn-modern-primary {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    z-index: 1;
    text-decoration: none;
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
    color: white;
}

.btn-modern-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1, #818cf8);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-modern-primary:hover::before {
    opacity: 1;
}

.btn-modern-secondary {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    z-index: 1;
    text-decoration: none;
}

.btn-modern-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    color: white;
}

.btn-modern-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a78bfa, #c4b5fd);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-modern-secondary:hover::before {
    opacity: 1;
}

/* Button animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.commission-card.featured .btn-modern-secondary {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .commission-card.featured {
        transform: scale(1.03);
    }
}

@media (max-width: 767.98px) {
    .commission-section {
        padding: 70px 0;
    }
    
    .commission-card.featured {
        transform: scale(1);
    }
    
    .commission-card-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .card-top, .card-body {
        padding: 20px;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 24px;
    }
    
    .amount {
        font-size: 28px;
    }
    
    .card-title {
        font-size: 20px;
    }
}

/* Modern Component Styles - New Additions */
.card-hover-effect {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.card-hover-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 40%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.03) 60%, 
        rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform 1.5s ease;
}

.card-hover-effect:hover::after {
    transform: translateX(100%);
}

.card-hover-effect:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

/* Glass Card Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.glass-effect-dark {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Text Gradients */
.text-gradient-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-gradient-secondary {
    background: linear-gradient(90deg, var(--secondary-color), #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Animated Gradient Button */
.btn-gradient-animated {
    background-size: 200% auto;
    transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
    background-image: linear-gradient(45deg, 
        var(--primary-color) 0%, 
        var(--accent-color) 50%, 
        var(--primary-color) 100%);
}

.btn-gradient-animated:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

/* Floating Elements Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

.float-animation-delayed {
    animation: float 6s ease-in-out 2s infinite;
}

/* Border Gradient */
.border-gradient {
    position: relative;
    background: white;
    background-clip: padding-box;
    border: solid 2px transparent;
}

.border-gradient:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

/* Pulse Animation */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    80%, 100% {
        opacity: 0;
        transform: scale(2);
    }
}

.pulse-ring {
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    background: inherit;
    opacity: 0.5;
    z-index: -1;
}

/* Section Dividers */
.section-divider {
    position: relative;
    height: 100px;
    margin-top: -100px;
    z-index: 10;
}

.divider-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

/* Modern Form Styling */
.modern-form .form-control {
    border: none;
    border-bottom: 2px solid rgba(15, 23, 42, 0.1);
    border-radius: 0;
    padding: 1rem 0.5rem;
    background-color: transparent;
    transition: all 0.3s ease;
}

.modern-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    background-color: rgba(79, 70, 229, 0.03);
}

.modern-form .form-floating > label {
    color: #64748b;
    transition: all 0.3s ease;
}

.modern-form .form-control:focus ~ label,
.modern-form .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
    transform: scale(0.85) translateY(-1.5rem);
}

/* Stats Counter Modern Style */
.stat-counter {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-counter::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-counter:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-counter:hover::before {
    transform: scaleX(1);
}

.stat-counter .counter-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.stat-counter .counter-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.stat-counter .counter-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2.5rem;
    opacity: 0.1;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.stat-counter:hover .counter-icon {
    transform: scale(1.2) rotate(10deg);
    opacity: 0.15;
}

/* Modern Shadows */
.shadow-sm {
    box-shadow: 0 2px 5px rgba(15, 23, 42, 0.06);
}

.shadow-md {
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* Animation Utilities */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

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

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

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}

/* Remove the global section */
#global {
    display: none;
}

/* Additional custom styles */
.text-center.mb-10 {
    margin-top: 4rem !important;
}

/* Modern Marketing Section Styles */
.marketing-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

.header-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.marketing-tool {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.marketing-tool:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
}

.tool-icon-container {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.tool-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tool-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform 1s ease;
    z-index: -1;
}

.marketing-tool:hover .tool-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
}

.marketing-tool:hover .tool-icon-wrapper::after {
    transform: translateX(100%);
}

/* Animation effects */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 5s ease-in-out infinite;
}

.float-animation-delayed {
    animation: float 5s ease-in-out 2.5s infinite;
}

/* Glass effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    border-radius: 16px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .marketing-section {
        padding: 5rem 0;
    }
    
    .tool-icon-wrapper {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767.98px) {
    .marketing-section {
        padding: 4rem 0;
    }
    
    .marketing-tool {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .tool-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .tool-title {
        font-size: 1.1rem;
    }
}