:root {
    --primary-color: #6366F1;
    --primary-light: #818CF8;
    --primary-dark: #4F46E5;
    --secondary-color: #EC4899;
    --accent-color: #10B981;
    --text-dark: #0F172A;
    --text-light: rgba(255, 255, 255, 0.9);
    --bg-dark: #0F172A;
    --bg-light: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 8px 25px rgba(95, 49, 207, 0.3);
    --primary-gradient: linear-gradient(135deg, #5F31CF, #7B4FE8);
}

html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden !important;
    position: relative;
}

body:not(.light-mode) {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* Dark mode text-muted */
body:not(.light-mode) .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Dark mode alert-light */
body:not(.light-mode) .alert-light {
    background-color: #1E293B !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

body:not(.light-mode) .alert-light .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%);
    left: 0;
    top: 0;
}

.cursor.hover {
    width: 50px;
    height: 50px;
    border-width: 2px;
    background-color: rgba(99, 102, 241, 0.1);
}

.cursor.click {
    width: 30px;
    height: 30px;
    border-width: 3px;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%);
    left: 0;
    top: 0;
    transition: opacity 0.3s ease;
}

.cursor-text {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--primary-color);
    border-radius: 4px;
    display: none;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

body, a, button, .btn, .nav-link, .dropdown-item, .filter-btn, .page-link {
    cursor: none !important;
}

input, textarea, select {
    cursor: text !important;
}

a:hover, button:hover, .btn:hover, .nav-link:hover, 
.dropdown-item:hover, .filter-btn:hover, .page-link:hover,
.service-card:hover, .product-card:hover, .portfolio-item:hover,
.testimonial-card:hover, .feature-box:hover, .blog-card:hover {
    cursor: none !important;
}

@media (max-width: 768px), (pointer: coarse) {
    body, a, button, .btn, .nav-link, .dropdown-item, .filter-btn, .page-link {
        cursor: auto !important;
    }
    
    input, textarea, select {
        cursor: text !important;
    }
    
    a:hover, button:hover, .btn:hover, .nav-link:hover, 
    .dropdown-item:hover, .filter-btn:hover, .page-link:hover,
    .service-card:hover, .product-card:hover, .portfolio-item:hover,
    .testimonial-card:hover, .feature-box:hover, .blog-card:hover {
        cursor: auto !important;
    }
    
    .cursor, .cursor-dot, .cursor-text {
        display: none !important;
    }
}

.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
}

body:not(.light-mode) .navbar {
    background-color: rgba(15, 23, 42, 0.95) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem !important;
    color: var(--primary-color) !important;
}

.navbar-brand .logo-text {
    font-size: 1.5rem !important;
}

body:not(.light-mode) .navbar-brand {
    color: white !important;
}

.navbar-brand .logo-text {
    font-size: 1.5rem !important;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7) !important;
}

body:not(.light-mode) .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

body:not(.light-mode) .nav-link:hover {
    color: white !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body:not(.light-mode) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

body:not(.light-mode) .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

body.light-mode .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

body.light-mode .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(15, 23, 42, 0.98);
        border-radius: 8px;
        margin-top: 1rem;
        padding: 1rem;
        backdrop-filter: blur(20px);
    }
    body.light-mode .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(99, 102, 241, 0.1);
    }
    .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        border: none !important;
        background-color: rgba(30, 41, 59, 0.8) !important;
        box-shadow: none !important;
    }
    body.light-mode .dropdown-menu {
        background-color: rgba(248, 250, 252, 0.98) !important;
    }
    .dropdown-item {
        padding: 0.75rem 1rem !important;
        border-radius: 4px;
        margin-bottom: 0.25rem;
    }
    body:not(.light-mode) .dropdown-menu {
        background-color: rgba(30, 41, 59, 0.98) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    }
    body:not(.light-mode) .dropdown-item {
        color: rgba(255, 255, 255, 0.9) !important;
    }
    body:not(.light-mode) .dropdown-item:hover {
        background-color: rgba(99, 102, 241, 0.2) !important;
        color: #ffffff !important;
    }
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

body:not(.light-mode) .navbar.scrolled {
    background-color: rgba(15, 23, 42, 0.95) !important;
}

.nav-item {
    margin: 0 0.25rem;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    color: inherit;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary-gradient);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.dropdown-toggle::after {
    background: none !important;
    height: 0 !important;
    width: 0 !important;
    transform: none !important;
}

