:root {
    --primary-color: #0A2463;
    --secondary-color: #3E92CC;
    --accent-color: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #2C3E50;
    --gradient-blue: linear-gradient(135deg, #0A2463 0%, #3E92CC 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fafafa;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Header */
.header-area {
    background: var(--gradient-blue);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.nav-link {
    color: var(--accent-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-blue);
    color: var(--accent-color);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23ffffff" d="M0,50 Q360,0 720,50 T1440,50 L1440,100 L0,100 Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease;
    opacity: 0.95;
    font-weight: 400;
}

.btn-primary-custom {
    background: var(--gradient-blue);
    color: var(--accent-color);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(10, 36, 99, 0.25);
    letter-spacing: 0.5px;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #3E92CC 0%, #0A2463 100%);
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-primary-custom:hover::before {
    width: 400%;
    height: 400%;
}

.btn-primary-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(10, 36, 99, 0.35);
    color: var(--accent-color);
}

.btn-primary-custom:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.3);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--accent-color);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 3px solid var(--accent-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-secondary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-color);
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-secondary-custom:hover::before {
    width: 400%;
    height: 400%;
}

.btn-secondary-custom:hover {
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Service Cards */
.service-card {
    background: var(--accent-color);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(62, 146, 204, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(10, 36, 99, 0.15);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 4rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-5deg);
}

.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-title {
    color: var(--secondary-color);
}

.service-description {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Pricing Cards */
.pricing-card {
    background: var(--accent-color);
    border-radius: 30px;
    padding: 3.5rem 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 3px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(62, 146, 204, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.5s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover::after {
    opacity: 1;
    top: -50%;
    left: -50%;
}

.pricing-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 60px rgba(10, 36, 99, 0.2);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-width: 4px;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-20px) scale(1.08);
}

.pricing-card.featured::before {
    height: 8px;
    transform: scaleX(1);
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.pricing-price small {
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 1.05rem;
    color: #555;
}

.pricing-features li:hover {
    padding-left: 15px;
    color: var(--secondary-color);
    background: rgba(62, 146, 204, 0.03);
    border-radius: 8px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    font-size: 1.2rem;
    margin-right: 10px;
}

/* Product Cards */
.product-card {
    background: var(--accent-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-body {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-category {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Forms */
.form-control {
    border-radius: 10px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(62, 146, 204, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer-area {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 60px 0 20px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.8rem;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}


/* Dropdown Menu Styling */
.dropdown-menu {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
    padding-left: 2rem;
}

.dropdown-item i {
    font-size: 1.1rem;
}

.dropdown-divider {
    border-color: rgba(255,255,255,0.2);
}

.nav-item .btn-success {
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
}

.nav-item .btn-success:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.4);
}


/* Badge Styling */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Image Placeholder Styling */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.img-fluid:hover {
    transform: scale(1.05);
}

/* Stats Section Enhancement */
.section-padding.bg-light {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Testimonial Stars */
.bi-star-fill {
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

/* List Styling */
.list-unstyled li {
    position: relative;
    padding-left: 0;
}

.list-unstyled .bi-check,
.list-unstyled .bi-check-circle {
    font-size: 1.2rem;
}

/* Alert Styling */
.alert {
    border-radius: 15px;
    border: none;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Hover Effects */
.card-hover-effect {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Section Background Patterns */
.section-padding:nth-child(even) {
    position: relative;
}

.section-padding:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(62, 146, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 36, 99, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Icon Animations */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

.service-card:hover .service-icon {
    animation: none;
}

/* Improved Form Styling */
.form-control {
    border-radius: 12px;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(62, 146, 204, 0.15);
    transform: translateY(-2px);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Button Group Spacing */
.hero-buttons .btn-primary-custom,
.hero-buttons .btn-secondary-custom {
    margin: 0.5rem;
}

/* Responsive Image Container */
.img-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    background: white;
    padding: 1rem;
    transition: all 0.4s ease;
}

.img-container:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.img-container svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Dropdown */
.dropdown-menu {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .pricing-price {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .header-area,
    .footer-area,
    .btn-primary-custom,
    .btn-secondary-custom {
        display: none;
    }
}


/* ============================================
   MODERN ILLUSTRATION STYLES
   ============================================ */

.illustration-wrapper {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.2);
    animation: float 6s ease-in-out infinite;
}

.float-item i {
    font-size: 28px;
}

.float-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    background: linear-gradient(135deg, #3E92CC 0%, #0A2463 100%);
}

.float-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.float-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 1.5s;
    background: linear-gradient(135deg, #0A2463 0%, #3E92CC 100%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* Main Illustration Container */
.main-illustration {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
}

/* Browser Window Mockup */
.browser-window {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.browser-window:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

.browser-header {
    background: var(--gradient-blue);
    padding: 15px 20px;
    display: flex;
    gap: 8px;
}

.browser-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    opacity: 0.8;
}

.browser-content {
    padding: 30px;
    min-height: 300px;
}

.code-line {
    height: 12px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, transparent 100%);
    border-radius: 6px;
    margin-bottom: 15px;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.code-line.short {
    width: 60%;
    animation-delay: 0.2s;
}

.code-line.medium {
    width: 80%;
    animation-delay: 0.4s;
}

.preview-box {
    margin-top: 30px;
    height: 150px;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.05) 0%, rgba(62, 146, 204, 0.05) 100%);
    border-radius: 15px;
    border: 2px dashed var(--secondary-color);
    opacity: 0.5;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotateY(5deg) rotateX(-5deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

.dashboard-header {
    height: 40px;
    background: var(--gradient-blue);
    border-radius: 10px;
    margin-bottom: 20px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    height: 80px;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.1) 0%, rgba(62, 146, 204, 0.1) 100%);
    border-radius: 12px;
    animation: pulse 3s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-card:nth-child(3) {
    animation-delay: 1s;
}

.dashboard-chart {
    height: 200px;
    background: linear-gradient(180deg, rgba(62, 146, 204, 0.1) 0%, transparent 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.dashboard-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--secondary-color) 20%, 
        var(--primary-color) 40%, 
        var(--secondary-color) 60%, 
        var(--primary-color) 80%, 
        transparent 100%);
    opacity: 0.2;
    clip-path: polygon(0 100%, 10% 80%, 20% 85%, 30% 70%, 40% 75%, 50% 60%, 60% 65%, 70% 50%, 80% 55%, 90% 40%, 100% 45%, 100% 100%);
}

/* Hero Illustration Specific */
.hero-illustration .float-item {
    width: 80px;
    height: 80px;
    font-size: 32px;
}

/* Responsive Illustrations */
@media (max-width: 768px) {
    .illustration-wrapper {
        min-height: 300px;
        margin-top: 30px;
    }
    
    .float-item {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .hero-illustration .float-item {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .browser-window,
    .dashboard-mockup {
        transform: none;
    }
    
    .browser-content {
        padding: 20px;
        min-height: 200px;
    }
}


/* ============================================
   SIMPLE ILLUSTRATION PLACEHOLDERS
   ============================================ */

.simple-illustration {
    position: relative;
    min-height: 350px;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.05) 0%, rgba(62, 146, 204, 0.05) 100%);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.simple-illustration::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gradient-blue);
    opacity: 0.1;
    border-radius: 50%;
    top: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.simple-illustration::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #3E92CC 0%, #0A2463 100%);
    opacity: 0.1;
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    animation: float 6s ease-in-out infinite reverse;
}

.illustration-icon {
    font-size: 120px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

/* Specific Illustration Styles */
.seo-illustration {
    background: linear-gradient(135deg, rgba(62, 146, 204, 0.08) 0%, rgba(10, 36, 99, 0.08) 100%);
}

.smm-illustration {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.08) 0%, rgba(62, 146, 204, 0.08) 100%);
}

.erp-illustration {
    background: linear-gradient(135deg, rgba(62, 146, 204, 0.06) 0%, rgba(10, 36, 99, 0.06) 100%);
}

.about-illustration {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.07) 0%, rgba(62, 146, 204, 0.07) 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .simple-illustration {
        min-height: 250px;
        padding: 30px;
        margin-top: 30px;
    }
    
    .illustration-icon {
        font-size: 80px;
    }
}


/* ============================================
   TRANSPARENT VECTOR IMAGES STYLING
   ============================================ */

.illustration-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(10, 36, 99, 0.1));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatImage 6s ease-in-out infinite;
    background: transparent;
    object-fit: contain;
}

.illustration-image:hover {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 20px 40px rgba(10, 36, 99, 0.15));
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.illustration-wrapper {
    position: relative;
    padding: 40px 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-wrapper::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(62, 146, 204, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-illustration .illustration-image {
    max-width: 550px;
}

.hero-illustration {
    min-height: 450px;
}

/* Responsive Images */
@media (max-width: 992px) {
    .illustration-wrapper {
        min-height: 300px;
        padding: 30px 15px;
    }
    
    .illustration-image {
        max-width: 400px;
    }
    
    .hero-illustration .illustration-image {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .illustration-wrapper {
        min-height: 250px;
        padding: 20px 10px;
        margin-top: 30px;
    }
    
    .illustration-image {
        max-width: 320px;
    }
    
    .hero-illustration {
        min-height: 300px;
    }
    
    .hero-illustration .illustration-image {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .illustration-wrapper {
        min-height: 200px;
        padding: 15px 5px;
    }
    
    .illustration-image {
        max-width: 280px;
    }
    
    .hero-illustration .illustration-image {
        max-width: 300px;
    }
}

/* Loading State for Images */
.illustration-image {
    opacity: 0;
    animation: fadeInImage 1s ease forwards;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Loading Placeholder */
.illustration-wrapper::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 4px solid var(--secondary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    pointer-events: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* When image is loading */
.illustration-image:not([src]),
.illustration-image[src=""] {
    opacity: 0;
}

.illustration-image:not([src]) ~ .illustration-wrapper::after,
.illustration-image[src=""] ~ .illustration-wrapper::after {
    opacity: 1;
}
