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

:root {
    --primary: #4F46E5;
    --primary-dark: #3730A3;
    --primary-light: #818CF8;
    --secondary: #10B981;
    --accent: #F59E0B;
    --dark: #1F2937;
    --light: #F9FAFB;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --white: #FFFFFF;
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-primary::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: 0.5s;
    z-index: -1;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(79, 70, 229, 0.1);
    transform: translateY(-3px);
    border-color: var(--primary-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}
.section-title-gallery {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light);
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

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

/*Header css start */

        
        /* Header Styles */
        .header {
            background-color: #6222CC;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            color: white;
        }
     .nav-menu li.magento a {
            color: #e74c3c;
            font-weight: 600;
        }
        
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
        }
        
        .logo-text span {
            color: #3498db;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu li a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            padding: 10px 15px;
            display: block;
            transition: all 0.3s ease;
            border-radius: 4px;
            font-size: 15px;
        }
        
        .nav-menu li a:hover {
            color: #FBA504;
        }
        
        .nav-menu li.active a {
            color: #FBA504;
            font-weight: 600;
        }
        
        
        .cta-button {
            background: white;
            color: black;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2);
        }
        
        .cta-button:hover {
            background: linear-gradient(135deg, #2980b9, #1f6399);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #2c3e50;
            cursor: pointer;
        }
        
        /* Demo info box */
        .demo-info {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 25px;
            margin-top: 30px;
            max-width: 800px;
        }
        
        .demo-info h2 {
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .demo-info p {
            line-height: 1.6;
            margin-bottom: 15px;
            color: #555;
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        
        .feature {
            background-color: #f8f9fa;
            padding: 12px 18px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: #444;
        }
        
        .feature i {
            color: #3498db;
        }
        
        /* Responsive styles */
        @media (max-width: 1024px) {
            .header {
                padding: 0 20px;
            }
            
            .nav-menu li a {
                padding: 10px 12px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 900px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                border-radius: 0 0 10px 10px;
                z-index: 1000;
                display: none;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .nav-menu li {
                margin-bottom: 10px;
            }
            
            .nav-menu li a {
                padding: 12px 20px;
                border-radius: 6px;
            }
        }
        
        @media (max-width: 480px) {
            .header {
                padding: 0 15px;
                height: 70px;
            }
            
            .logo-text {
                font-size: 24px;
            }
            
            .cta-button {
                padding: 10px 18px;
                font-size: 13px;
            }
            
            .demo-info {
                padding: 20px;
            }
        }
/*Header css end */

/* Hero Section */
.hero {
    padding-top: 115px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0) 70%);
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    max-width: 99%;
}

.hero-content {
    flex: 45%;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 24px;
    line-height: 1.1;
    position: relative;
}

.hero-title .highlight {
    display: inline-block;
    animation: pulse 2s infinite;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    position: relative;
}

.stat h3 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    position: relative;
}

.stat p {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-image {
    flex: 70%;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.image-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-3deg);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
}

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

/* Theme Label Styles - FIXED */
.theme-label {
    position: absolute;
    top: 50%;
    right: -40px; /* Changed from left: -50px to right: -40px */
    transform: translateY(-50%);
    z-index: 10; /* Increased z-index */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 25px 15px;
    width: 170px;
    animation: floatLabel 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.theme-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.theme-label::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(10px);
}

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

.label-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.theme-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.theme-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: transparent;
    margin: 0;
    line-height: 1;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.theme-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.theme-version {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 8px 0 15px;
    font-weight: 500;
    opacity: 0.9;
}

.theme-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.feature-tag:hover {
    background: rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
    border-color: rgba(79, 70, 229, 0.3);
}

.feature-tag i {
    font-size: 0.8rem;
}

/* Fix image badge position */
.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px; /* Changed from right to left */
    z-index: 5;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
    font-size: 0.9rem;
}

