<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Stable CSS Variables */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --danger-color: #ef4444;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --background-color: #f8fafc;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
    --backdrop-blur: blur(16px);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-info: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand .logo-link {
    display: inline-block;
    text-decoration: none;
}

.nav-brand .logo {
    height: 60px;
    width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-brand:hover .logo {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.language-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}



.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: #00BFA6;
}

.nav-link i {
    font-size: 1rem;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-link {
    padding: 0.25rem 0.5rem;
    text-decoration: none;
    color: #666;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.lang-link:hover,
.lang-link.active {
    background: #00BFA6;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Modern Gradient Classes */
.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-gradient-success {
    background: var(--gradient-success) !important;
}

.bg-gradient-warning {
    background: var(--gradient-warning) !important;
}

.bg-gradient-info {
    background: var(--gradient-info) !important;
}

.bg-purple {
    background-color: #6f42c1 !important;
}

.text-purple {
    color: #6f42c1 !important;
}

/* Modern Shadow Classes */
.shadow-2xl {
    box-shadow: var(--shadow-2xl) !important;
}

.backdrop-blur {
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
}

/* Clean Hero Section */
.hero-section {
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.stats-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

/* Fix Progress Bar Issues */
.stats-card .bg-light {
    position: relative !important;
    z-index: 1 !important;
    height: 6px !important;
    overflow: hidden !important;
}

.stats-card .bg-primary {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
    z-index: 2 !important;
    transition: width 0.3s ease !important;
}

/* Ensure text stays above progress bar */
.stats-card .text-start {
    position: relative !important;
    z-index: 10 !important;
}

.stats-card .d-flex {
    position: relative !important;
    z-index: 10 !important;
}

.trust-section .d-flex {
    transition: transform 0.2s ease;
}

.trust-section .d-flex:hover {
    transform: scale(1.05);
}

/* Clean Footer Styles */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
}

.footer-section h5 {
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffc107;
    margin-bottom: 1.5rem;
}

.footer-section h5 i {
    color: #ffc107;
}

.footer-link {
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    width: 100%;
}

.footer-link:hover {
    background-color: rgba(255, 193, 7, 0.1);
    transform: translateX(8px);
    color: #ffc107 !important;
}

.footer-link:hover i {
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.social-link {
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Horizontal Footer Links */
.footer-links-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
}

.footer-link-horizontal {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #e9ecef;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    white-space: nowrap;
}

.footer-link-horizontal:hover {
    background: rgba(255, 193, 7, 0.15);
    border-color: #ffc107;
    color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.footer-link-horizontal i {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-link-horizontal:hover i {
    transform: scale(1.1);
}

/* Simple Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;circle cx="25" cy="25" r="2" fill="white" opacity="0.3"/&gt;&lt;circle cx="75" cy="75" r="2" fill="white" opacity="0.3"/&gt;&lt;/svg&gt;') repeat;
    background-size: 50px 50px;
}

.hero-shapes {
    display: none; /* Disable complex shapes for hosting compatibility */
}

/* Simplified animations for hosting compatibility */
@keyframes simple-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Stable Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    color: white;
}

/* Simple Badge */
.hero-badge-modern {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.badge-glow {
    display: none; /* Disable for hosting compatibility */
}

.badge-content {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffd700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Simplified pulse animation */
@keyframes simple-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Dynamic Title */
.hero-title-modern {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    color: white;
    font-weight: 700;
}

/* Engaging Subtitle */
.hero-subtitle-modern {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

/* Key Features List */
.hero-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.1rem;
    margin-right: 0.75rem;
}

/* Modern CTA Buttons */
.hero-cta-modern {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-modern {
    position: relative;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    color: #1a1a1a;
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
}

.btn-shine {
    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;
}

.btn-primary-modern:hover .btn-shine {
    left: 100%;
}

/* Trust Indicators */
.hero-trust-indicators {
    margin-top: 2rem;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.trust-item i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

/* Modern Visual Content */
.hero-visual-modern {
    position: relative;
    z-index: 10;
}

.stats-cards-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

/* Stable Stats Card */
.main-stats-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    z-index: 5;
}

/* Fix Progress Bar Z-Index Issue */
.progress-bar-modern {
    position: relative;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
}

.progress-fill {
    position: relative;
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    transition: width 0.3s ease;
    z-index: 2 !important;
}

/* Ensure proper stacking */
.stats-progress {
    position: relative;
    z-index: 3;
}

.progress-item {
    position: relative;
    z-index: 4;
}

.main-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.stats-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.stats-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stats-info h6 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.stats-subtitle {
    font-size: 0.85rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.stats-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.status-text {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Stats Metrics */
.stats-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.metric-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.metric-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.metric-icon.bg-success {
    background: linear-gradient(135deg, #10b981, #059669);
}

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

.metric-icon.bg-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.metric-label {
    font-size: 0.85rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Stats Progress */
.stats-progress {
    margin-top: 1.5rem;
}

.progress-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.progress-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.progress-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #667eea;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.progress-bar-modern {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Simplified Achievement Cards for Hosting */
.achievement-cards {
    display: none; /* Disable complex floating cards for hosting compatibility */
}

/* Alternative simple notification cards */
.simple-achievement-cards {
    position: relative;
    margin-top: 2rem;
}

.simple-achievement-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.simple-achievement-card:hover {
    transform: translateY(-2px);
}

.simple-achievement-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.simple-achievement-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.simple-achievement-desc {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Modern Scroll Indicator */
.scroll-indicator-modern {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.scroll-mouse-modern {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
    animation: mouse-bounce 2s infinite;
}

.scroll-wheel-modern {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-scroll 2s infinite;
}

.scroll-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

@keyframes mouse-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

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

/* Clean Hero Responsive Design */
@media (max-width: 1199px) {
    .hero-section {
        padding: 120px 0 60px 0 !important;
    }

    .hero-content {
        padding-top: 50px !important;
    }

    .hero-content .mb-4 {
        margin-top: 25px !important;
    }

    .hero-content h1 {
        font-size: 3rem;
        margin-top: 20px !important;
    }

    .stats-card {
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 110px 0 50px 0 !important;
        text-align: center;
    }

    .hero-content {
        padding-top: 40px !important;
    }

    .hero-content .mb-4 {
        margin-top: 20px !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
        margin-top: 15px !important;
    }

    .hero-content .lead {
        text-align: center;
        font-size: 1.1rem;
    }

    .hero-content .d-flex {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .trust-section {
        text-align: center;
    }

    .trust-section .d-flex {
        justify-content: center;
    }

    .stats-card {
        margin-top: 2rem;
        max-width: 350px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0 50px 0 !important;
    }

    .hero-content {
        padding-top: 30px !important;
    }

    .hero-content .mb-4 {
        margin-top: 15px !important;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
        padding: 0 1rem;
        margin-top: 10px !important;
    }

    .hero-content .lead {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-content .btn {
        width: 100%;
        max-width: 280px;
    }

    .stats-card {
        margin: 2rem 1rem 0 1rem;
        padding: 1rem;
    }

    .stats-card .row .col-4 {
        margin-bottom: 1rem;
    }

    .stats-card .bg-light {
        padding: 0.75rem;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 90px 0 40px 0 !important;
    }

    .hero-content {
        padding-top: 20px !important;
    }

    .hero-content .mb-4 {
        margin-top: 10px !important;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        padding: 0 1rem;
        margin-top: 5px !important;
    }

    .hero-content .lead {
        font-size: 0.9rem;
        padding: 0 1.5rem;
    }

    .hero-content .badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .stats-card {
        padding: 0.75rem;
        margin: 1.5rem 0.5rem 0 0.5rem;
    }

    .stats-card .d-flex:first-child {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .stats-card .bg-primary {
        width: 35px;
        height: 35px;
    }

    .trust-section .d-flex {
        gap: 0.5rem;
        font-size: 0.8rem;
    }
}

/* Footer Responsive Design */
@media (max-width: 991px) {
    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-section h5 {
        text-align: center;
    }

    .contact-info {
        text-align: left;
        max-width: 300px;
        margin: 0 auto 1.5rem auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links-horizontal {
        justify-content: center;
        gap: 6px;
    }

    .footer-link-horizontal {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

@media (max-width: 767px) {
    .footer-section {
        margin-bottom: 2.5rem;
    }

    .footer-section h5 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .footer-link {
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .contact-info {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .contact-info .d-flex {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 35px !important;
        height: 35px !important;
    }

    .footer-links-horizontal {
        gap: 4px;
        justify-content: center;
    }

    .footer-link-horizontal {
        font-size: 0.75rem;
        padding: 4px 8px;
        margin-bottom: 6px;
    }
}

@media (max-width: 575px) {
    .footer-section h5 {
        font-size: 1.1rem;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 5px 8px;
    }

    .contact-info {
        padding: 0.5rem;
    }

    .contact-info .d-flex {
        font-size: 0.8rem;
    }

    .social-link {
        width: 32px !important;
        height: 32px !important;
    }

    .footer-links-horizontal {
        gap: 3px;
        flex-direction: column;
        align-items: center;
    }

    .footer-link-horizontal {
        font-size: 0.7rem;
        padding: 3px 6px;
        margin-bottom: 4px;
        width: auto;
        max-width: 200px;
        text-align: center;
    }
}

/* Stable Why Choose Us Section */
.stable-why-choose-section {
    padding: 80px 0;
}

.simple-section-badge {
    margin-bottom: 1.5rem;
}

.stable-section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.stable-section-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
}

.stable-features-grid {
    margin-top: 3rem;
}

.stable-feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.stable-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stable-feature-icon {
    margin-bottom: 1.5rem;
}

.stable-feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.stable-feature-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.stable-feature-badge {
    margin-top: auto;
}

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

.stable-trust-container {
    border: 1px solid rgba(0,0,0,0.05);
}

.stable-trust-item {
    padding: 1rem;
    transition: all 0.3s ease;
}

.stable-trust-item:hover {
    transform: translateY(-5px);
}

.stable-trust-item i {
    transition: all 0.3s ease;
}

.stable-trust-item:hover i {
    transform: scale(1.1);
}

/* Beautiful Free Tools Section */
.beautiful-tools-section {
    padding: 80px 0;
    position: relative;
}

.tools-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tools-badge {
    margin-bottom: 1.5rem;
}

.tools-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.tools-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
}

.beautiful-tools-grid {
    margin-top: 3rem;
}

/* Beautiful Tool Cards */
.beautiful-tool-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.beautiful-tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tool-card-wrapper {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Beautiful Icon */
.tool-icon-beautiful {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.icon-bg.bg-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

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

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

.icon-bg.bg-secondary {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

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

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

.tool-icon-beautiful i {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.icon-glow {
    display: none; /* Disable glow effects for hosting compatibility */
}

/* Specific Icon Colors for Better Contrast */
.icon-bg.bg-primary + i {
    color: #ffd700 !important; /* Golden yellow for primary */
}

.icon-bg.bg-info + i {
    color: #ffffff !important; /* Pure white for info */
}

.icon-bg.bg-warning + i {
    color: #1a1a1a !important; /* Dark for warning background */
}

.icon-bg.bg-secondary + i {
    color: #ffd700 !important; /* Golden for secondary */
}

.icon-bg.bg-success + i {
    color: #ffffff !important; /* White for success */
}

.icon-bg.bg-danger + i {
    color: #ffffff !important; /* White for danger */
}

/* Alternative approach - using CSS variables for icon colors */
.tool-icon-beautiful[data-color="primary"] i {
    color: #ffd700 !important;
}

.tool-icon-beautiful[data-color="info"] i {
    color: #ffffff !important;
}

.tool-icon-beautiful[data-color="warning"] i {
    color: #1a1a1a !important;
}

.tool-icon-beautiful[data-color="secondary"] i {
    color: #ffd700 !important;
}

.tool-icon-beautiful[data-color="success"] i {
    color: #ffffff !important;
}

.tool-icon-beautiful[data-color="danger"] i {
    color: #ffffff !important;
}

/* Direct Icon Color Overrides for Maximum Contrast */
.beautiful-tool-card .fa-calculator {
    color: #ffd700 !important; /* Golden for calculator */
}

.beautiful-tool-card .fa-font {
    color: #ffffff !important; /* White for font */
}

.beautiful-tool-card .fa-tags {
    color: #1a1a1a !important; /* Dark for tags on orange */
}

.beautiful-tool-card .fa-link {
    color: #ffd700 !important; /* Golden for link */
}

.beautiful-tool-card .fa-search {
    color: #ffffff !important; /* White for search */
}

.beautiful-tool-card .fa-book-reader {
    color: #ffffff !important; /* White for book reader */
}

/* Enhanced text shadow for all icons */
.beautiful-tool-card i {
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(0, 0, 0, 0.2) !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
}

/* Tool Content */
.tool-content-beautiful {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tool-badge-beautiful {
    text-align: center;
    margin-bottom: 1rem;
}

.tool-title-beautiful {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.tool-desc-beautiful {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Features */
.tool-features-beautiful {
    margin-bottom: 2rem;
}

.feature-beautiful {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #555;
}

.feature-beautiful i {
    font-size: 1rem;
    margin-right: 0.75rem;
    width: 20px;
}

/* Action Button */
.tool-action-beautiful {
    margin-top: auto;
    text-align: center;
}

.btn-beautiful {
    position: relative;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
    min-width: 140px;
}

.btn-primary-beautiful {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-info-beautiful {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-warning-beautiful {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-secondary-beautiful {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.btn-success-beautiful {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-danger-beautiful {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-beautiful:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-ripple {
    display: none; /* Disable ripple effects for hosting compatibility */
}

/* Tools CTA Section */
.tools-cta-section {
    margin-top: 4rem;
}

.cta-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Beautiful Tools Responsive Design */
@media (max-width: 1199px) {
    .tools-title {
        font-size: 2.5rem;
    }

    .tool-icon-beautiful {
        width: 70px;
        height: 70px;
    }

    .tool-icon-beautiful i {
        font-size: 1.8rem;
    }
}

@media (max-width: 991px) {
    .beautiful-tools-section {
        padding: 60px 0;
    }

    .tools-title {
        font-size: 2.25rem;
        text-align: center;
    }

    .tools-subtitle {
        text-align: center;
        font-size: 1rem;
    }

    .beautiful-tools-grid {
        margin-top: 2rem;
    }

    .tool-card-wrapper {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .beautiful-tools-section {
        padding: 50px 0;
    }

    .tools-title {
        font-size: 2rem;
    }

    .tools-subtitle {
        font-size: 0.95rem;
    }

    .beautiful-tool-card {
        margin-bottom: 1.5rem;
    }

    .tool-card-wrapper {
        padding: 1.25rem;
    }

    .tool-icon-beautiful {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .tool-icon-beautiful i {
        font-size: 1.5rem;
    }

    .tool-title-beautiful {
        font-size: 1.25rem;
    }

    .tool-desc-beautiful {
        font-size: 0.9rem;
    }

    .feature-beautiful {
        font-size: 0.85rem;
    }

    .btn-beautiful {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 120px;
    }

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

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-desc {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .tools-title {
        font-size: 1.75rem;
    }

    .tool-card-wrapper {
        padding: 1rem;
    }

    .tool-icon-beautiful {
        width: 50px;
        height: 50px;
    }

    .tool-icon-beautiful i {
        font-size: 1.25rem;
    }

    .tool-title-beautiful {
        font-size: 1.125rem;
    }

    .btn-beautiful {
        width: 100%;
        max-width: 200px;
    }

    .cta-card {
        padding: 1.5rem 1rem !important;
    }

    .cta-title {
        font-size: 1.25rem;
    }
}

/* Stable Design Responsive Styles */
@media (max-width: 1199px) {
    .stable-hero-title {
        font-size: 3rem;
    }

    .stable-section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .stable-hero-section {
        min-height: 80vh;
        padding-top: 120px;
    }

    .stable-hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .stable-hero-subtitle {
        text-align: center;
        font-size: 1.125rem;
    }

    .stable-hero-cta {
        justify-content: center !important;
    }

    .stable-section-title {
        font-size: 2.25rem;
    }

    .simple-dashboard {
        margin-top: 2rem;
    }

    .simple-notifications {
        display: none;
    }
}

@media (max-width: 767px) {
    .stable-hero-section {
        min-height: 70vh;
        padding-top: 100px;
    }

    .stable-hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .stable-hero-subtitle {
        font-size: 1rem;
    }

    .stable-section-title {
        font-size: 2rem;
    }

    .stable-section-subtitle {
        font-size: 1rem;
    }

    .stable-features-grid {
        margin-top: 2rem;
    }

    .stable-feature-card {
        margin-bottom: 1rem;
    }

    .simple-stat-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575px) {
    .stable-hero-title {
        font-size: 1.75rem;
    }

    .stable-section-title {
        font-size: 1.75rem;
    }

    .stable-hero-cta .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .simple-dashboard {
        padding: 1rem;
    }

    .stable-trust-container {
        padding: 2rem 1rem;
    }
}

/* Advanced Floating Shapes Animation */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.floating-shapes .shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.floating-shapes .shape-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 12%;
    animation-delay: 2s;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.floating-shapes .shape-3 {
    width: 60px;
    height: 60px;
    top: 85%;
    left: 25%;
    animation-delay: 4s;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.floating-shapes .shape-4 {
    width: 100px;
    height: 100px;
    top: 25%;
    right: 35%;
    animation-delay: 1s;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
}

.floating-shapes .shape-5 {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 5%;
    animation-delay: 3s;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.floating-shapes .shape-6 {
    width: 90px;
    height: 90px;
    top: 10%;
    right: 8%;
    animation-delay: 5s;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-30px) rotate(120deg) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translateY(15px) rotate(240deg) scale(0.9);
        opacity: 1;
    }
}

/* Particle System */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 12s linear infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 40%; left: 20%; animation-delay: 1s; }
.particle-3 { top: 60%; left: 30%; animation-delay: 2s; }
.particle-4 { top: 80%; left: 40%; animation-delay: 3s; }
.particle-5 { top: 30%; right: 10%; animation-delay: 4s; }
.particle-6 { top: 50%; right: 20%; animation-delay: 5s; }
.particle-7 { top: 70%; right: 30%; animation-delay: 6s; }
.particle-8 { top: 90%; right: 40%; animation-delay: 7s; }
.particle-9 { top: 15%; left: 50%; animation-delay: 8s; }
.particle-10 { top: 85%; left: 60%; animation-delay: 9s; }

@keyframes particle-float {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Gradient Orbs */
.gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orb-float 15s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, rgba(102, 126, 234, 0.1) 70%, transparent 100%);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.25) 0%, rgba(118, 75, 162, 0.08) 70%, transparent 100%);
    top: 50%;
    right: -200px;
    animation-delay: 5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.35) 0%, rgba(240, 147, 251, 0.12) 70%, transparent 100%);
    bottom: -125px;
    left: 30%;
    animation-delay: 10s;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.06) 70%, transparent 100%);
    top: 20%;
    left: 60%;
    animation-delay: 7s;
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Modern Hero Content Styles */
.hero-content {
    position: relative;
    z-index: 10;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    position: relative;
}

.badge-content {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    animation: badge-glow 2s ease-in-out infinite alternate;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

@keyframes badge-shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line-1 {
    display: block;
    color: white;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Modern Hero Stats Styles */
.hero-stats-container {
    position: relative;
    z-index: 10;
    margin-top: 4rem;
}

.modern-stat-card {
    position: relative;
    height: 100%;
    perspective: 1000px;
}

.stat-card-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modern-stat-card:hover .stat-card-inner {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon-wrapper {
    position: relative;
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-icon {
    font-size: 2rem;
    color: #fbbf24;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.modern-stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
    color: #f59e0b;
}

.stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: stat-glow-pulse 2s ease-in-out infinite;
}

@keyframes stat-glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.stat-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    line-height: 1;
}

.counter {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
}

.stat-plus {
    color: #fbbf24;
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.4;
}

.stat-progress {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
    border-radius: 2px;
    width: 0%;
    transition: width 2s ease-out;
    animation: progress-glow 2s ease-in-out infinite;
}

@keyframes progress-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
    }
}

/* Stat Card Background Effects */
.stat-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

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

.stat-card-inner::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706, #fbbf24);
    background-size: 400% 400%;
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    animation: gradient-border 3s ease infinite;
    transition: opacity 0.3s ease;
}

.modern-stat-card:hover .stat-card-inner::after {
    opacity: 0.6;
}

@keyframes gradient-border {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive Stats */
@media (max-width: 768px) {
    .hero-stats-container {
        margin-top: 3rem;
    }

    .stat-card-inner {
        padding: 1.5rem 1rem;
        min-height: 240px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .stat-icon {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .stat-card-inner {
        padding: 1.25rem 0.75rem;
        min-height: 200px;
    }

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

    .stat-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .stat-icon {
        font-size: 1.25rem;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* Hero Buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    color: #1f2937;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
    color: #1f2937;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
}

.btn-shine {
    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;
}

.btn-hero-primary:hover .btn-shine {
    left: 100%;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.btn-hero-secondary:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Hero Stats */
.hero-stats {
    margin-top: 3rem;
}

.stat-item {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.stat-label {
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.stat-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    margin: 0.5rem auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

/* Mobile responsive for stats */
@media (max-width: 767px) {
    .stat-item {
        margin: 0 0.25rem 1rem;
        padding: 1rem 0.5rem;
    }

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

    .stat-label {
        font-size: 0.7rem;
    }

    .stat-line {
        width: 40px;
    }
}

@media (max-width: 575px) {
    .hero-stats .col-4 {
        margin-bottom: 1rem;
    }

    .stat-item {
        margin: 0 0.1rem;
        padding: 1rem 0.3rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }
}

/* Hero Dashboard */
.hero-visual {
    position: relative;
    z-index: 10;
}

.dashboard-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-dashboard {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    animation: dashboard-float 6s ease-in-out infinite;
}

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

.dashboard-header {
    margin-bottom: 1.5rem;
}

.dashboard-icon {
    background: var(--gradient-primary);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-badge {
    background: var(--gradient-success);
    border: none;
    font-size: 12px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    }
}

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

.metric-card {
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.metric-card:hover::before {
    left: 100%;
}

.metric-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.progress-animated {
    animation: progress-fill 2s ease-out;
}

@keyframes progress-fill {
    0% {
        width: 0%;
    }
}

.dashboard-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: dashboard-glow-rotate 10s linear infinite;
}

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

/* Floating Notifications */
.floating-notifications {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.notification {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem;
    min-width: 200px;
    animation: notification-float 4s ease-in-out infinite;
    box-shadow: var(--shadow-medium);
}

.notification-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.notification-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 2s;
}

.notification-3 {
    top: 60%;
    right: -5%;
    animation-delay: 4s;
}

@keyframes notification-float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-15px) translateX(10px);
        opacity: 1;
    }
}

.notification-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2px;
}

.notification-desc {
    font-size: 11px;
    color: var(--text-light);
}

.notification-pulse {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Wave Animation */
.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

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

.shape-fill {
    fill: rgba(255, 255, 255, 0.1);
    animation: wave-move 8s ease-in-out infinite;
}

@keyframes wave-move {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-20px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
    margin: 0 auto;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

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

@keyframes scroll-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 16px;
        opacity: 0.5;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

/* Typing Animation */
.typing-animation {
    overflow: hidden;
    border-right: 3px solid #FF6B6B;
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

@keyframes typing {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #FF6B6B;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-up[data-delay="1000"] {
    animation-delay: 1s;
}

.fade-in-up[data-delay="1500"] {
    animation-delay: 1.5s;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Enhanced Button Animations */
.btn-animated {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(0);
}

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

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

.btn-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary.btn-animated:hover {
    background: linear-gradient(135deg, #FF6B6B 0%, #ff5252 100%);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.btn-secondary.btn-animated:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #FF6B6B;
    color: white;
    border-color: #FF6B6B;
}

.btn-primary:hover {
    background: #ff5252;
    border-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #00BFA6;
}

.btn-outline {
    background: transparent;
    color: #00BFA6;
    border-color: #00BFA6;
}

.btn-outline:hover {
    background: #00BFA6;
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Feature Cards */
.feature-card-modern {
    position: relative;
    transition: var(--transition);
}

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

.feature-card-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.feature-card-inner:hover {
    box-shadow: var(--shadow-2xl);
}

.card-bg-gradient {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.feature-icon-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.feature-card-modern:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-heavy);
}

.icon-glow {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: icon-glow-pulse 3s ease-in-out infinite;
}

@keyframes icon-glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.95rem;
}

.feature-stats {
    margin-top: auto;
}

.stat-badge {
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border: none;
}

.card-hover-effect {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover .card-hover-effect {
    opacity: 1;
}

/* Trust Indicators */
.trust-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
}

.trust-item {
    padding: 1rem;
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item i {
    margin-bottom: 1rem;
    transition: var(--transition);
}

.trust-item:hover i {
    transform: scale(1.2);
}

/* Modern Services Section */
.services-section {
    position: relative;
    overflow: hidden;
}

.service-card-modern {
    position: relative;
    transition: var(--transition);
}

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

.service-card-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    min-height: 400px;
}

.service-card-inner:hover {
    box-shadow: var(--shadow-2xl);
}

.service-bg-gradient {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}

.service-header {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    flex-shrink: 0;
}

.service-card-modern:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-heavy);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-badge {
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border: none;
    white-space: nowrap;
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

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

.service-hover-effect {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    transition: opacity 0.3s ease;
}

.service-card-modern:hover .service-hover-effect {
    opacity: 1;
}

/* New Services Grid Design */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    position: relative;
}

.service-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.service-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.service-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.service-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.service-card-new {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.service-icon-new {
    margin-bottom: 1rem;
}

.icon-wrapper {
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

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

.service-title-new {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-badge-new {
    background: white !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    font-weight: 600;
}

.service-badge-new:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-desc-new {
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.service-features-new {
    margin-bottom: 1.5rem;
}

.feature-new {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-cta-new .btn {
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-cta-new .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-overlay {
    transition: var(--transition);
}

.service-card-new:hover .service-overlay {
    opacity: 1;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85);
}

/* New Features Grid Design */
.features-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item-new {
    position: relative;
}

.feature-item-new:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.feature-item-new:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.feature-item-new:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.feature-item-new:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.feature-card-new {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.feature-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* Force icon visibility */
.feature-content-new i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.feature-icon-new {
    margin-bottom: 1rem;
}

.feature-icon-wrapper {
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.feature-icon-wrapper i {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: white !important;
    z-index: 11;
    position: relative;
}

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

.feature-title-new {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-desc-new {
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.feature-badge-new {
    margin-top: auto;
}

.feature-badge-new .badge {
    background: white !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    font-weight: 600;
}

.feature-badge-new .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-overlay {
    transition: var(--transition);
}

.feature-card-new:hover .feature-overlay {
    opacity: 1;
}

/* New Tools Grid Design */
.tools-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-item-new {
    position: relative;
}

.tool-card-new {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

.tool-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tool-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.tool-icon-new {
    margin-bottom: 1rem;
}

.tool-icon-wrapper {
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.tool-icon-wrapper i {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: white !important;
    z-index: 11;
    position: relative;
}

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

.tool-title-new {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tool-desc-new {
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.tool-features-new {
    margin-bottom: 1.5rem;
}

.tool-features-new .feature-new {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.tool-cta-new .btn {
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tool-cta-new .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tool-overlay {
    transition: var(--transition);
}

.tool-card-new:hover .tool-overlay {
    opacity: 1;
}

/* Tools Background Animation */
.floating-tech-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tech-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-tech 6s ease-in-out infinite;
}

.tech-shape.tech-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.tech-shape.tech-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.tech-shape.tech-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.tech-shape.tech-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float-tech {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Revolutionary Cyber Tools Design */
.revolutionary-tools-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Circuit Background */
.circuit-bg {
    z-index: 1;
}

.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 2px;
    animation: circuit-flow 4s linear infinite;
}

.circuit-line.line-1 {
    top: 20%;
    left: 0;
    width: 60%;
    animation-delay: 0s;
}

.circuit-line.line-2 {
    top: 40%;
    right: 0;
    width: 70%;
    animation-delay: 1s;
}

.circuit-line.line-3 {
    top: 60%;
    left: 0;
    width: 50%;
    animation-delay: 2s;
}

.circuit-line.line-4 {
    top: 80%;
    right: 0;
    width: 80%;
    animation-delay: 3s;
}

.circuit-line.line-5 {
    top: 30%;
    left: 50%;
    width: 40%;
    animation-delay: 0.5s;
}

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

/* Glowing Nodes */
.circuit-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 20px #00ffff;
    animation: node-pulse 2s ease-in-out infinite;
}

.node.node-1 { top: 15%; left: 10%; animation-delay: 0s; }
.node.node-2 { top: 25%; right: 15%; animation-delay: 0.5s; }
.node.node-3 { top: 45%; left: 20%; animation-delay: 1s; }
.node.node-4 { top: 65%; right: 25%; animation-delay: 1.5s; }
.node.node-5 { top: 75%; left: 30%; animation-delay: 2s; }
.node.node-6 { top: 85%; right: 35%; animation-delay: 2.5s; }

@keyframes node-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

/* Matrix Rain */
.matrix-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rain-drop {
    position: absolute;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    animation: matrix-fall 8s linear infinite;
    opacity: 0.3;
}

.rain-drop.drop-1 { left: 10%; animation-delay: 0s; }
.rain-drop.drop-2 { left: 30%; animation-delay: 2s; }
.rain-drop.drop-3 { left: 60%; animation-delay: 4s; }
.rain-drop.drop-4 { left: 80%; animation-delay: 6s; }

@keyframes matrix-fall {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Modern How It Works Section */
.how-it-works-section {
    position: relative;
    overflow: hidden;
}

/* Futuristic Header */
.futuristic-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.badge-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ffff);
    border-radius: 50px;
    opacity: 0.3;
    animation: badge-rotate 3s linear infinite;
    z-index: 1;
}

.badge-content {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ffff;
    border-radius: 50px;
    padding: 12px 24px;
    color: #00ffff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 2;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.badge-scan {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    animation: badge-scan 2s ease-in-out infinite;
}

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

@keyframes badge-scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.futuristic-title {
    position: relative;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.title-glitch {
    position: relative;
    display: inline-block;
}

.title-glitch::before,
.title-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.title-glitch::before {
    animation: glitch-1 2s infinite;
    color: #ff00ff;
    z-index: -1;
}

.title-glitch::after {
    animation: glitch-2 2s infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% {
        transform: translate(0);
    }
    15%, 49% {
        transform: translate(-2px, 2px);
    }
}

@keyframes glitch-2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% {
        transform: translate(0);
    }
    21%, 62% {
        transform: translate(2px, -2px);
    }
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    animation: underline-expand 3s ease-out forwards;
}

@keyframes underline-expand {
    0% { width: 0; }
    100% { width: 80%; }
}

.futuristic-subtitle {
    color: #00ffff !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.text-cyan {
    color: #00ffff !important;
}

/* Timeline */
.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #e5e7eb 0%, var(--primary-color) 50%, #e5e7eb 100%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-progress {
    width: 100%;
    height: 0%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: timeline-progress 3s ease-out 1s forwards;
}

@keyframes timeline-progress {
    0% {
        height: 0%;
    }
    100% {
        height: 100%;
    }
}

/* Revolutionary Tools Grid */
.revolutionary-tools-grid {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.tools-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.tools-row-top {
    margin-bottom: 4rem;
}

/* Cyber Tool Cards */
.cyber-tool-card {
    flex: 1;
    max-width: 400px;
    min-width: 320px;
    position: relative;
}

.cyber-card-inner {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ffff;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 350px;
}

.cyber-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
    border-color: #ff00ff;
}

/* Holographic Border */
.holo-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ffff);
    border-radius: 20px;
    opacity: 0;
    animation: holo-pulse 3s ease-in-out infinite;
    z-index: -1;
}

.cyber-card-inner:hover .holo-border {
    opacity: 0.5;
}

@keyframes holo-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

/* Tool Header */
.cyber-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tool-id {
    color: #00ffff;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.7;
}

.cyber-icon {
    position: relative;
}

.icon-container {
    width: 60px;
    height: 60px;
    border: 2px solid #00ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.icon-container i {
    color: #00ffff;
    font-size: 1.5rem;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #00ffff;
    border-radius: 50%;
    animation: icon-pulse 2s ease-out infinite;
}

@keyframes icon-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Tool Content */
.cyber-content {
    color: white;
}

.cyber-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.cyber-desc {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Cyber Stats */
.cyber-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
}

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

.stat-label {
    color: #00ffff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    display: block;
}

.stat-value {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

/* Steps Layout */
.steps-grid {
    position: relative;
}

/* Access Button */
.cyber-access {
    margin-top: auto;
}

.access-btn {
    display: block;
    width: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 2px solid #00ffff;
    border-radius: 10px;
    padding: 12px 24px;
    color: #00ffff;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.access-btn:hover {
    color: #000000;
    background: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-scan {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btn-scan 2s ease-in-out infinite;
}

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

/* Data Stream */
.data-stream {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    overflow: hidden;
}

.stream-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: data-flow 3s ease-in-out infinite;
}

@keyframes data-flow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Cyber Dashboard */
.cyber-dashboard {
    margin-top: 4rem;
}

.dashboard-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* System Status */
.system-status {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.status-title {
    color: #00ffff;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ff00;
    font-size: 0.9rem;
    font-weight: 600;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: status-blink 2s ease-in-out infinite;
}

@keyframes status-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Performance Metrics */
.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.metric-label {
    color: #cccccc;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.metric-value {
    color: #00ffff;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
}

.metric-bar {
    width: 60px;
    height: 4px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    border-radius: 2px;
    animation: bar-glow 2s ease-in-out infinite;
}

@keyframes bar-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.5); }
    50% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.8); }
}

.steps-left,
.steps-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-wrapper {
    position: relative;
}

/* Access Terminal */
.access-terminal {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #00ff00;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.terminal-header {
    background: rgba(0, 255, 0, 0.1);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.terminal-title {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.terminal-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red { background: #ff5f56; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #27ca3f; }

.terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prompt {
    color: #00ff00;
    font-weight: 600;
}

.command {
    color: #ffffff;
}

.output {
    color: #cccccc;
}

.output.success {
    color: #00ff00;
}

.terminal-cta {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 0, 0.3);
}

.terminal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, rgba(0, 255, 0, 0.2), rgba(0, 255, 255, 0.2));
    border: 2px solid #00ff00;
    border-radius: 8px;
    padding: 10px 20px;
    color: #00ff00;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.terminal-btn:hover {
    color: #000000;
    background: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-label {
    font-size: 0.9rem;
}

/* Responsive Design for Revolutionary Tools */
@media (max-width: 1199px) {
    .tools-row {
        gap: 1.5rem;
    }

    .cyber-tool-card {
        max-width: 350px;
        min-width: 280px;
    }

    .cyber-card-inner {
        padding: 1.5rem;
        min-height: 320px;
    }
}

@media (max-width: 991px) {
    .tools-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .cyber-tool-card {
        max-width: 400px;
        width: 100%;
    }

    .dashboard-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .revolutionary-tools-grid {
        padding: 0 1rem;
    }

    .cyber-tool-card {
        min-width: auto;
    }

    .cyber-card-inner {
        padding: 1.2rem;
        min-height: 300px;
    }

    .cyber-title {
        font-size: 1.2rem;
    }

    .cyber-desc {
        font-size: 0.85rem;
    }

    .cyber-stats {
        padding: 0.75rem;
    }

    .stat-value {
        font-size: 1rem;
    }

    .icon-container {
        width: 50px;
        height: 50px;
    }

    .icon-container i {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .futuristic-title {
        font-size: 2rem;
    }

    .cyber-card-inner {
        padding: 1rem;
        min-height: 280px;
    }

    .cyber-header {
        margin-bottom: 1rem;
    }

    .cyber-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stat-item {
        flex-direction: row;
        justify-content: space-between;
    }

    .terminal-body {
        padding: 1rem;
        font-size: 0.8rem;
    }

    .system-status {
        padding: 1.5rem;
    }
}

/* Revolutionary Magazine Blog Design */
.magazine-blog-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Newspaper Background */
.newspaper-bg {
    z-index: 1;
}

.typography-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.typo-element {
    position: absolute;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    font-family: 'Times New Roman', serif;
    animation: typo-float 20s linear infinite;
    pointer-events: none;
}

.typo-element.typo-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.typo-element.typo-2 {
    top: 30%;
    right: 10%;
    animation-delay: 4s;
}

.typo-element.typo-3 {
    top: 60%;
    left: 15%;
    animation-delay: 8s;
}

.typo-element.typo-4 {
    top: 80%;
    right: 20%;
    animation-delay: 12s;
}

.typo-element.typo-5 {
    top: 50%;
    left: 50%;
    animation-delay: 16s;
}

@keyframes typo-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.03;
    }
    50% {
        transform: translateY(-30px) rotate(2deg);
        opacity: 0.05;
    }
}

/* Ink Splashes */
.ink-splashes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ink-splash {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: ink-spread 15s ease-in-out infinite;
}

.ink-splash.splash-1 {
    top: 20%;
    left: 80%;
    animation-delay: 0s;
}

.ink-splash.splash-2 {
    top: 70%;
    left: 10%;
    animation-delay: 5s;
}

.ink-splash.splash-3 {
    top: 40%;
    right: 30%;
    animation-delay: 10s;
}

@keyframes ink-spread {
    0%, 100% {
        transform: scale(1);
        opacity: 0.05;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.1;
    }
}

/* Paper Lines */
.paper-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    animation: line-draw 10s ease-in-out infinite;
}

.line.line-1 {
    top: 25%;
    left: 0;
    width: 40%;
    animation-delay: 0s;
}

.line.line-2 {
    top: 45%;
    right: 0;
    width: 60%;
    animation-delay: 2.5s;
}

.line.line-3 {
    top: 65%;
    left: 0;
    width: 30%;
    animation-delay: 5s;
}

.line.line-4 {
    top: 85%;
    right: 0;
    width: 50%;
    animation-delay: 7.5s;
}

@keyframes line-draw {
    0%, 100% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 0.1;
    }
}

/* Step Cards */
.step-card-modern {
    position: relative;
    transition: var(--transition);
}

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

/* Magazine Header */
.magazine-header {
    position: relative;
    z-index: 10;
}

.magazine-masthead {
    position: relative;
    padding: 3rem 0;
}

.masthead-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, #000, transparent);
    margin: 2rem 0;
}

.masthead-content {
    text-align: center;
}

.magazine-date {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.magazine-title {
    position: relative;
    font-family: 'Times New Roman', serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 2rem 0;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.title-shadow {
    position: absolute;
    top: 3px;
    left: 3px;
    color: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.magazine-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.subtitle-line {
    width: 100px;
    height: 1px;
    background: #000;
}

.subtitle-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #666;
}

/* Magazine Grid Layout */
.magazine-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Featured Article */
.featured-article {
    position: relative;
}

.magazine-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-card {
    min-height: 600px;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Article Image */
.article-image-container {
    position: relative;
    height: auto;
    min-height: 250px;
    overflow: hidden;
    border-radius: 12px;
}

.article-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: none;
}

.featured-card:hover .article-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.featured-badge {
    background: #ff6b35;
    color: white;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0 100%);
}

.badge-corner {
    position: absolute;
    top: 0;
    right: -15px;
    width: 0;
    height: 0;
    border-left: 15px solid #ff6b35;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.step-card-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    min-height: 400px;
}

/* Article Content */
.article-content {
    padding: 2.5rem;
    position: relative;
}

.featured-content {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Article Meta */
.article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-category {
    color: #ff6b35;
}

.meta-divider {
    color: #ccc;
}

.meta-date,
.meta-read-time {
    color: #666;
}

/* Article Title */
.article-title {
    margin-bottom: 1rem;
}

.featured-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    font-family: 'Times New Roman', serif;
}

.title-link {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.title-link:hover {
    color: #ff6b35;
}

/* Article Excerpt */
.article-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    flex: 1;
}

/* Article Footer */
.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.author-role {
    font-size: 12px;
    color: #666;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateX(5px);
}

.step-card-inner:hover {
    box-shadow: var(--shadow-2xl);
}

/* Secondary Articles */
.secondary-articles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.secondary-card {
    min-height: 280px;
    position: relative;
}

.secondary-card:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.secondary-layout {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    height: 100%;
}

.secondary-image-container {
    position: relative;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
}

.secondary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.secondary-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
}

/* Category Tags */
.category-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    border-radius: 3px;
}

.green-tag {
    background: #28a745;
}

.orange-tag {
    background: #fd7e14;
}

/* Secondary Content */
.secondary-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.secondary-meta {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.meta-date {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.meta-year {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.secondary-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    font-family: 'Times New Roman', serif;
}

.secondary-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex: 1;
}

.secondary-read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b35;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.secondary-read-more:hover {
    color: #000;
    transform: translateX(3px);
}

/* Article Numbers */
.article-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    font-family: 'Times New Roman', serif;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Step Numbers */
.step-number-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.step-card-modern:hover .step-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-heavy);
}

.step-pulse {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: step-pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes step-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

/* Step Icons */
.step-icon-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.step-card-modern:hover .step-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-medium);
}

/* Step Content */
.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-features {
    margin-bottom: 1rem;
}

.step-features .feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.step-features .feature-item:hover {
    transform: translateX(5px);
}

.step-hover-effect {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    transition: opacity 0.3s ease;
}

.step-card-modern:hover .step-hover-effect {
    opacity: 1;
}

/* Process Summary */
.summary-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
}

.summary-item {
    padding: 1rem;
    transition: var(--transition);
}

.summary-item:hover {
    transform: translateY(-5px);
}

.summary-item i {
    margin-bottom: 1rem;
    transition: var(--transition);
}

.summary-item:hover i {
    transform: scale(1.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00BFA6, #00A693);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    position: relative;
    background: #f6f9fc;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300BFA6' fill-opacity='0.05'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20v-40c11.046 0 20 8.954 20 20z'/%3E%3C/g%3E%3C/svg%3E");
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

/* Special layout for 4 services - center the last one */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-card:nth-child(4) {
        grid-column: 1 / -1;
        max-width: 350px;
        margin: 0 auto;
    }
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #00BFA6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #00A693;
}

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

.service-link:hover i {
    transform: translateX(3px);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00BFA6, #00A693);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Free Tools Section */
.free-tools {
    padding: 80px 0;
    position: relative;
    background: #f6f9fc;
}

.tools-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B6B' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.tool-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B6B, #ff5252);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tool-icon i {
    font-size: 1.75rem;
    color: white;
}

.tool-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.tool-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tool-link {
    background: #00BFA6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.tool-link:hover {
    background: #00A693;
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background: white;
}

/* Blog Section Styles */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.blog-intro p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* 3-column blog grid for homepage */
.blog-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .blog-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
    height: auto;
    min-height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.blog-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-height: none;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content h3 a {
    color: #333;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #00BFA6;
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #999;
}

.blog-category {
    background: #00BFA6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.read-more {
    color: #00BFA6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    margin-top: 1rem;
}

.read-more:hover {
    color: #00A693;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Load More Button Styles */
.load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem 0;
    width: 100%;
}

.load-more-btn {
    background: linear-gradient(135deg, #00BFA6, #00A693);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 166, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #00A693, #008A7B);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 166, 0.4);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn i {
    font-size: 0.9rem;
}

/* Blog Post Image Styles */
.blog-post-image {
    margin: 2rem 0;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-image {
    margin-bottom: 2rem;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-post-image img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 12px;
    display: block;
}

.blog-post-image:hover img {
    transform: scale(1.02);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #333 0%, #222 100%);
    color: white;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00BFA6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00BFA6;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-logo p {
    color: #ccc;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #00BFA6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Ultra Modern Responsive Design */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .floating-shapes .shape-1 {
        width: 150px;
        height: 150px;
    }

    .floating-shapes .shape-2 {
        width: 100px;
        height: 100px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .notification {
        min-width: 180px;
        padding: 0.8rem;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .dashboard-container {
        max-width: 450px;
    }

    .floating-shapes .shape {
        opacity: 0.7;
    }

    .notification {
        min-width: 160px;
        padding: 0.7rem;
    }

    .service-card-inner {
        padding: 2rem;
    }

    .feature-card-inner {
        padding: 1.5rem;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .hero-section {
        min-height: 80vh;
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .dashboard-container {
        max-width: 400px;
        margin-top: 2rem;
    }

    .main-dashboard {
        padding: 1.5rem;
    }

    .floating-notifications {
        display: none;
    }

    .floating-shapes .shape {
        opacity: 0.5;
    }

    .service-card-inner {
        padding: 1.8rem;
        text-align: center;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature-card-inner {
        padding: 1.5rem;
    }

    .trust-container {
        padding: 1.5rem;
    }

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

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .hero-section {
        min-height: 70vh;
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .hero-stats {
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .dashboard-container {
        max-width: 350px;
        margin-top: 1.5rem;
    }

    .main-dashboard {
        padding: 1.2rem;
    }

    .metrics-grid .col-4 {
        margin-bottom: 1rem;
    }

    .metric-value {
        font-size: 1.2rem;
    }

    .floating-shapes .shape {
        opacity: 0.3;
    }

    .particles-container {
        display: none;
    }

    .gradient-orbs {
        opacity: 0.5;
    }

    .service-card-inner {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .feature-card-inner {
        padding: 1.2rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .trust-container {
        padding: 1.2rem;
    }

    .trust-item {
        padding: 0.8rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .hero-section {
        min-height: 60vh;
        padding: 60px 0 30px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge .badge-content {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero-cta {
        margin-bottom: 2rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-stats {
        margin-top: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .dashboard-container {
        max-width: 300px;
        margin-top: 1rem;
    }

    .main-dashboard {
        padding: 1rem;
    }

    .dashboard-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .dashboard-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }

    .metrics-grid .col-4 {
        margin-bottom: 0.8rem;
    }

    .metric-card {
        padding: 0.8rem;
    }

    .metric-icon {
        width: 35px;
        height: 35px;
    }

    .metric-value {
        font-size: 1rem;
    }

    .floating-shapes {
        display: none;
    }

    .gradient-orbs {
        opacity: 0.3;
    }

    .service-card-inner {
        padding: 1.2rem;
    }

    .service-header {
        gap: 0.8rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .feature-card-inner {
        padding: 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

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

    .feature-description {
        font-size: 0.9rem;
    }

    .trust-container {
        padding: 1rem;
    }

    .trust-item {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }

    .trust-item i {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .dashboard-container {
        max-width: 280px;
    }

    .main-dashboard {
        padding: 0.8rem;
    }

    .service-card-inner,
    .feature-card-inner {
        padding: 1rem;
    }

    .trust-container {
        padding: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Additional Service Card Responsive Fixes */
@media (max-width: 991px) {
    .service-card-inner {
        min-height: 350px;
        padding: 1.8rem;
        text-align: center;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }

    .service-title {
        font-size: 1.3rem;
        text-align: center;
    }

    .service-description {
        font-size: 0.95rem;
        text-align: center;
    }

    .service-features {
        text-align: center;
    }

    .service-cta {
        text-align: center;
    }

    /* Step Cards 2x2 Layout */
    .steps-left,
    .steps-right {
        gap: 1.5rem;
    }

    .step-card-inner {
        min-height: 350px;
        padding: 2rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .service-card-inner {
        min-height: 320px;
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    /* Step Cards Mobile */
    .steps-grid .row {
        flex-direction: column;
    }

    .steps-left,
    .steps-right {
        gap: 1rem;
    }

    .step-wrapper {
        margin-bottom: 1rem;
    }

    .step-card-inner {
        min-height: 320px;
        padding: 1.5rem;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .service-card-inner {
        min-height: 300px;
        padding: 1.2rem;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    /* Step Cards Extra Small */
    .step-card-inner {
        min-height: 280px;
        padding: 1.2rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.8rem;
    }

    .steps-grid .col-lg-6 {
        margin-bottom: 0;
    }

    .step-wrapper {
        margin-bottom: 1rem;
    }
}

/* Feature Cards Responsive Design */
@media (max-width: 991px) {
    .feature-card-inner {
        min-height: 320px;
        padding: 1.8rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .feature-card-inner {
        min-height: 300px;
        padding: 1.5rem;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
    }

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

    .feature-description {
        font-size: 0.85rem;
    }

    .stat-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 575px) {
    .feature-card-inner {
        min-height: 280px;
        padding: 1.2rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-title {
        font-size: 0.95rem;
    }

    .feature-description {
        font-size: 0.8rem;
    }

    .stat-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* New Services Grid Responsive Design */
@media (max-width: 1199px) {
    .services-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }

    .service-card-new {
        min-height: 380px;
    }
}

@media (max-width: 991px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 2rem;
        max-width: 600px;
    }

    .service-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .service-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .service-item:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .service-item:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }

    .service-card-new {
        min-height: 360px;
    }

    .service-content-new {
        padding: 2rem !important;
    }

    .service-title-new {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .services-grid-new {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 400px;
    }

    .service-item:nth-child(1),
    .service-item:nth-child(2),
    .service-item:nth-child(3),
    .service-item:nth-child(4) {
        grid-column: 1;
    }

    .service-item:nth-child(1) {
        grid-row: 1;
    }

    .service-item:nth-child(2) {
        grid-row: 2;
    }

    .service-item:nth-child(3) {
        grid-row: 3;
    }

    .service-item:nth-child(4) {
        grid-row: 4;
    }

    .service-card-new {
        min-height: 340px;
    }

    .service-content-new {
        padding: 1.5rem !important;
    }

    .service-title-new {
        font-size: 1.2rem;
    }

    .service-desc-new {
        font-size: 0.9rem;
    }

    .icon-wrapper {
        width: 60px !important;
        height: 60px !important;
    }

    .icon-wrapper i {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 575px) {
    .services-grid-new {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .service-card-new {
        min-height: 320px;
    }

    .service-content-new {
        padding: 1.2rem !important;
    }

    .service-title-new {
        font-size: 1.1rem;
    }

    .service-desc-new {
        font-size: 0.85rem;
    }

    .service-badge-new {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .feature-new {
        font-size: 0.8rem;
    }

    .service-cta-new .btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .icon-wrapper {
        width: 50px !important;
        height: 50px !important;
    }

    .icon-wrapper i {
        font-size: 1.3rem !important;
    }
}

/* New Features Grid Responsive Design */
@media (max-width: 1199px) {
    .features-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }

    .feature-card-new {
        min-height: 330px;
    }
}

@media (max-width: 991px) {
    .features-grid-new {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 2rem;
        max-width: 600px;
    }

    .feature-item-new:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .feature-item-new:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .feature-item-new:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .feature-item-new:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }

    .feature-card-new {
        min-height: 320px;
    }

    .feature-content-new {
        padding: 2rem !important;
    }

    .feature-title-new {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .features-grid-new {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 400px;
    }

    .feature-item-new:nth-child(1),
    .feature-item-new:nth-child(2),
    .feature-item-new:nth-child(3),
    .feature-item-new:nth-child(4) {
        grid-column: 1;
    }

    .feature-item-new:nth-child(1) {
        grid-row: 1;
    }

    .feature-item-new:nth-child(2) {
        grid-row: 2;
    }

    .feature-item-new:nth-child(3) {
        grid-row: 3;
    }

    .feature-item-new:nth-child(4) {
        grid-row: 4;
    }

    .feature-card-new {
        min-height: 300px;
    }

    .feature-content-new {
        padding: 1.5rem !important;
    }

    .feature-title-new {
        font-size: 1.1rem;
    }

    .feature-desc-new {
        font-size: 0.9rem;
    }

    .feature-icon-wrapper {
        width: 60px !important;
        height: 60px !important;
    }

    .feature-icon-wrapper i {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 575px) {
    .features-grid-new {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .feature-card-new {
        min-height: 280px;
    }

    .feature-content-new {
        padding: 1.2rem !important;
    }

    .feature-title-new {
        font-size: 1rem;
    }

    .feature-desc-new {
        font-size: 0.85rem;
    }

    .feature-badge-new .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .feature-icon-wrapper {
        width: 50px !important;
        height: 50px !important;
    }

    .feature-icon-wrapper i {
        font-size: 1.3rem !important;
    }
}

/* New Tools Grid Responsive Design */
@media (max-width: 1199px) {
    .tools-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    .tool-card-new {
        min-height: 360px;
    }
}

@media (max-width: 991px) {
    .tools-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 600px;
    }

    .tool-card-new {
        min-height: 340px;
    }

    .tool-content-new {
        padding: 2rem !important;
    }

    .tool-title-new {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .tools-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 400px;
    }

    .tool-card-new {
        min-height: 320px;
    }

    .tool-content-new {
        padding: 1.5rem !important;
    }

    .tool-title-new {
        font-size: 1.1rem;
    }

    .tool-desc-new {
        font-size: 0.9rem;
    }

    .tool-icon-wrapper {
        width: 60px !important;
        height: 60px !important;
    }

    .tool-icon-wrapper i {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 575px) {
    .tools-grid-new {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .tool-card-new {
        min-height: 300px;
    }

    .tool-content-new {
        padding: 1.2rem !important;
    }

    .tool-title-new {
        font-size: 1rem;
    }

    .tool-desc-new {
        font-size: 0.85rem;
    }

    .tool-features-new .feature-new {
        font-size: 0.8rem;
    }

    .tool-cta-new .btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .tool-icon-wrapper {
        width: 50px !important;
        height: 50px !important;
    }

    .tool-icon-wrapper i {
        font-size: 1.3rem !important;
    }
}

/* Magazine Footer Styles */
.magazine-footer {
    background: #f8f9fa;
    border-top: 3px solid #000;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.newsletter-section {
    padding: 2rem;
    background: #fff;
    border: 2px solid #000;
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: #ff6b35;
    z-index: -1;
}

.newsletter-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.newsletter-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #000;
    border-right: none;
    font-size: 14px;
    outline: none;
}

.newsletter-btn {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-btn:hover {
    background: #ff6b35;
    border-color: #ff6b35;
}

.view-all-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.view-all-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.view-all-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.magazine-cta-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 3px solid #000;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.magazine-cta-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.magazine-info-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: #000;
    color: #ffffff;
    font-family: 'Courier New', monospace;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff !important;
}

.info-label {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
    color: #ffffff !important;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 3px rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.info-value {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff !important;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 5px rgba(255, 255, 255, 0.7);
}

.info-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

/* Ensure clean white text with black outline in magazine info bar */
.magazine-info-bar * {
    color: #ffffff !important;
}

.magazine-info-bar .info-item * {
    color: #ffffff !important;
}

.magazine-info-bar .info-label {
    color: #ffffff !important;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 3px rgba(255, 255, 255, 0.5) !important;
    font-weight: 600 !important;
}

.magazine-info-bar .info-value {
    color: #ffffff !important;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 5px rgba(255, 255, 255, 0.7) !important;
    font-weight: 800 !important;
}

/* Magazine Blog Archive Styles */
.magazine-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 70vh;
}

.newspaper-hero-bg {
    z-index: 1;
}

.hero-typography-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-typo-element {
    position: absolute;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    font-family: 'Times New Roman', serif;
    animation: hero-typo-float 25s linear infinite;
    pointer-events: none;
}

.hero-typo-element.hero-typo-1 {
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

.hero-typo-element.hero-typo-2 {
    top: 20%;
    right: 15%;
    animation-delay: 6s;
}

.hero-typo-element.hero-typo-3 {
    top: 60%;
    left: 20%;
    animation-delay: 12s;
}

.hero-typo-element.hero-typo-4 {
    top: 80%;
    right: 25%;
    animation-delay: 18s;
}

@keyframes hero-typo-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.02;
    }
    50% {
        transform: translateY(-40px) rotate(3deg);
        opacity: 0.04;
    }
}

.hero-ink-drops {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-ink-drop {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: hero-ink-spread 20s ease-in-out infinite;
}

.hero-ink-drop.drop-1 {
    top: 15%;
    left: 70%;
    animation-delay: 0s;
}

.hero-ink-drop.drop-2 {
    top: 70%;
    left: 20%;
    animation-delay: 7s;
}

.hero-ink-drop.drop-3 {
    top: 40%;
    right: 10%;
    animation-delay: 14s;
}

@keyframes hero-ink-spread {
    0%, 100% {
        transform: scale(1);
        opacity: 0.03;
    }
    50% {
        transform: scale(1.8);
        opacity: 0.06;
    }
}

.hero-paper-grid {
    position: absolute;
    width: 100%;
    height: 100%;
}

.grid-line {
    position: absolute;
    background: rgba(0, 0, 0, 0.03);
    animation: grid-draw 15s ease-in-out infinite;
}

.grid-line.grid-h-1 {
    top: 30%;
    left: 0;
    right: 0;
    height: 1px;
    animation-delay: 0s;
}

.grid-line.grid-h-2 {
    top: 70%;
    left: 0;
    right: 0;
    height: 1px;
    animation-delay: 5s;
}

.grid-line.grid-v-1 {
    top: 0;
    bottom: 0;
    left: 25%;
    width: 1px;
    animation-delay: 2.5s;
}

.grid-line.grid-v-2 {
    top: 0;
    bottom: 0;
    right: 25%;
    width: 1px;
    animation-delay: 7.5s;
}

@keyframes grid-draw {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.05;
    }
}

/* Magazine Header */
.magazine-hero-header {
    position: relative;
    z-index: 10;
}

.publication-info {
    position: relative;
}

.publication-line {
    height: 2px;
    background: #000;
    margin: 1rem 0;
}

.publication-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #000;
    text-transform: uppercase;
}

.magazine-hero-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    position: relative;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.title-shadow-hero {
    position: absolute;
    top: 4px;
    left: 4px;
    color: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.hero-subtitle-banner {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.banner-content {
    position: relative;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.magazine-stats {
    max-width: 600px;
    margin: 0 auto;
}

.stats-container {
    position: relative;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: #ff6b35;
    z-index: -1;
}

/* Fix for magazine stats text overflow */
.magazine-stats .stat-item {
    padding: 0.5rem;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.magazine-stats .stat-number {
    font-size: 1rem !important;
    line-height: 1.2;
    margin-bottom: 0.25rem !important;
    word-wrap: break-word;
    text-align: center;
}

.magazine-stats .stat-label {
    font-size: 0.7rem !important;
    line-height: 1.1;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
}

/* Responsive adjustments for magazine stats */
@media (max-width: 767px) {
    .magazine-stats .row {
        margin: 0 -5px;
    }

    .magazine-stats .row &gt; div {
        padding: 0 5px;
    }

    .magazine-stats .stat-item {
        min-height: 70px;
        padding: 0.25rem;
    }

    .magazine-stats .stat-number {
        font-size: 0.9rem !important;
    }

    .magazine-stats .stat-label {
        font-size: 0.6rem !important;
    }
}

@media (max-width: 575px) {
    .magazine-stats .stat-item {
        min-height: 60px;
        padding: 0.2rem;
    }

    .magazine-stats .stat-number {
        font-size: 0.8rem !important;
    }

    .magazine-stats .stat-label {
        font-size: 0.55rem !important;
    }
}

/* Force clean white text with black outline in magazine info bar */
.magazine-info-bar,
.magazine-info-bar .info-item,
.magazine-info-bar .info-label,
.magazine-info-bar .info-value {
    color: #ffffff !important;
}

.magazine-info-bar .info-label {
    color: #ffffff !important;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 3px rgba(255, 255, 255, 0.5) !important;
    font-weight: 600 !important;
}

.magazine-info-bar .info-value {
    color: #ffffff !important;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 5px rgba(255, 255, 255, 0.7) !important;
    font-weight: 800 !important;
}

/* Magazine Responsive Design */
@media (max-width: 991px) {
    .magazine-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .magazine-info-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .publication-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-typo-element {
        font-size: 8rem;
    }
}

@media (max-width: 767px) {
    .magazine-title {
        font-size: 2.5rem;
    }

    .magazine-hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .secondary-layout {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }

    .secondary-image-container {
        height: 100px;
    }

    .newsletter-section {
        padding: 1.5rem;
    }

    .magazine-cta-btn {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .hero-typo-element {
        font-size: 6rem;
    }
}

/* Archive Section */
.magazine-blog-archive {
    position: relative;
}

.archive-header {
    position: relative;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000, transparent);
}

.divider-content {
    background: #000;
    color: #fff;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}



.archive-subtitle {
    max-width: 700px;
    margin: 0 auto;
}

/* Archive Grid */
.magazine-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

@media (min-width: 1200px) {
    .magazine-archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .magazine-archive-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
}

/* Archive Cards */
.magazine-archive-card {
    position: relative;
}

.archive-card-inner {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.06);
}

.archive-card-inner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Archive Image */
.archive-image-container {
    position: relative;
    height: auto;
    min-height: 220px;
    max-height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px 20px 0 0;
}

.archive-image {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    filter: brightness(1.05) contrast(1.1);
}

.archive-card-inner:hover .archive-image {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.15);
}

.archive-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.1) 0%,
        rgba(118, 75, 162, 0.2) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.archive-card-inner:hover .archive-image-overlay {
    opacity: 1;
}

/* Archive Category Badge */
.archive-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    border-radius: 25px;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.archive-category-badge.green-badge {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
}

.archive-category-badge.orange-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

/* Archive Article Number */
.archive-article-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    font-family: 'Times New Roman', serif;
    z-index: 10;
}

/* Archive Content */
.archive-content-container {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-height: 250px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.archive-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #8b5cf6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.meta-divider {
    color: #d1d5db;
    font-weight: 300;
}

.archive-title {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    color: #1a202c;
    transition: all 0.3s ease;
    letter-spacing: -0.025em;
}

.archive-title-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.archive-title-link:hover {
    color: #3b82f6;
    transform: translateY(-2px);
}

.archive-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 2rem;
    flex: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
}

.archive-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-self: flex-start;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.archive-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.archive-read-more:hover::before {
    left: 0;
}

.archive-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.archive-arrow {
    transition: transform 0.3s ease;
}

.archive-read-more:hover .archive-arrow {
    transform: translateX(5px);
}

/* Archive Corner Decoration */
.archive-corner-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    border-right: 3px solid #ff6b35;
    border-bottom: 3px solid #ff6b35;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.archive-card-inner:hover .archive-corner-decoration {
    opacity: 1;
}

/* Load More Section */
.magazine-load-more {
    position: relative;
}

.load-more-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.divider-icon {
    background: #000;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.magazine-load-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    border: 3px solid #000;
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.magazine-load-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: left 0.3s ease;
    z-index: 1;
}

.magazine-load-btn:hover::before {
    left: 0;
}

.magazine-load-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.magazine-load-btn &gt; * {
    position: relative;
    z-index: 2;
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-main {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
}

.btn-sub {
    font-size: 11px;
    opacity: 0.7;
}

.btn-arrow {
    font-size: 1.1rem;
}

/* Magazine Newsletter */
.magazine-newsletter-section {
    position: relative;
}

.newsletter-magazine-content {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-badge {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.newsletter-title {
    font-family: 'Times New Roman', serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
}

.magazine-newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-wrapper {
    position: relative;
}

.input-group {
    display: flex;
    border: 3px solid #fff;
    overflow: hidden;
}

.newsletter-email-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
    outline: none;
    background: #fff;
    color: #000;
}

.newsletter-submit-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-submit-btn:hover {
    background: #fff;
    color: #000;
}

.newsletter-features {
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 1.5rem;
    display: block;
}

/* Newsletter features text styling */
.newsletter-features .feature-item small {
    color: #ffd700 !important;
    font-weight: 600 !important;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 3px rgba(255, 215, 0, 0.5) !important;
}

.newsletter-features .feature-item {
    color: #ffd700 !important;
}

.newsletter-features .text-light {
    color: #ffd700 !important;
    font-weight: 600 !important;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 3px rgba(255, 215, 0, 0.5) !important;
}

/* Archive Responsive */
@media (max-width: 991px) {
    .magazine-archive-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .archive-card-inner {
        min-height: 400px;
    }

    .archive-content {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .magazine-archive-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .archive-card-inner {
        min-height: 380px;
    }

    .archive-content {
        padding: 1.2rem;
        min-height: 180px;
    }

    .archive-title {
        font-size: 1.3rem;
    }

    .archive-excerpt {
        font-size: 0.9rem;
    }

    .magazine-load-btn {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .newsletter-features .row {
        gap: 1rem;
    }
}

/* Modern Light Services Section */
.modern-services-section {
    position: relative;
    min-height: 80vh;
    padding: 5rem 0;
}

.services-bg-pattern {
    z-index: 1;
}

/* Modern Header */
.modern-header {
    position: relative;
    z-index: 10;
}

.simple-badge {
    margin-bottom: 1.5rem;
}

.simple-badge .badge {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.modern-title {
    font-weight: 800;
    color: #2c3e50;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.modern-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 2rem;
}

.simple-divider {
    margin-top: 2rem;
}

.divider-line {
    transition: all 0.3s ease;
}

.divider-line:hover {
    width: 120px !important;
    background: linear-gradient(90deg, #007bff, #6610f2) !important;
}

/* Modern Services Grid */
.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Modern Service Cards */
.modern-service-card {
    position: relative;
    transition: all 0.3s ease;
}

.service-card-modern {
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6610f2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

/* Service Header */
.service-header-modern {
    position: relative;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-primary-dark, #0056b3));
    border-radius: 0;
}

.service-header-modern.bg-success {
    background: linear-gradient(135deg, #28a745, #1e7e34) !important;
}

.service-header-modern.bg-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800) !important;
}

.service-header-modern.bg-info {
    background: linear-gradient(135deg, #17a2b8, #138496) !important;
}

.service-header-modern.bg-dark {
    background: linear-gradient(135deg, #343a40, #212529) !important;
}

.service-header-modern.bg-secondary {
    background: linear-gradient(135deg, #6c757d, #5a6268) !important;
}

.service-icon-modern {
    position: relative;
}

.icon-wrapper {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.service-card-modern:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.service-badge-modern .badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Service Content */
.service-content-modern {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem !important;
}

.service-title-modern {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card-modern:hover .service-title-modern {
    color: #007bff;
}

.service-description-modern {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Service Features */
.service-features-modern {
    margin-bottom: 2rem;
}

.feature-modern {
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.feature-modern:hover {
    transform: translateX(5px);
}

.feature-icon-modern {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.feature-modern:hover .feature-icon-modern {
    transform: scale(1.2);
}

.feature-modern span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
}

/* Service CTA */
.service-cta-modern {
    margin-top: auto;
}

.service-cta-modern .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-cta-modern .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-cta-modern .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 ease;
}

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

/* Package Highlight */
.package-highlight {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-highlight:hover {
    border-color: #17a2b8;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.1);
}

.package-highlight h6 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.package-highlight small {
    color: #6c757d;
    font-weight: 500;
}

.package-icon {
    transition: all 0.3s ease;
}

.package-highlight:hover .package-icon {
    transform: scale(1.2) rotate(10deg);
}

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

.package-highlight:hover::before {
    left: 100%;
}

/* Service Stats */
.service-stats {
    background: rgba(23, 162, 184, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(23, 162, 184, 0.1);
    transition: all 0.3s ease;
}

.service-stats:hover {
    background: rgba(23, 162, 184, 0.08);
    border-color: rgba(23, 162, 184, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.1);
}

.stat-item {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.stat-item:hover {
    background: rgba(23, 162, 184, 0.1);
    transform: translateY(-2px);
}

.stat-number {
    color: #17a2b8 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: #138496 !important;
}

.stat-label {
    color: #6c757d !important;
    font-weight: 500 !important;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Features for Link Building */
.service-card-modern .service-features-modern .feature-modern:nth-child(n+4) {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(0.1s * var(--i, 1));
}

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

/* Audit Highlight */
.audit-highlight {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audit-highlight:hover {
    border-color: #dc3545;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.1);
}

.audit-highlight h6 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.audit-highlight small {
    color: #6c757d;
    font-weight: 500;
}

.audit-icon {
    transition: all 0.3s ease;
}

.audit-highlight:hover .audit-icon {
    transform: scale(1.2) rotate(-10deg);
}

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

.audit-highlight:hover::before {
    left: 100%;
}

/* Local Stats */
.local-stats {
    background: rgba(108, 117, 125, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(108, 117, 125, 0.1);
    transition: all 0.3s ease;
}

.local-stats:hover {
    background: rgba(108, 117, 125, 0.08);
    border-color: rgba(108, 117, 125, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.1);
}

.local-stats .stat-item {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.local-stats .stat-item:hover {
    background: rgba(108, 117, 125, 0.1);
    transform: translateY(-2px);
}

.local-stats .stat-number {
    color: #6c757d !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease;
}

.local-stats .stat-item:hover .stat-number {
    transform: scale(1.1);
    color: #5a6268 !important;
}

.local-stats .stat-label {
    color: #6c757d !important;
    font-weight: 500 !important;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Services Responsive Design */
@media (max-width: 1199px) {
    .modern-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .service-card-modern {
        min-height: 420px;
    }

    .modern-title {
        font-size: 2.5rem;
    }
}

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

    .service-card-modern {
        min-height: 400px;
    }

    .service-content-modern {
        padding: 1.5rem !important;
    }

    .modern-title {
        font-size: 2.2rem;
    }

    .modern-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .modern-services-section {
        padding: 3rem 0;
    }

    .modern-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-card-modern {
        min-height: 380px;
    }

    .service-content-modern {
        padding: 1.2rem !important;
    }

    .service-title-modern {
        font-size: 1.3rem;
    }

    .service-description-modern {
        font-size: 0.9rem;
    }

    .modern-title {
        font-size: 1.8rem;
    }

    .modern-subtitle {
        font-size: 0.95rem;
    }

    .icon-wrapper {
        width: 50px !important;
        height: 50px !important;
    }

    .icon-wrapper i {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 575px) {
    .modern-services-section {
        padding: 2rem 0;
    }

    .service-card-modern {
        min-height: 360px;
    }

    .service-content-modern {
        padding: 1rem !important;
    }

    .service-title-modern {
        font-size: 1.2rem;
    }

    .service-description-modern {
        font-size: 0.85rem;
    }

    .modern-title {
        font-size: 1.5rem;
    }

    .modern-subtitle {
        font-size: 0.9rem;
    }

    .simple-badge .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .feature-modern span {
        font-size: 0.85rem;
    }

    .service-cta-modern .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Clean Animation Performance */
@media (prefers-reduced-motion: reduce) {
    .service-card-modern,
    .icon-wrapper,
    .feature-modern,
    .service-cta-modern .btn {
        transition: none;
    }

    .service-card-modern:hover {
        transform: translateY(-4px);
    }
}

/* Animated Background */
.services-animated-bg {
    z-index: 1;
}

.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    animation: particle-float 8s linear infinite;
}

.particle.particle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

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

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

.particle.particle-4 {
    top: 80%;
    right: 25%;
    animation-delay: 3s;
}

.particle.particle-5 {
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

.particle.particle-6 {
    top: 70%;
    right: 50%;
    animation-delay: 5s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-50px) scale(1.5);
        opacity: 1;
    }
}

/* Geometric Patterns */
.geometric-patterns {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pattern {
    position: absolute;
    border: 2px solid rgba(0, 255, 255, 0.1);
    animation: pattern-rotate 20s linear infinite;
}

.pattern.pattern-1 {
    top: 15%;
    left: 15%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation-delay: 0s;
}

.pattern.pattern-2 {
    top: 30%;
    right: 20%;
    width: 80px;
    height: 80px;
    transform: rotate(45deg);
    animation-delay: 5s;
}

.pattern.pattern-3 {
    bottom: 20%;
    left: 30%;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    animation-delay: 10s;
}

@keyframes pattern-rotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.1;
    }
}

/* Glowing Orbs */
.glowing-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    animation: orb-pulse 6s ease-in-out infinite;
}

.orb.orb-1 {
    top: 25%;
    left: 80%;
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.orb.orb-2 {
    top: 70%;
    left: 10%;
    width: 150px;
    height: 150px;
    animation-delay: 2s;
}

.orb.orb-3 {
    top: 50%;
    right: 10%;
    width: 100px;
    height: 100px;
    animation-delay: 4s;
}

@keyframes orb-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

/* Revolutionary Header */
.revolutionary-header {
    position: relative;
    z-index: 10;
}

.glowing-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.badge-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ffff);
    border-radius: 50px;
    opacity: 0.5;
    animation: badge-rotate 3s linear infinite;
    z-index: 1;
}

.badge-content {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ffff;
    border-radius: 50px;
    padding: 12px 24px;
    color: #00ffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

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

.revolutionary-title {
    font-family: 'Times New Roman', serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    position: relative;
}

.title-glitch {
    position: relative;
    display: inline-block;
}

.title-glitch::before,
.title-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.title-glitch::before {
    animation: glitch-1 2s infinite;
    color: #ff00ff;
    z-index: -1;
}

.title-glitch::after {
    animation: glitch-2 2s infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% {
        transform: translate(0);
    }
    15%, 49% {
        transform: translate(-2px, 2px);
    }
}

@keyframes glitch-2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% {
        transform: translate(0);
    }
    21%, 62% {
        transform: translate(2px, -2px);
    }
}

.revolutionary-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.line-segment {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: line-glow 2s ease-in-out infinite;
}

.line-center {
    color: #ffff00;
    font-size: 1.2rem;
    animation: center-pulse 2s ease-in-out infinite;
}

@keyframes line-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

/* Revolutionary Services Grid */
.revolutionary-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Revolutionary Service Cards */
.revolutionary-service-card {
    position: relative;
}

.service-card-revolutionary {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 500px;
}

.service-card-revolutionary:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

/* Holographic Border */
.holographic-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ffff);
    border-radius: 20px;
    opacity: 0;
    animation: holo-pulse 3s ease-in-out infinite;
    z-index: -1;
}

.service-card-revolutionary:hover .holographic-border {
    opacity: 0.7;
}

@keyframes holo-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.5; }
}

/* Service Header */
.service-header {
    position: relative;
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.2);
    border: 2px solid #00ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    font-weight: 900;
    font-size: 1.2rem;
    font-family: 'Courier New', monospace;
}

/* Service Icon */
.service-icon-revolutionary {
    position: relative;
    margin-bottom: 1rem;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: icon-glow 2s ease-in-out infinite;
}

.icon-glow.green {
    background: radial-gradient(circle, rgba(0, 255, 0, 0.3) 0%, transparent 70%);
}

.icon-glow.orange {
    background: radial-gradient(circle, rgba(255, 165, 0, 0.3) 0%, transparent 70%);
}

.icon-glow.blue {
    background: radial-gradient(circle, rgba(0, 123, 255, 0.3) 0%, transparent 70%);
}

.icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid #00ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.icon-container i {
    color: #00ffff;
    font-size: 2rem;
}

@keyframes icon-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Service Content */
.service-content-revolutionary {
    padding: 0 2rem 2rem;
    color: white;
}

.service-title-revolutionary {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Service Badges */
.service-badge-revolutionary {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.service-badge-revolutionary.premium {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
}

.service-badge-revolutionary.popular {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.service-badge-revolutionary.expert {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
    color: white;
}

.service-badge-revolutionary.complete {
    background: linear-gradient(45deg, #007bff, #6610f2);
    color: white;
}

.service-description-revolutionary {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Service Features */
.service-features-revolutionary {
    margin-bottom: 2rem;
}

.feature-revolutionary {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid #00ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.feature-icon i {
    color: #00ffff;
    font-size: 0.7rem;
}

/* Revolutionary Button */
.service-cta-revolutionary {
    margin-top: auto;
}

.revolutionary-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 12px 20px;
    color: #00ffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.revolutionary-btn:hover {
    color: #000000;
    background: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-text {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btn-scan 2s ease-in-out infinite;
}

.revolutionary-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.revolutionary-btn:hover i {
    transform: translateX(5px);
}

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

/* Card Particles */
.card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.card-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00ffff;
    border-radius: 50%;
    animation: card-particle-float 6s linear infinite;
}

.card-particle.card-particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-particle.card-particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.card-particle.card-particle-3 {
    bottom: 20%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes card-particle-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

/* Revolutionary Services Responsive Design */
@media (max-width: 1199px) {
    .revolutionary-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .service-card-revolutionary {
        min-height: 450px;
    }

    .revolutionary-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 991px) {
    .revolutionary-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-card-revolutionary {
        min-height: 420px;
    }

    .service-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .service-content-revolutionary {
        padding: 0 1.5rem 1.5rem;
    }

    .revolutionary-title {
        font-size: 2.2rem;
    }

    .revolutionary-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .revolutionary-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-card-revolutionary {
        min-height: 400px;
    }

    .service-header {
        padding: 1.2rem 1.2rem 0.8rem;
    }

    .service-content-revolutionary {
        padding: 0 1.2rem 1.2rem;
    }

    .service-title-revolutionary {
        font-size: 1.3rem;
    }

    .service-description-revolutionary {
        font-size: 0.9rem;
    }

    .revolutionary-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .revolutionary-subtitle {
        font-size: 0.95rem;
    }

    .icon-container {
        width: 60px;
        height: 60px;
    }

    .icon-container i {
        font-size: 1.5rem;
    }

    .service-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .revolutionary-services-section {
        padding: 3rem 0;
    }

    .service-card-revolutionary {
        min-height: 380px;
    }

    .service-header {
        padding: 1rem 1rem 0.5rem;
    }

    .service-content-revolutionary {
        padding: 0 1rem 1rem;
    }

    .service-title-revolutionary {
        font-size: 1.2rem;
    }

    .service-description-revolutionary {
        font-size: 0.85rem;
    }

    .revolutionary-title {
        font-size: 1.5rem;
    }

    .revolutionary-subtitle {
        font-size: 0.9rem;
    }

    .badge-content {
        padding: 8px 16px;
        font-size: 12px;
    }

    .decorative-line .line-segment {
        width: 60px;
    }

    .feature-revolutionary {
        font-size: 0.85rem;
    }

    .revolutionary-btn {
        padding: 10px 16px;
    }

    .btn-text {
        font-size: 0.8rem;
    }
}

/* Animation Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    .particle,
    .pattern,
    .orb,
    .card-particle,
    .holographic-border,
    .icon-glow,
    .badge-glow,
    .btn-glow {
        animation: none;
    }

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

/* Blog Footer Styles Fix */
.footer {
    background: #1a1a1a !important;
    color: white !important;
    padding: 60px 0 20px !important;
    margin-top: 0 !important;
}

.footer .footer-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto 2rem auto !important;
}

.footer .footer-section h4 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #00BFA6 !important;
}

.footer .footer-section ul {
    list-style: none !important;
    padding: 0 !important;
}

.footer .footer-section ul li {
    margin-bottom: 0.5rem !important;
}

.footer .footer-section ul li a {
    color: #ccc !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer .footer-section ul li a:hover {
    color: #00BFA6 !important;
}

.footer .footer-logo img {
    height: 60px !important;
    width: auto !important;
    margin-bottom: 1rem !important;
    transition: transform 0.3s ease !important;
}

.footer .footer-logo img:hover {
    transform: scale(1.05) !important;
}

.footer .footer-logo p {
    color: #ccc !important;
    line-height: 1.6 !important;
}

.footer .social-links {
    display: flex !important;
    gap: 1rem !important;
}

.footer .social-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: #333 !important;
    color: white !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.footer .social-link:hover {
    background: #00BFA6 !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.footer .footer-bottom {
    border-top: 1px solid #333 !important;
    padding-top: 2rem !important;
    text-align: center !important;
    color: #999 !important;
}

/* Blog Footer Responsive */
@media (max-width: 991px) {
    .footer .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 767px) {
    .footer .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 2rem !important;
    }

    .footer .social-links {
        justify-content: center !important;
    }

    .footer {
        padding: 40px 0 20px !important;
    }
}

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .services-grid,
    .steps-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 180px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card,
    .service-card,
    .step-card,
    .tool-card {
        padding: 1.5rem;
    }

    .blog-content {
        padding: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #00BFA6 0%, #00A693 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FF6B6B;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* About Page Styles */
.about-section,
.mission-section {
    padding: 80px 0;
}

.about-section {
    background: white;
}

.mission-section {
    background: #f6f9fc;
}

.about-content,
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content {
    grid-template-columns: 1fr 1fr;
}

.about-text h2,
.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p,
.mission-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-image img,
.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00BFA6, #00A693);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f6f9fc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-role {
    color: #00BFA6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p:last-child {
    color: #666;
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B6B, #ff5252);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00BFA6;
    margin-bottom: 0.5rem;
}

.stat-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.stat-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #333 0%, #222 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-intro p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.success-message,
.error-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-section h3,
.contact-info-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Form Styles */
.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00BFA6;
    box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info Styles */
.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00BFA6, #00A693);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
    color: white;
}

.info-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.info-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.quick-contact {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.quick-contact h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-contact-buttons .btn {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-intro h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .quick-contact-buttons {
        flex-direction: column;
    }

    .about-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2,
    .mission-text h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .values-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Privacy Policy Styles */
.privacy-section {
    padding: 80px 0;
    background: white;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #00BFA6;
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #333;
}

.policy-section p {
    color: #666;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Tool Page Styles */
.tool-page {
    padding: 80px 0;
    background: white;
}

.tool-container {
    max-width: 800px;
    margin: 0 auto;
}

.tool-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tool-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.tool-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.tool-interface {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.tool-input {
    margin-bottom: 1.5rem;
}

.tool-input label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.tool-input textarea,
.tool-input input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.tool-input textarea:focus,
.tool-input input:focus {
    outline: none;
    border-color: #00BFA6;
    box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1);
}

.tool-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tool-output {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    min-height: 100px;
}

.tool-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00BFA6;
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

.copy-button {
    background: #00BFA6;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.copy-button:hover {
    background: #00A693;
}

.copy-button:active {
    transform: scale(0.98);
}

/* Responsive adjustments for tools */
@media (max-width: 768px) {
    .tool-buttons {
        flex-direction: column;
    }

    .tool-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .tool-header h1 {
        font-size: 2rem;
    }
}

/* Tools Page Specific Styles */
.tools-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.tools-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.tools-intro p {
    font-size: 1.125rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-tools {
    padding: 80px 0;
    background: white;
}

.related-tools {
    padding: 80px 0;
    background: #f6f9fc;
}

.tool-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.tool-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #00BFA6;
    padding-bottom: 0.5rem;
}

.tool-info ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.tool-info li {
    margin-bottom: 0.75rem;
    color: #666;
    line-height: 1.6;
}

.tool-info strong {
    color: #333;
    font-weight: 600;
}

/* Additional responsive styles */
@media (max-width: 480px) {
    .tools-intro h2 {
        font-size: 2rem;
    }

    .tool-interface {
        padding: 1.5rem;
    }

    .tool-stats {
        grid-template-columns: 1fr;
    }
}

/* Blog Page Styles */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.blog-intro p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
    height: auto;
    min-height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.blog-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-height: none;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.blog-date {
    color: #999;
}

.blog-category {
    background: #00BFA6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content h3 a {
    color: #333;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: block;
}

.blog-content h3 a:hover {
    color: #00BFA6;
}

.blog-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #00BFA6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #00A693;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-link {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-link:hover,
.pagination-link.active {
    background: #00BFA6;
    border-color: #00BFA6;
    color: white;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00BFA6 0%, #00A693 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    white-space: nowrap;
}

/* Blog Preview Section Styles */
.blog-preview {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: auto;
    min-height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.blog-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: none;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.blog-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #00BFA6;
}

.blog-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.blog-date {
    color: #666;
}

.blog-category {
    color: #00BFA6;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Blog Post Page Styles */
.blog-post {
    padding: 80px 0;
    background: white;
}

.blog-post-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.3;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #666;
}

.blog-post-featured-image {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: none;
}

.blog-post-content {
    line-height: 1.8;
    color: #333;
}

.blog-post-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #333;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #333;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    color: #666;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

.blog-post-content blockquote {
    border-left: 4px solid #00BFA6;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

/* Table Styling for Blog Content */
.blog-post-content table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 20px 0 !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.blog-post-content table th {
    background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
    color: white !important;
    padding: 15px 12px !important;
    text-align: left !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border: none !important;
}

.blog-post-content table td {
    padding: 12px !important;
    border-bottom: 1px solid #e5e7eb !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #374151 !important;
}

.blog-post-content table tr:nth-child(even) {
    background-color: #f9fafb !important;
}

.blog-post-content table tr:hover {
    background-color: #f3f4f6 !important;
    transition: background-color 0.2s ease !important;
}

.blog-post-content table tr:last-child td {
    border-bottom: none !important;
}

.blog-post-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.blog-post-tags h4 {
    margin-bottom: 1rem;
    color: #333;
}

.tag {
    display: inline-block;
    background: #f1f5f9;
    color: #64748b;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.tag:hover {
    background: #00BFA6;
    color: white;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-intro h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .blog-post-container {
        max-width: 95%;
        padding: 0 15px;
    }

    .blog-post-content {
        font-size: 1rem;
    }

    .blog-post-content h2 {
        font-size: 1.5rem;
    }

    .blog-post-content h3 {
        font-size: 1.3rem;
    }

    /* Responsive table styling */
    .blog-post-content table {
        font-size: 12px !important;
    }

    .blog-post-content table th,
    .blog-post-content table td {
        padding: 8px 6px !important;
    }
}

/* Tablet responsive design */
@media (max-width: 1024px) {
    .blog-post-container {
        max-width: 90%;
        padding: 0 25px;
    }
}

/* Large mobile responsive design */
@media (max-width: 768px) {
    .blog-post-container {
        max-width: 95%;
        padding: 0 20px;
    }

    .blog-post {
        padding: 60px 0;
    }

    .blog-post-content {
        line-height: 1.7;
    }

    .blog-post-content ul,
    .blog-post-content ol {
        padding-left: 1.5rem;
    }

    .blog-post-content blockquote {
        padding-left: 1rem;
        margin: 1.5rem 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        margin: 0 auto;
        max-width: 100%;
    }
}

/* Extra responsive design for very small screens */
@media (max-width: 480px) {
    .blog-post-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .blog-grid {
        gap: 1rem;
    }

    .blog-content {
        padding: 1rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-showcase {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.service-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.service-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.why-choose-us {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #25D366;
    color: white;
}

.btn-primary:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.trust-item i {
    font-size: 1.2rem;
}

.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-author strong {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid,
    .features-grid,
    .contact-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Modern Tools Section Styling */
.modern-tools-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.modern-tool-card {
    height: 100%;
    transition: all 0.3s ease;
}

.tool-card-inner {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(111, 66, 193, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-tool-card:hover .tool-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.2);
    border-color: rgba(111, 66, 193, 0.3);
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6f42c1, #5a2d91);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.modern-tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(111, 66, 193, 0.3);
}

.tool-badge .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tool-content {
    text-align: center;
}

.tool-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.tool-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tool-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #495057;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.tool-action {
    margin-top: auto;
}

.btn-tool {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-tool:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-tool::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.6s ease;
}

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

/* Tool Card Background Pattern */
.tool-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(111, 66, 193, 0.05), transparent);
    border-radius: 0 20px 0 100px;
    transition: all 0.3s ease;
}

.modern-tool-card:hover .tool-card-inner::before {
    background: linear-gradient(45deg, rgba(111, 66, 193, 0.1), transparent);
    transform: scale(1.2);
}

/* Responsive Design for Tools */
@media (max-width: 768px) {
    .tool-card-inner {
        padding: 1.5rem;
    }

    .tool-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .tool-title {
        font-size: 1.1rem;
    }

    .tool-description {
        font-size: 0.9rem;
    }

    .btn-tool {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .modern-tools-section {
        padding: 3rem 0;
    }

    .tool-card-inner {
        padding: 1.25rem;
    }

    .feature-item {
        font-size: 0.85rem;
    }
}

/* Light Cyber Tool Cards Styling Override */
.cyber-tool-card .cyber-card-inner {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(111, 66, 193, 0.2) !important;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.cyber-tool-card:hover .cyber-card-inner {
    transform: translateY(-10px);
    border-color: rgba(111, 66, 193, 0.4) !important;
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.2) !important;
}

.cyber-tool-card .cyber-title {
    color: #212529 !important;
}

.cyber-tool-card .cyber-desc {
    color: #6c757d !important;
}

.cyber-tool-card .tool-id {
    color: #6c757d !important;
}

.cyber-tool-card .icon-container {
    background: linear-gradient(135deg, #6f42c1, #5a2d91) !important;
    border: none !important;
}

.cyber-tool-card .icon-container i {
    color: white !important;
}

.cyber-tool-card .cyber-stats {
    background: rgba(111, 66, 193, 0.05) !important;
    border: 1px solid rgba(111, 66, 193, 0.1) !important;
}

.cyber-tool-card .stat-value {
    color: #6f42c1 !important;
}

.cyber-tool-card .access-btn {
    background: linear-gradient(135deg, #6f42c1, #5a2d91) !important;
    border: 2px solid transparent !important;
}

.cyber-tool-card .access-btn:hover {
    box-shadow: 0 10px 25px rgba(111, 66, 193, 0.3) !important;
}

/* Light Circuit Background Override */
.revolutionary-tools-section .circuit-line {
    background: linear-gradient(90deg, transparent, rgba(111, 66, 193, 0.2), transparent) !important;
}

.revolutionary-tools-section .node {
    background: #6f42c1 !important;
    box-shadow: 0 0 10px rgba(111, 66, 193, 0.5) !important;
}

.revolutionary-tools-section .rain-drop {
    color: rgba(111, 66, 193, 0.3) !important;
}

/* Light Futuristic Badge Override */
.revolutionary-tools-section .futuristic-badge .badge-content {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid rgba(111, 66, 193, 0.3) !important;
    color: #6f42c1 !important;
}

.revolutionary-tools-section .futuristic-badge .badge-glow {
    background: linear-gradient(45deg, rgba(111, 66, 193, 0.1), rgba(0, 123, 255, 0.1)) !important;
}

/* Light Title Override */
.revolutionary-tools-section .futuristic-title {
    text-shadow: none !important;
}

.revolutionary-tools-section .title-glitch::before {
    color: rgba(111, 66, 193, 0.3) !important;
}

.revolutionary-tools-section .title-glitch::after {
    color: rgba(0, 123, 255, 0.3) !important;
}

.revolutionary-tools-section .title-underline {
    background: linear-gradient(90deg, #6f42c1, #0d6efd) !important;
}

.revolutionary-tools-section .futuristic-subtitle {
    color: #6c757d !important;
    text-shadow: none !important;
}
</pre></body></html>