.dropdown-toggle {
    position: relative;
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary-gradient);
    transition: transform 0.3s ease;
    z-index: 1;
}

.dropdown-toggle:hover::before,
.dropdown-toggle[aria-expanded="true"]::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    background-color: white;
}

body:not(.light-mode) .dropdown-menu {
    background-color: rgba(30, 41, 59, 0.98);
    border-color: rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    padding: 0.625rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

body:not(.light-mode) .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
}

.dropdown-item:hover {
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

body:not(.light-mode) .dropdown-item:hover {
    background-color: rgba(99, 102, 241, 0.2);
    color: #ffffff;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.floating-action-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: calc(100vw - 20px);
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
    text-decoration: none;
}

.floating-btn:active {
    transform: scale(0.95);
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
}

@media (max-width: 768px) {
    .floating-action-buttons {
        bottom: 15px;
        right: 15px;
        max-width: calc(100vw - 30px);
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .floating-action-buttons {
        bottom: 15px;
        right: 10px;
        max-width: calc(100vw - 20px);
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

.hero-image {
    position: relative;
    height: 500px;
    min-height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 150px;
    text-align: center;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.icon-1 {
    animation-delay: 0s;
}

.icon-2 {
    animation-delay: 0.5s;
}

.icon-3 {
    animation-delay: 1s;
}

.icon-4 {
    animation-delay: 1.5s;
}

body:not(.light-mode) .hero-icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.hero-icon span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

body:not(.light-mode) .hero-icon span {
    color: var(--text-light);
}

.icon-1 {
    top: 12%;
    left: 12%;
}

.icon-2 {
    top: 12%;
    right: 12%;
}

.icon-3 {
    bottom: 12%;
    left: 12%;
}

.icon-4 {
    bottom: 12%;
    right: 12%;
}

.hero-icon:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: var(--shadow-xl);
    animation-play-state: paused;
}

section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.hero-section {
    padding-top: 100px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section .row {
    align-items: center;
    min-height: calc(100vh - 100px);
    width: 100%;
}

.hero-content {
    padding-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(95, 49, 207, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 79, 232, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
}

body:not(.light-mode) .hero-title {
    color: white;
}

.hero-title .text-primary {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}

body:not(.light-mode) .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.services-section,
.products-section,
.portfolio-section,
.features-section,
.why-us-section,
.process-section,
.blog-section,
.about-section,
.testimonials-section,
.faq-section,
.contact-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.services-section::before,
.products-section::before,
.portfolio-section::before,
.features-section::before,
.why-us-section::before,
.process-section::before,
.blog-section::before,
.about-section::before,
.testimonials-section::before,
.faq-section::before,
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

body:not(.light-mode) .section-title {
    color: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 3rem;
}

body:not(.light-mode) .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

body.light-mode .service-card {
    background: white;
    border-color: #e5e7eb;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(95, 49, 207, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--primary-gradient);
    border-radius: 24px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 0.5;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

body:not(.light-mode) .service-card h3 {
    color: white;
}

.service-card p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
}

body:not(.light-mode) .service-card p {
    color: rgba(255, 255, 255, 0.8);
}

body.light-mode .service-card h3 {
    color: var(--text-dark);
}

body.light-mode .service-card p {
    color: rgba(0, 0, 0, 0.7);
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

body.light-mode .product-card {
    background: white;
    border-color: #e5e7eb;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover::after {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-card > * {
    position: relative;
    z-index: 1;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: rotate(5deg) scale(1.1);
}

.product-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

body:not(.light-mode) .product-card h4 {
    color: white;
}

.product-card p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
}

body:not(.light-mode) .product-card p {
    color: rgba(255, 255, 255, 0.8);
}

body.light-mode .product-card h4 {
    color: var(--text-dark);
}

body.light-mode .product-card p {
    color: rgba(0, 0, 0, 0.7);
}

.testimonials-section {
    background: #111827 !important;
    background-color: #111827 !important;
    background-image: none !important;
    color: white;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-section::before {
    display: none;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(95, 49, 207, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.blog-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.blog-card:hover::after {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
    min-width: 60px;
}

.blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-meta i {
    color: var(--primary-light);
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content h3 a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--primary-light);
}

.blog-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.blog-read-more:hover {
    gap: 0.75rem;
    color: white;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

body.light-mode .blog-meta {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .blog-content h3,
body.light-mode .blog-content h3 a {
    color: var(--text-dark);
}

body.light-mode .blog-content p {
    color: rgba(0, 0, 0, 0.7);
}

body.light-mode .blog-read-more {
    color: var(--primary-color);
}

body.light-mode .blog-read-more:hover {
    color: var(--primary-dark);
}

footer {
    background-color: #16131f !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 3rem 0 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif !important;
}

body.light-mode footer {
    background-color: #212529 !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

footer h5,
footer .footer-title {
    color: white !important;
    margin-bottom: 1rem !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
}

footer a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
}

footer a:hover {
    color: white !important;
}

footer p,
footer .footer-text {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.8 !important;
    font-size: 0.95rem !important;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 0.75rem !important;
}

.footer-links a {
    font-size: 0.95rem !important;
}

.footer-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-contact li {
    margin-bottom: 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    font-size: 0.95rem !important;
}

.footer-contact i {
    font-size: 1.125rem !important;
    color: var(--primary-light) !important;
}

.social-links {
    display: flex !important;
    gap: 1rem !important;
}

.social-link {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    color: white !important;
}

.social-link:hover {
    background: var(--primary-color) !important;
    transform: translateY(-3px) !important;
    color: white !important;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1) !important;
    margin: 2rem 0 !important;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

body.light-mode .contact-card {
    background: white;
    border-color: #e5e7eb;
}

.form-control {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
    background-color: white;
    color: var(--text-dark);
}

body:not(.light-mode) .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

body:not(.light-mode) .form-label {
    color: white;
}

.theme-toggle-btn {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: rotate(180deg);
}

body:not(.light-mode) .theme-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px 24px 0 0;
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 24px 24px;
}

body:not(.light-mode) .modal-content {
    background-color: rgba(30, 41, 59, 0.98);
    color: white;
}

body:not(.light-mode) .modal-header,
body:not(.light-mode) .modal-footer {
    border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-card {
        flex-direction: column;
        gap: 2rem;
    }
    
    .why-us-item {
        flex-direction: column;
        text-align: center;
    }
    
    .why-us-number {
        margin: 0 auto;
    }
    
    .hero-image {
        height: 450px;
    }
    
    .hero-icon {
        min-width: 130px;
        padding: 1.5rem;
    }
    
    .hero-icon i {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        padding-top: 1rem;
    }
    
    .nav-link {
        margin: 0.25rem 0;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu {
        margin-top: 0;
        margin-left: 1rem;
        box-shadow: none;
        border-left: 2px solid var(--primary-color);
        background-color: rgba(95, 49, 207, 0.05);
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
    }
    
    section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    .services-section,
    .products-section,
    .portfolio-section,
    .features-section,
    .why-us-section,
    .process-section,
    .blog-section,
    .about-section,
    .testimonials-section,
    .faq-section,
    .contact-section {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
    
    .hero-section {
        padding-top: 140px;
        padding-bottom: 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-section .row {
        min-height: calc(100vh - 100px);
        width: 100%;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 1rem;
        margin-top: 7rem;
        padding-top: 3.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
        padding: 0;
        max-width: 100%;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 0;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        margin: 0;
    }
    
    .hero-image {
        height: auto;
        min-height: 300px;
        padding: 2rem 1rem;
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
        align-items: stretch;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-icon {
        min-width: 140px;
        max-width: 160px;
        width: 100%;
        padding: 1.5rem 1rem;
        position: relative !important;
        margin: 0;
        animation: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-icon i {
        font-size: 2.75rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-icon span {
        font-size: 0.8rem;
        line-height: 1.3;
        white-space: normal;
        text-align: center;
    }
    
    .icon-1,
    .icon-2,
    .icon-3,
    .icon-4 {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        animation: none;
    }
    
    .service-card,
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-section .row {
        min-height: calc(100vh - 120px);
        width: 100%;
    }
}

@media (max-width: 576px) {
    section {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }
    
    .services-section,
    .products-section,
    .portfolio-section,
    .features-section,
    .why-us-section,
    .process-section,
    .blog-section,
    .about-section,
    .testimonials-section,
    .faq-section,
    .contact-section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    .hero-section {
        padding-top: 90px;
        padding-bottom: 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-section .row {
        min-height: calc(100vh - 90px);
        width: 100%;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        padding: 0 0.5rem;
    }
    
    .hero-buttons .btn {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
    }
    
    .hero-image {
        height: auto;
        min-height: 280px;
        padding: 1.5rem 0.5rem 1.5rem 2rem;
        margin: 1.5rem auto 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 100%;
        justify-items: center; 
        align-items: center; 
    }
    
    .hero-icon {
        min-width: 120px;
        max-width: 160px;  
        width: 100%;
        padding: 1.25rem 0.75rem;
        position: relative !important;
        margin: 0 auto;  
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-icon i {
        font-size: 2.25rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-icon span {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .icon-1,
    .icon-2,
    .icon-3,
    .icon-4 {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
    
    .service-card,
    .product-card {
        padding: 1.5rem;
    }
    
    .stats-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .why-us-card {
        padding: 1.5rem;
    }
}

body.light-mode .hero-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

body.light-mode .hero-section::before,
body.light-mode .hero-section::after {
    display: none;
}

body.light-mode .hero-title {
    color: var(--text-dark);
}

body.light-mode .hero-title .text-primary {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .hero-subtitle {
    color: rgba(0, 0, 0, 0.7);
}

body.light-mode .testimonials-section {
    background: #f9fafb !important;
    color: var(--text-dark);
}

body.light-mode .testimonial-card {
    background: white;
    border-color: #e5e7eb;
}

body.light-mode .testimonial-text {
    color: rgba(0, 0, 0, 0.8);
}

body.light-mode .testimonial-info h5 {
    color: var(--text-dark);
}

body.light-mode .testimonial-info p {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .services-section,
body.light-mode .products-section,
body.light-mode .portfolio-section,
body.light-mode .features-section,
body.light-mode .why-us-section,
body.light-mode .process-section,
body.light-mode .blog-section,
body.light-mode .about-section,
body.light-mode .faq-section,
body.light-mode .contact-section {
    background-color: #ffffff;
}

body.light-mode .service-card,
body.light-mode .product-card {
    background: white;
    border-color: #e5e7eb;
}

body.light-mode .service-card h3,
body.light-mode .product-card h4 {
    color: var(--text-dark);
}

body.light-mode .service-card p,
body.light-mode .product-card p {
    color: rgba(0, 0, 0, 0.7);
}

body.light-mode .testimonial-text {
    color: rgba(0, 0, 0, 0.8);
}

body.light-mode .testimonial-info p {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .section-title {
    color: var(--text-dark);
}

body.light-mode .section-subtitle {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .blog-meta {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .blog-content h3,
body.light-mode .blog-content h3 a {
    color: var(--text-dark);
}

body.light-mode .blog-content p {
    color: rgba(0, 0, 0, 0.7);
}

body.light-mode .blog-read-more {
    color: var(--primary-color);
}

body.light-mode .blog-read-more:hover {
    color: var(--primary-dark);
}

.portfolio-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
}

body.light-mode .portfolio-item {
    background: white;
    border-color: #e5e7eb;
}

.portfolio-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1);
    color: white;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

body:not(.light-mode) .portfolio-content h4 {
    color: white;
}

.portfolio-content p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

body:not(.light-mode) .portfolio-content p {
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.375rem 0.875rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

body:not(.light-mode) .tag {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
}

body.light-mode .portfolio-content h4 {
    color: var(--text-dark);
}

body.light-mode .portfolio-content p {
    color: rgba(0, 0, 0, 0.7);
}

.feature-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

body.light-mode .feature-box {
    background: white;
    border-color: #e5e7eb;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(95, 49, 207, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-box-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-box-icon {
    transform: rotate(5deg) scale(1.1);
}

.feature-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

body:not(.light-mode) .feature-box h4 {
    color: white;
}

.feature-box p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
}

body:not(.light-mode) .feature-box p {
    color: rgba(255, 255, 255, 0.8);
}

body.light-mode .feature-box h4 {
    color: var(--text-dark);
}

body.light-mode .feature-box p {
    color: rgba(0, 0, 0, 0.7);
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.why-us-number {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.why-us-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

body:not(.light-mode) .why-us-text h4 {
    color: white;
}

.why-us-text p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
}

body:not(.light-mode) .why-us-text p {
    color: rgba(255, 255, 255, 0.8);
}

.why-us-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

body.light-mode .why-us-card {
    background: white;
    border-color: #e5e7eb;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-us-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.why-us-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

body:not(.light-mode) .why-us-card h3 {
    color: white;
}

.why-us-card p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
}

body:not(.light-mode) .why-us-card p {
    color: rgba(255, 255, 255, 0.8);
}

body.light-mode .why-us-text h4 {
    color: var(--text-dark);
}

body.light-mode .why-us-text p {
    color: rgba(0, 0, 0, 0.7);
}

body.light-mode .why-us-card h3 {
    color: var(--text-dark);
}

body.light-mode .why-us-card p {
    color: rgba(0, 0, 0, 0.7);
}

.process-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body.light-mode .process-step {
    background: white;
    border-color: #e5e7eb;
}

.process-step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

body:not(.light-mode) .process-icon {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
}

.process-step:hover .process-icon {
    transform: rotate(5deg) scale(1.1);
    background: var(--primary-gradient);
    color: white;
}

.process-step h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

body:not(.light-mode) .process-step h4 {
    color: white;
}

.process-step p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
}

body:not(.light-mode) .process-step p {
    color: rgba(255, 255, 255, 0.8);
}

body.light-mode .process-step h4 {
    color: var(--text-dark);
}

body.light-mode .process-step p {
    color: rgba(0, 0, 0, 0.7);
}

.stats-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    flex-wrap: wrap;
}

body.light-mode .stats-card {
    background: white;
    border-color: #e5e7eb;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-item p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1rem;
    margin: 0;
}

body:not(.light-mode) .stat-item p {
    color: rgba(255, 255, 255, 0.8);
}

body.light-mode .stat-item p {
    color: rgba(0, 0, 0, 0.7);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: var(--text-dark);
}

body:not(.light-mode) .feature-item {
    color: white;
}

.feature-item i {
    font-size: 1.5rem;
}

/* Values Card */
.values-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
}

body.light-mode .values-card {
    background: white;
    border-color: #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.values-card h5 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.25rem;
}

body:not(.light-mode) .values-card h5 {
    color: white;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.value-item:hover {
    transform: translateX(5px);
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

body:not(.light-mode) .value-item {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

body.light-mode .value-item {
    background: rgba(99, 102, 241, 0.03);
    border-color: rgba(99, 102, 241, 0.08);
}

.value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
}

.value-content {
    flex: 1;
}

.value-content h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

body:not(.light-mode) .value-content h6 {
    color: white;
}

.value-content p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
}

body:not(.light-mode) .value-content p {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .values-list {
        gap: 1rem;
    }
    
    .value-item {
        padding: 0.875rem;
    }
    
    .value-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .value-content h6 {
        font-size: 0.95rem;
    }
    
    .value-content p {
        font-size: 0.8rem;
    }
}

body.light-mode .feature-item {
    color: var(--text-dark);
}

.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
    --bs-accordion-border-radius: 16px;
    --bs-accordion-btn-padding-x: 1.5rem;
    --bs-accordion-btn-padding-y: 1.25rem;
    --bs-accordion-body-padding-x: 1.5rem;
    --bs-accordion-body-padding-y: 1.5rem;
}

.accordion-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
}

body.light-mode .accordion-item {
    background: white;
    border-color: #e5e7eb;
}

.accordion-button {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: none;
    padding: 1.25rem 1.5rem;
}

body:not(.light-mode) .accordion-button {
    color: white;
}

.accordion-button:not(.collapsed) {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    box-shadow: none;
}

body:not(.light-mode) .accordion-button:not(.collapsed) {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    padding: 1.5rem;
}

body:not(.light-mode) .accordion-body {
    color: rgba(255, 255, 255, 0.8);
}

body.light-mode .accordion-button {
    color: var(--text-dark);
}

body.light-mode .accordion-button:not(.collapsed) {
    color: var(--primary-color);
}

body.light-mode .accordion-body {
    color: rgba(0, 0, 0, 0.7);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
    z-index: 10;
}

body.light-mode .scroll-indicator {
    color: rgba(99, 102, 241, 0.7);
}

.scroll-indicator i {
    font-size: 2rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.success-modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 0;
}

body:not(.light-mode) .success-modal-content {
    background: rgba(30, 41, 59, 0.98);
    color: white;
}

.success-modal-body {
    padding: 3rem 2rem;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.success-icon i {
    display: block;
}

.success-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

body:not(.light-mode) .success-title {
    color: white;
}

.success-message {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}

body:not(.light-mode) .success-message {
    color: rgba(255, 255, 255, 0.8);
}

.success-close-btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
}