/* Ensure image container has proper stacking context */
.image-container {
    position: relative;
    border-radius: var(--radius);
    overflow: visible; /* Changed from hidden to visible */
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .theme-label {
        right: -30px;
        width: 200px;
        padding: 20px 15px;
    }
    
    .theme-name {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content, .hero-image {
        flex: 100%;
        width: 100%;
    }
    
    .theme-label {
        position: absolute;
        top: -30px;
        right: 13%;
        transform: translateX(50%);
        width: 163px;
        animation: floatLabelMobile 6s ease-in-out infinite;
    }
    
    @keyframes floatLabelMobile {
        0%, 100% { 
            transform: translateX(50%) translateY(0); 
        }
        50% { 
            transform: translateX(50%) translateY(-10px); 
        }
    }
    
    .image-container {
        transform: perspective(1000px) rotateY(0deg);
        margin-top: 50px;
    }
    
    .hero-image {
        animation: none;
    }
}

@media (max-width: 768px) {
    .theme-label {
        width: 163px;
        padding: 18px 12px;
        top: -25px;
        right: 13%;
    }
    .slider-track {
        height: 400px !important;
    }
    .slide-gif{
        height: 200px;
        object-fit: cover;
    }
    .theme-name {
        font-size: 1.8rem;
    }
    
    .theme-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .image-badge {
        left: 0px !important;
        bottom: 0px !important;
        padding: 8px 15px !important;
        font-size: 0.75rem;
        background: #070a8f !important;
    }
}

@media (max-width: 480px) {
    .theme-label {
        width: 163px;
        padding: 15px 10px;
        top: -20px;
        display: none;
    }

}
/* Hero Image Container */
.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Preview Overlay - Covers entire image on hover */
.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.95), 
        rgba(139, 92, 246, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.image-container:hover .preview-overlay {
    opacity: 1;
    visibility: visible;
}

.preview-content {
    text-align: center;
    padding: 20px;
    transform: translateY(30px);
    transition: transform 0.5s ease 0.1s;
}

.image-container:hover .preview-content {
    transform: translateY(0);
}

/* Preview Button */
.preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #6366f1;
    padding: 20px 40px;
    border-radius: 50px;
    border: none;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 3;
}

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

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

.preview-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: white;
}

.preview-btn:active {
    transform: scale(0.98);
}

.preview-btn i {
    font-size: 2.2rem;
    transition: transform 0.3s ease;
}

.preview-btn:hover i {
    transform: scale(1.2);
    color: #8b5cf6;
}

.preview-text {
    color: white;
    margin-top: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.image-container:hover .preview-text {
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Animation for button entry */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for preview button */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
                    0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
                    0 0 0 15px rgba(255, 255, 255, 0);
    }
}

.preview-btn {
    animation: pulseGlow 3s infinite;
}

/* Add ripple effect on click */
.preview-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.preview-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Theme Label Styles */
.theme-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.theme-label:hover {
    z-index: 5; /* Ensure it stays above overlay */
}

/* Original Image Badge */
.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: bounce 2s infinite;
}

.image-badge:hover {
    z-index: 5; /* Ensure it stays above overlay */
}

/* Float animation for theme label */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Bounce animation for image badge */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .preview-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .preview-btn i {
        font-size: 1.8rem;
    }
    
    .preview-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .image-container {
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .preview-btn {
        padding: 14px 25px;
        font-size: 1rem;
        gap: 10px;
    }
    
    .preview-btn i {
        font-size: 1.5rem;
    }
    
    .preview-text {
        font-size: 0.9rem;
        margin-top: 15px;
    }
    
    .theme-label {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .preview-btn {
        padding: 6px 15px;
        font-size: 0.95rem;
        gap: 8px;
        border-radius: 30px;
        align-items: center;
    }
    
    .preview-btn i {
        font-size: 1.8rem;
    }
    
    .preview-text {
        font-size: 0.85rem;
        margin-top: 12px;
    }
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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='%234F46E5' 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");
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-accent);
    transition: var(--transition);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg) scale(1.1);
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Performance Section */
.performance {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.performance::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0) 70%);
}

.performance-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.performance .section-title,
.performance .section-subtitle {
    color: var(--white);
}

.performance-metrics {
    margin: 60px 0 80px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric {
    margin-bottom: 40px;
}

.metric:last-child {
    margin-bottom: 0;
}

.metric-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.95rem;
}

.metric-bar {
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bar span {
    position: relative;
    z-index: 1;
    padding: 0 15px;
    white-space: nowrap;
}

.bar.traditional {
    background: linear-gradient(90deg, var(--gray) 0%, #9CA3AF 100%);
}

.bar.traditional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

.bar.hyva {
    background: var(--gradient-primary);
}

.bar.hyva::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: slide 3s infinite;
}

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

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-light);
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.stat-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.stat-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.stat-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
}

.pricing-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

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

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 8px 40px;
    font-weight: 700;
    font-size: 0.85rem;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.price {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.8rem;
    vertical-align: top;
    color: var(--gray);
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.period {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
}

.pricing-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

.pricing-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.pricing-features i.fa-check {
    color: var(--secondary);
    font-size: 1.1rem;
    background: rgba(16, 185, 129, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-features i.fa-times {
    color: var(--gray-light);
    font-size: 1.1rem;
}

.pricing-card .btn-primary {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    padding: 18px 32px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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%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");
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-section .logo h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px) rotate(10deg);
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-section ul li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 40px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-15px);
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding-top: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    .performance-metrics{
        padding:15px !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .performance-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
    .image-container {
        height: 250px;
        margin: 0 !important;
    }
    .image-container img {
        height: 250px;
        object-fit: cover;
    }
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .metric-bar {
        height: 40px;
    }
    
    .bar span {
        font-size: 0.8rem;
        padding: 0 10px;
    }
    
    .pricing-card {
        padding: 40px 25px;
    }
    
    .amount {
        font-size: 3rem;
    }
}



/* New Pricing Elements */
.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.pricing-note i {
    color: var(--primary);
    margin-top: 2px;
}

.pricing-note span {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.hourly-rate {
    text-align: center;
}
.hourly-rate-middle {
    margin: 25px 0;
    text-align: center;
}

.rate-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.rate-badge.premium {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}

.rate-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.rate-amount {
    font-size: 1.2rem;
    font-weight: 700;
}

.rate-description {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 5px;
}

.included-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0 25px;
    padding: 12px 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius);
    color: var(--secondary);
    font-weight: 500;
    font-size: 14px;
}

.included-hours i {
    font-size: 1.1rem;
}





/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 50px 0;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
}

/* Form Styles */
.purchase-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
    font-size: 0.9rem;
    width: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    padding-right: 3rem;
    cursor: pointer;
}

.form-group select:invalid {
    color: var(--gray);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 5px;
}

.char-counter span {
    font-weight: 600;
    color: var(--dark);
}

/* Checkbox Styles */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-light);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.checkbox-wrapper input[type="checkbox"]:checked + label .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-wrapper input[type="checkbox"]:checked + label .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
}

.checkbox-text {
    font-size: 0.95rem;
    color: gray;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
    font-weight: 400;
    font-style: italic;
}

/* Error Messages */
.error-message {
    color: #EF4444;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #EF4444;
}

.form-group.error .error-message {
    display: block;
}

/* Form Actions */
.form-actions {
    margin-top: 10px;
    text-align: center;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 15px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    max-width: 300px;
    position: relative;
    overflow: hidden;
}

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

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.submit-btn:disabled::before {
    display: none;
}

.submit-btn i {
    font-size: 1.2rem;
}

.form-footer {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-light);
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-footer i {
    color: var(--secondary);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid var(--secondary);
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.success-message h3 {
    font-size: 2rem;
    color: var(--darker);
    margin-bottom: 15px;
}

.success-message p {
    color: var(--gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

#newRequestBtn {
    margin-top: 30px;
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .submit-btn {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}









/* for image gallery  */
/* Gallery Section - Horizontal Overlapping */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6366f1, #8b5cf6, transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}


.section-title .highlight {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}


/* Slider Container */
.gallery-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
    border: 2px solid rgba(99, 102, 241, 0.5);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(99, 102, 241, 0.4);
    transform: translateY(-50%) scale(1.1);
    border-color: #6366f1;
}

.prev-slide {
    left: 0;
}

.next-slide {
    right: 0;
}

/* Slider Track */
.slider-track {
    display: flex;
    gap: 0;
    position: relative;
    height: 650px;
    overflow: visible;
}

/* Gallery Slide - Base Styles */
.gallery-slide {
    position: absolute;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.85);
    z-index: 1;
    left: 50%;
    top: 0;
}

/* Slide 1 - Horizontal Layout (Landscape) */
.gallery-slide[data-index="0"] {
    width: 800px;
    /* height: 450px; */
    margin-left: -400px;
    transform: scale(0.85) translateX(-150px);
}

.gallery-slide[data-index="0"].active {
    transform: scale(1) translateX(-150px);
}

/* Slide 1 Content - Horizontal Layout */
.gallery-slide[data-index="0"] .slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

/* Slides 2 & 3 - Vertical Layout (Portrait) */
.gallery-slide[data-index="1"],
.gallery-slide[data-index="2"] {
    width: 900px;
    /* height: 600px; */
    margin-left: -250px;
}

/* Slide 2 Positioning */
.gallery-slide[data-index="1"] {
    transform: scale(0.9) translateX(0);
}

.gallery-slide[data-index="1"].active {
    transform: scale(1) translateX(0);
}

/* Slide 3 Positioning */
.gallery-slide[data-index="2"] {
    transform: scale(0.85) translateX(150px);
}

.gallery-slide[data-index="2"].active {
    transform: scale(1) translateX(150px);
}

/* Slide 2 & 3 Content - Vertical Layout */
.gallery-slide[data-index="1"] .slide-content,
.gallery-slide[data-index="2"] .slide-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

/* Slide Media - Adjustments for Portrait Slides */
.gallery-slide[data-index="1"] .slide-media,
.gallery-slide[data-index="2"] .slide-media {
    height: 60%;
    flex-shrink: 0;
}

.gallery-slide[data-index="1"] .slide-info,
.gallery-slide[data-index="2"] .slide-info {
    height: 40%;
    padding: 25px;
    overflow-y: auto;
}

/* Slide 4 - Coming Soon (Portrait) */
.gallery-slide[data-index="3"] {
    width: 500px;
    height: 600px;
    margin-left: -250px;
    transform: scale(0.8) translateX(300px);
    opacity: 0.3;
}

.gallery-slide[data-index="3"].active {
    transform: scale(0.9) translateX(300px);
    opacity: 1;
}

/* Slide 4 Content - Vertical Layout */
.gallery-slide[data-index="3"] .slide-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.gallery-slide[data-index="3"] .slide-media {
    height: 50%;
}

.gallery-slide[data-index="3"] .slide-info {
    height: 50%;
    padding: 25px;
}

/* Slide Content - Base Styles */
.slide-content {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    height: 100%;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

/* Slide Media */
.slide-media {
    position: relative;
    overflow: hidden;
}

.slide-gif {
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    filter: brightness(0.9);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-slide.active .slide-gif {
    filter: brightness(1);
    transform: scale(1.05);
}

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.9), rgba(139, 92, 246, 0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-slide.active:hover .slide-overlay {
    opacity: 1;
}

.play-indicator {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.gallery-slide.active:hover .play-indicator {
    transform: scale(1);
    animation: pulse 2s infinite;
}

.play-indicator i {
    font-size: 2rem;
    color: white;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Slide Badge */
.slide-badge {
    position: absolute;
    top: 2px;
    right: 6px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
}

.gallery-slide.active .slide-badge {
    transform: translateY(0);
    opacity: 1;
}

/* Slide Info - Base Styles */
.slide-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Adjustments for Portrait Slides */
.gallery-slide[data-index="1"] .slide-info,
.gallery-slide[data-index="2"] .slide-info,
.gallery-slide[data-index="3"] .slide-info {
    padding: 30px;
    justify-content: flex-start;
}

.slide-header {
    margin-bottom: 25px;
}

.slide-header h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

/* Adjust heading size for portrait slides */
.gallery-slide[data-index="1"] .slide-header h3,
.gallery-slide[data-index="2"] .slide-header h3,
.gallery-slide[data-index="3"] .slide-header h3 {
    font-size: 1.8rem;
}

.slide-tags {
    display: flex;
    gap: 15px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.speed-tag {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.responsive-tag {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.1));
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.ui-tag {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.upcoming-tag {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.slide-description {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Adjust description size for portrait slides */
.gallery-slide[data-index="1"] .slide-description,
.gallery-slide[data-index="2"] .slide-description,
.gallery-slide[data-index="3"] .slide-description {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Slide Stats */
.slide-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Adjust stats layout for portrait slides */
.gallery-slide[data-index="1"] .slide-stats,
.gallery-slide[data-index="2"] .slide-stats,
.gallery-slide[data-index="3"] .slide-stats {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
}

.stat i {
    color: #6366f1;
    font-size: 1.3rem;
}

/* Buttons */
.view-demo-btn,
.notify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 30px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.view-demo-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.view-demo-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: 0.5s;
}

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

.view-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.notify-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

/* Coming Soon */
.coming-soon .slide-media {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-placeholder {
    text-align: center;
    padding: 40px;
}

.coming-soon-placeholder i {
    font-size: 4rem;
    color: #475569;
    margin-bottom: 20px;
    display: block;
}

.coming-soon-placeholder h4 {
    color: #e2e8f0;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 700;
}

.coming-soon-placeholder p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.coming-soon-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.coming-soon-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 1rem;
}

.coming-soon-features i {
    color: #10b981;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    background: #6366f1;
    transform: scale(1.3);
}

.dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #6366f1;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Fullscreen Modal */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fullscreen-modal.active {
    display: flex;
    opacity: 1;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    background: #1e293b;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

#modalGif {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: #0f172a;
}

.modal-info {
    padding: 30px;
    background: #1e293b;
    border-top: 1px solid #334155;
}

.modal-info h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.modal-info p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.modal-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
    border: 2px solid rgba(99, 102, 241, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(99, 102, 241, 0.4);
    transform: scale(1.1);
}

.control-btn i {
    font-size: 1.5rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.section-header {
    animation: slideIn 0.8s ease;
}

/* Responsive Design */
@media (max-width: 1400px) {
    /* Slide 1 */
    .gallery-slide[data-index="0"] {
        width: 700px;
        height: 400px;
        margin-left: -350px;
    }
    
    /* Slides 2, 3, 4 */
    .gallery-slide[data-index="1"],
    .gallery-slide[data-index="2"],
    .gallery-slide[data-index="3"] {
        width: 450px;
        height: 550px;
        margin-left: -225px;
    }
    
    .slider-track {
        height: 600px;
    }
}

@media (max-width: 1200px) {
    /* Slide 1 */
    .gallery-slide[data-index="0"] {
        width: 600px;
        height: 350px;
        margin-left: -300px;
    }
    
    /* Slides 2, 3, 4 */
    .gallery-slide[data-index="1"],
    .gallery-slide[data-index="2"],
    .gallery-slide[data-index="3"] {
        width: 400px;
        height: 500px;
        margin-left: -200px;
    }
    
    .slide-info {
        padding: 30px;
    }
    
    .slide-header h3 {
        font-size: 1.8rem;
    }
    
    .slider-track {
        height: 550px;
    }
}

@media (max-width: 992px) {
    .gallery-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-slider {
        padding: 0 40px;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* All slides become portrait on tablet */
    .gallery-slide {
        width: 400px !important;
        height: 500px !important;
        margin-left: -200px !important;
    }
    
    /* Force all slides to portrait layout on tablet */
    .gallery-slide .slide-content {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .gallery-slide .slide-media {
        height: 50% !important;
    }
    
    .gallery-slide .slide-info {
        height: 50% !important;
        padding: 25px !important;
    }
    
    .gallery-slide[data-index="0"] {
        transform: scale(0.85) translateX(-100px) !important;
    }
    
    .gallery-slide[data-index="0"].active {
        transform: scale(1) translateX(-100px) !important;
    }
    
    .gallery-slide[data-index="1"] {
        transform: scale(0.9) translateX(0) !important;
    }
    
    .gallery-slide[data-index="1"].active {
        transform: scale(1) translateX(0) !important;
    }
    
    .gallery-slide[data-index="2"] {
        transform: scale(0.85) translateX(100px) !important;
    }
    
    .gallery-slide[data-index="2"].active {
        transform: scale(1) translateX(100px) !important;
    }
    
    .gallery-slide[data-index="3"] {
        transform: scale(0.8) translateX(200px) !important;
    }
    
    .gallery-slide[data-index="3"].active {
        transform: scale(0.9) translateX(200px) !important;
    }
    
    .slider-track {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .gallery-slide {
        width: 320px !important;
        height: 450px !important;
        margin-left: -160px !important;
    }
    
    .slide-info {
        padding: 20px !important;
    }
    
    .slide-header h3 {
        font-size: 1.5rem !important;
    }
    
    .slide-description {
        font-size: 0.95rem !important;
    }
    
    .slide-stats {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 15px !important;
    }
    
    .view-demo-btn,
    .notify-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .coming-soon-placeholder i {
        font-size: 3rem;
    }
    
    .coming-soon-placeholder h4 {
        font-size: 1.5rem;
    }
    
    /* Adjust positioning for mobile */
    .gallery-slide[data-index="0"] {
        transform: scale(0.85) translateX(-80px) !important;
    }
    
    .gallery-slide[data-index="0"].active {
        transform: scale(1) translateX(-80px) !important;
    }
    
    .gallery-slide[data-index="1"] {
        transform: scale(0.9) translateX(0) !important;
    }
    
    .gallery-slide[data-index="1"].active {
        transform: scale(1) translateX(0) !important;
    }
    
    .gallery-slide[data-index="2"] {
        transform: scale(0.85) translateX(80px) !important;
    }
    
    .gallery-slide[data-index="2"].active {
        transform: scale(1) translateX(80px) !important;
    }
    
    .gallery-slide[data-index="3"] {
        transform: scale(0.8) translateX(160px) !important;
        opacity: 0.2 !important;
    }
    
    .gallery-slide[data-index="3"].active {
        transform: scale(0.9) translateX(160px) !important;
        opacity: 0.8 !important;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .gallery-slider {
        padding: 0 20px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-slide {
        width: 280px !important;
        height: 400px !important;
        margin-left: -140px !important;
    }
    
    .slide-media {
        height: 50% !important;
    }
    
    .slide-badge {
        top: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .play-indicator {
        width: 60px;
        height: 60px;
    }
    
    .play-indicator i {
        font-size: 1.5rem;
    }
    
    .overlay-content h4 {
        font-size: 1.4rem;
    }
    
    .modal-content {
        padding: 10px;
    }
    
    #modalGif {
        height: 300px;
    }
    
    .modal-info {
        padding: 20px;
    }
    
    .modal-info h3 {
        font-size: 1.5rem;
    }
    
    /* Adjust positioning for very small screens */
    .gallery-slide[data-index="0"] {
        transform: scale(0.85) translateX(-60px) !important;
    }
    
    .gallery-slide[data-index="0"].active {
        transform: scale(1) translateX(-60px) !important;
    }
    
    .gallery-slide[data-index="1"] {
        transform: scale(0.9) translateX(0) !important;
    }
    
    .gallery-slide[data-index="1"].active {
        transform: scale(1) translateX(0) !important;
    }
    
    .gallery-slide[data-index="2"] {
        transform: scale(0.85) translateX(60px) !important;
    }
    
    .gallery-slide[data-index="2"].active {
        transform: scale(1) translateX(60px) !important;
    }
    
    .gallery-slide[data-index="3"] {
        transform: scale(0.8) translateX(120px) !important;
        opacity: 0.1 !important;
    }
    
    .gallery-slide[data-index="3"].active {
        transform: scale(0.9) translateX(120px) !important;
        opacity: 0.6 !important;
    }
}


/*form submite */
    /* Success and Error Message Styles */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #f5c6cb;
}

.success-icon, .error-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.success-icon {
    color: #28a745;
}

.error-icon {
    color: #dc3545;
}

/* Loading spinner */
.fa-spinner.fa-spin {
    margin-right: 8px;
}
