/* styles.css - Last Updated: 2025-06-23 03:17:44 UTC */
/* Force Cache Refresh v1750670264 */
:root {
    --primary: #2563eb;
    --secondary: #3b82f6;
    --accent: #60a5fa;
    --dark: #0f172a;
    --darker: #020617;
    --light: #ffffff;
    --gray: #94a3b8;
    --border-color: rgba(148, 163, 184, 0.1);
}

/* General Styles */
body {
    background-color: var(--dark);
    color: var(--light);
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* Preloader Animation */
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 10px;
}

.loader svg {
    animation: rotate 2s linear infinite;
}

.loader circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
    stroke-dasharray: 157;
    stroke-dashoffset: 0;
    animation: dash 2s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

@keyframes dash {
    0% { stroke-dashoffset: 157; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -157; }
}

/* Navbar Styles */
.navbar {
    padding: 25px 0;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, rgba(2,6,23,0.9) 0%, rgba(2,6,23,0) 100%);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(2,6,23,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    padding: 0;
}

.logo-text {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    bottom: 8px;
    right: -12px;
}

.nav-link {
    color: var(--light) !important;
    margin: 0 20px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: var(--darker);
}

.hero-slider {
    height: 100vh;
}

.hero-slide {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(2,6,23,0.9), rgba(2,6,23,0.7));
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Owl Carousel Hero Styles */
.hero-slider.owl-carousel .owl-stage-outer {
    height: 100vh;
}

.hero-slider.owl-carousel .owl-stage {
    height: 100%;
}

.hero-slider.owl-carousel .owl-item {
    height: 100vh;
}

.hero-slider.owl-carousel .hero-slide {
    height: 100%;
}

.hero-slider .item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(2,6,23,0.9), rgba(2,6,23,0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 20vh;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.hero-title .highlight {
    display: block;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-gradient {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: var(--light);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    color: var(--light);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37,99,235,0.2);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--light);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--light);
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s ease infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

/* Services Section */
.services-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* styles.css devamı */

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Service Boxes */
.service-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.service-box:hover::before {
    opacity: 0.05;
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(37,99,235,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-box:hover .icon-wrapper {
    background: rgba(37,99,235,0.2);
    transform: rotate(-5deg);
}

.icon-wrapper i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.service-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-box p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--accent);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Tech Background */
.tech-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.tech-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    animation: techLine 15s linear infinite;
}

.tech-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
}

@keyframes techLine {
    0% { transform: translateX(-50%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(1000%); opacity: 0; }
}

/* Contact Form */
.contact-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--light);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
    color: var(--light);
}

/* Footer Styles */
footer {
    background: var(--darker);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-title {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--light);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: var(--light);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .navbar-collapse {
        background: rgba(2,6,23,0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 15px;
        border: 1px solid var(--border-color);
        margin-top: 15px;
    }

    .nav-link {
        margin: 10px 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .service-box {
        margin-bottom: 30px;
    }

    .footer-content {
        margin-bottom: 40px;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.6s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Additional Hover Effects */
.hover-glow:hover {
    box-shadow: 0 0 30px rgba(37,99,235,0.3);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Vision Mission Section Styles */
.vision-mission-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    overflow: hidden;
}

.vision-box, .mission-box {
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hex-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

.hex-box {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.hex-box::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    background: rgba(255,255,255,0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.vision-box:hover .hex-box, .mission-box:hover .hex-box {
    transform: rotate(30deg) scale(1.1);
}

.icon-wrapper {
    font-size: 2.5rem;
    color: var(--light);
    z-index: 1;
}

.particle-effects span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: particle 2s infinite;
}

.particle-effects span:nth-child(2) {
    animation-delay: 0.3s;
}

.particle-effects span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes particle {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(50px, -50px);
        opacity: 0;
    }
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.vision-points .point {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.vision-points .point:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(10px);
}

.vision-points .point i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* References Section */
.references-section {
    padding: 100px 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.references-slider {
    margin-top: 50px;
}

.reference-item {
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 30px;
    margin: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.reference-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    padding: 15px;
    transition: all 0.3s ease;
}

.reference-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(2);
    transition: all 0.3s ease;
}

.reference-item:hover .reference-logo img {
    filter: grayscale(0%) brightness(1);
}

.reference-content {
    text-align: center;
}

.reference-content h4 {
    color: var(--light);
    margin-bottom: 10px;
}

.industry {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.achievement {
    color: var(--gray);
    margin-bottom: 20px;
}

.rating {
    color: #ffd700;
}

/* Tech Particles Animation */
.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.tech-particles::before,
.tech-particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: techParticle 20s linear infinite;
    opacity: 0.1;
}

.tech-particles::after {
    animation-delay: -10s;
    border-color: var(--secondary);
}

@keyframes techParticle {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(3);
        opacity: 0;
    }
}



/* Copyright ve Footer Link Styles */
.copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.copyright p {
    color: var(--gray);
    margin: 0;
}

.copyright a {
    color: var(--gray);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.copyright a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.copyright a:hover {
    color: var(--light);
}

.copyright a:hover::after {
    width: 100%;
}

/* Preloader için güncelleme */
.preloader {
    background: var(--darker);
}

.preloader svg {
    stroke: var(--primary);
    fill: none;
}

.preloader circle,
.preloader polygon,
.preloader rect {
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
}

/* Slider Pagination Styles */
.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-slider .owl-dot {
    width: 30px;
    height: 4px;
    background: rgba(255,255,255,0.2) !important;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-slider .owl-dot.active {
    width: 50px;
    background: linear-gradient(45deg, var(--primary), var(--secondary)) !important;
}
/* Service Details Styles */
.service-details-section {
    padding: 100px 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.service-detail-item {
    margin-bottom: 100px;
    position: relative;
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

.tech-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37,99,235,0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.tech-stack {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.tech-item {
    padding: 6px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(37,99,235,0.1);
    color: var(--primary);
    transform: translateY(-2px);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(10px);
}

.feature-list li i {
    color: var(--primary);
    margin-right: 15px;
}

.performance-stats, .ai-metrics {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat, .metric {
    text-align: center;
}

.stat-number, .metric-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label, .metric-label {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Code Window Styles */
.code-window {
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.window-header {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
}

.code-content {
    padding: 20px;
}

.code-content pre {
    margin: 0;
    color: var(--light);
}

/* Neural Network Animation */
.neural-network {
    position: relative;
    height: 400px;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    overflow: hidden;
}

.neural-network::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, var(--primary) 0%, transparent 5%),
        radial-gradient(circle at 70% 70%, var(--secondary) 0%, transparent 5%);
    filter: blur(30px);
    opacity: 0.3;
    animation: neuralPulse 4s ease-in-out infinite;
}

@keyframes neuralPulse {
    0% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
    100% { transform: scale(0.8); opacity: 0.3; }
}

<!-- CSS eklenecek stiller -->

.login-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 30px;
    padding: 8px 25px !important;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,99,235,0.3);
}

@media (max-width: 991px) {
    .login-btn {
        display: inline-block;
        margin-top: 15px;
    }
}

        .auth-page {
            min-height: 100vh;
            background: var(--darker);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 40px 0;
        }

        .auth-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .auth-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            background: rgba(255,255,255,0.02);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.05);
            overflow: hidden;
        }

        .auth-form-section {
            padding: 40px;
        }

        .auth-info-section {
            background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(0,242,254,0.1));
            padding: 40px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .auth-info-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://via.placeholder.com/600x800') center/cover;
            opacity: 0.1;
            mix-blend-mode: luminosity;
        }

        .auth-logo {
            text-align: center;
            margin-bottom: 30px;
        }

        .auth-logo .logo-text {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .auth-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .auth-header h2 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .auth-form .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .auth-form .form-control {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 15px 20px 15px 45px;
            color: var(--light);
            transition: all 0.3s ease;
        }

        .auth-form .form-control:focus {
            background: rgba(255,255,255,0.08);
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
        }

        .form-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
            transition: all 0.3s ease;
        }

        .form-control:focus + .form-icon {
            color: var(--primary);
        }

        .auth-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 15px;
            color: var(--light);
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .auth-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;
        }

        .auth-btn:hover::before {
            left: 100%;
        }

        .auth-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37,99,235,0.3);
        }

        .auth-footer {
            text-align: center;
            margin-top: 30px;
        }

        .auth-footer a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .auth-footer a:hover {
            color: var(--secondary);
        }

        /* Info Section Styles */
        .info-content {
            position: relative;
            z-index: 1;
            color: var(--light);
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(10px);
            background: rgba(255,255,255,0.08);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .feature-text {
            flex: 1;
        }

        .feature-text h4 {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
        }

        .feature-text p {
            margin: 5px 0 0;
            font-size: 0.9rem;
            color: var(--gray);
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-box {
            text-align: center;
            padding: 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 5px;
        }

        /* Form Switch Animation */
        .auth-forms {
            position: relative;
        }

        .form-section {
            transition: all 0.3s ease;
            position: absolute;
            width: 100%;
            opacity: 0;
            pointer-events: none;
            transform: translateY(20px);
        }

        .form-section.active {
            position: relative;
            opacity: 1;
            pointer-events: all;
            transform: translateY(0);
        }

        @media (max-width: 991px) {
            .auth-wrapper {
                grid-template-columns: 1fr;
            }
            
            .auth-info-section {
                display: none;
            }
        }
.back-to-home {
    position: fixed;
    top: 30px;
    left: 30px;
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
    color: var(--light);
    text-decoration: none;
}

.back-to-home i {
    font-size: 1.2rem;
}

/* Info section icon fixes */
.feature-icon i {
    color: var(--light);
    font-size: 1.2rem;
}

/* Link underline fixes */
.auth-footer a,
.forgot-link,
.login-link,
.register-link {
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.auth-footer a::after,
.forgot-link::after,
.login-link::after,
.register-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.auth-footer a:hover::after,
.forgot-link:hover::after,
.login-link:hover::after,
.register-link:hover::after {
    width: 100%;
}

/* Color contrast improvements */
.feature-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.feature-text h4 {
    color: var(--light);
    font-weight: 600;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.7);
}

/* Stats box improvements */
.stat-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
}

/* Form improvements */
.form-check-label {
    color: rgba(255, 255, 255, 0.7);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Success message improvements */
.alert-success {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--light);
    backdrop-filter: blur(10px);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .back-to-home {
        top: 20px;
        left: 20px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .auth-form-section {
        padding: 20px;
    }
}
.products-section {
    padding: 100px 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
    height: 400px;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.product-content {
    padding: 30px;
    height: 50%;
    transition: all 0.4s ease;
}

.product-card:hover .product-content {
    height: 40%;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-icon i {
    font-size: 1.8rem;
    color: var(--light);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.product-features span {
    padding: 5px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray);
}

.product-details {
    padding: 30px;
    background: rgba(255,255,255,0.03);
    height: 50%;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.product-card:hover .product-details {
    transform: translateY(0);
}

.tech-specs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-group h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.spec-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.spec-group li {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 0.9rem;
}

.spec-group li i {
    color: var(--primary);
}

.performance-metrics {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.metric {
    text-align: center;
}

.metric .value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.metric .label {
    font-size: 0.8rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        height: auto;
    }
    
    .product-content {
        height: auto;
    }
    
    .product-details {
        transform: translateY(0);
        height: auto;
    }
}

.products-section {
    padding: 120px 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-sphere {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.05;
    animation: sphereFloat 20s ease-in-out infinite;
}

.tech-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Section Header */
.section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mega-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Product Filter */
.product-filter {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.filter-slider {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 30px;
    color: var(--gray);
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--light);
    border-color: transparent;
    transform: translateY(-2px);
}

/* Product Cards */
.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.product-preview {
    padding: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tech-tag {
    padding: 8px 16px;
    background: rgba(37,99,235,0.1);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.9rem;
}

.product-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon i {
    font-size: 1.5rem;
    color: var(--light);
}

.product-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.key-features {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    font-size: 0.9rem;
}

.feature i {
    color: var(--primary);
}

/* Product Details */
.product-details {
    padding: 30px;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stack-group h4 {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.stack-items {
    display: flex;
    gap: 15px;
}

.stack-item {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.stack-item i {
    font-size: 1.2rem;
    color: var(--primary);
}

.stack-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

.stack-item::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: rgba(0,0,0,0.8);
    border-radius: 5px;
    font-size: 0.8rem;
    color: var(--light);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.stack-item:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.performance-metrics {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.metric {
    text-align: center;
    position: relative;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.progress-ring {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.progress-ring path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.2;
}

.product-actions {
    display: flex;
    gap: 15px;
}

.demo-btn, .docs-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.demo-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--light);
}

.docs-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--gray);
}

.demo-btn:hover, .docs-btn:hover {
    transform: translateY(-2px);
}
.demo-btn:hover {
    box-shadow: 0 5px 15px rgba(0,242,254,0.2);
}

.docs-btn:hover {
    background: rgba(255,255,255,0.08);
}

/* Animations */
@keyframes sphereFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100px, -100px);
    }
    50% {
        transform: translate(200px, 0);
    }
    75% {
        transform: translate(100px, 100px);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .mega-title {
        font-size: 3rem;
    }

    .products-showcase {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 991px) {
    .mega-title {
        font-size: 2.5rem;
    }

    .filter-slider {
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start;
    }

    .filter-slider::-webkit-scrollbar {
        height: 5px;
    }

    .filter-slider::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.05);
        border-radius: 5px;
    }

    .filter-slider::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 5px;
    }

    .product-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 80px 0;
    }

    .mega-title {
        font-size: 2rem;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .tech-stack {
        grid-template-columns: 1fr;
    }

    .performance-metrics {
        flex-direction: column;
        gap: 20px;
    }

    .metric {
        padding: 20px;
        background: rgba(255,255,255,0.03);
        border-radius: 15px;
    }

    .product-actions {
        flex-direction: column;
    }
}

/* Hover Effects and Transitions */
.product-card .product-preview,
.product-card .product-details {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-card:hover .product-preview {
    transform: translateY(-5px);
}

.product-card:hover .product-details {
    transform: translateY(5px);
}

/* Additional Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Enhancement for Tech Stack Items */
.stack-item:hover i {
    animation: techPulse 0.5s ease infinite;
}

@keyframes techPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Progress Ring Animation */
.product-card:hover .progress-ring path {
    animation: progressRing 1.5s ease-in-out forwards;
}

@keyframes progressRing {
    from {
        stroke-dasharray: 0 100;
    }
    to {
        stroke-dasharray: 80 100;
    }
}

/* Feature Hover Effects */
.feature {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(5px);
}

.feature:hover i {
    animation: featureIcon 0.5s ease;
}

@keyframes featureIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
}

/* Enhanced Loading States */
.product-card.loading {
    position: relative;
    overflow: hidden;
}

.product-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    animation: loading 1.5s infinite;
}

@keyframes loading {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(50%);
    }
}

/* Custom Scrollbar for Product Details */
.product-details::-webkit-scrollbar {
    width: 5px;
}

.product-details::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

.product-details::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

/* Focus States */
.filter-btn:focus,
.demo-btn:focus,
.docs-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,242,254,0.3);
}

/* Active States */
.filter-btn:active,
.demo-btn:active,
.docs-btn:active {
    transform: scale(0.98);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.products-section {
    padding: 80px 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab {
    padding: 10px 25px;
    border-radius: 30px;
    background: rgba(255,255,255,0.03);
    color: var(--gray);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab.active {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--light);
    border-color: transparent;
}

/* Slider Container */
.products-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--light);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.nav-btn:hover {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-color: transparent;
}

/* Products Slider */
.products-slider {
    display: none;
    overflow: hidden;
}

.products-slider.active {
    display: block;
}

.products-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

/* Product Card */
.product-card {
    flex: 0 0 300px;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-badge {
    padding: 5px 12px;
    background: rgba(0,242,254,0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary);
}

.product-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon i {
    color: var(--light);
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light);
}

.product-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-pills span {
    padding: 4px 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--gray);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-btn {
    padding: 8px 15px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 8px;
    color: var(--light);
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,242,254,0.2);
}

.stats {
    display: flex;
    align-items: center;
}

.stat {
    text-align: center;
}

.stat .value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.stat .label {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Pagination */
.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

@media (max-width: 768px) {
    .products-slider-wrapper {
        padding: 0 30px;
    }
    
    .product-card {
        flex: 0 0 260px;
    }
}
.products-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--darker), var(--dark));
    position: relative;
    overflow: hidden;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.category-filters {
    display: flex;
    gap: 15px;
}

.category-btn {
    padding: 10px 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 30px;
    color: var(--gray);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn.active {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--light);
}

.slider-controls {
    display: flex;
    gap: 15px;
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.products-slider {
    position: relative;
    overflow: hidden;
}

.products-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.product-card {
    flex: 0 0 400px;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-version {
    padding: 5px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--gray);
}

.product-rating {
    width: 60px;
    height: 60px;
    position: relative;
}

.rating-circle {
    stroke: var(--primary);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.tech-stack {
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.tech-group {
    margin-bottom: 20px;
}

.tech-group:last-child {
    margin-bottom: 0;
}

.tech-group h4 {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.tech-item {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.tech-item i {
    color: var(--primary);
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.metrics-bar {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    position: relative;
    margin-top: 20px;
}

.metrics-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--percentage);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 1s ease;
}

@media (max-width: 768px) {
    .products-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .category-filters {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .product-card {
        flex: 0 0 300px;
    }

    .tech-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-features {
        grid-template-columns: 1fr;
    }
}

.products-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
   padding: 20px;
}

.project-card {
   position: relative;
   height: 550px;
   perspective: 1000px;
   cursor: pointer;
}

.card-front,
.card-back {
   position: absolute;
   width: 100%;
   height: 100%;
   backface-visibility: hidden;
   transition: transform 0.6s;
   border-radius: 20px;
   overflow: hidden;
}

.card-front {
   background: rgba(255,255,255,0.02);
   border: 1px solid rgba(255,255,255,0.05);
}

.card-back {
   background: rgba(255,255,255,0.03);
   border: 1px solid rgba(255,255,255,0.1);
   transform: rotateY(180deg);
   padding: 25px;
}

.project-card:hover .card-front {
   transform: rotateY(180deg);
}

.project-card:hover .card-back {
   transform: rotateY(360deg);
}

.project-image {
   height: 60%;
   overflow: hidden;
}

.project-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.project-info {
   padding: 20px;
}

.project-info h3 {
   font-size: 1.5rem;
   margin-bottom: 10px;
   background: linear-gradient(45deg, var(--primary), var(--secondary));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.project-info p {
   color: var(--gray);
   font-size: 0.9rem;
   margin-bottom: 15px;
}

.rating {
   display: flex;
   align-items: center;
   gap: 10px;
}

.stars {
   color: #ffd700;
}

.rating-number {
   color: var(--primary);
   font-weight: 600;
}

.tech-specs {
   margin-bottom: 30px;
}

.tech-specs h4,
.achievements h4 {
   color: var(--primary);
   margin-bottom: 15px;
   font-size: 1.1rem;
}

.tech-specs ul {
   list-style: none;
   padding: 0;
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 15px;
}

.tech-specs li {
   display: flex;
   align-items: center;
   gap: 10px;
   color: var(--gray);
   padding: 8px;
   background: rgba(255,255,255,0.03);
   border-radius: 8px;
}

.tech-specs i {
   color: var(--primary);
}

.achievements {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 15px;
}

.metric {
   background: rgba(255,255,255,0.03);
   padding: 15px;
   border-radius: 10px;
   text-align: center;
}

.metric-value {
   display: block;
   font-size: 1.2rem;
   color: var(--primary);
   font-weight: 600;
   margin-bottom: 5px;
}

.metric-label {
   color: var(--gray);
   font-size: 0.8rem;
}

/* Category Navigation */
.category-nav {
   display: flex;
   justify-content: center;
   gap: 20px;
   margin-bottom: 40px;
}

.category-btn {
   padding: 10px 25px;
   background: rgba(255,255,255,0.03);
   border: 1px solid rgba(255,255,255,0.05);
   border-radius: 30px;
   color: var(--gray);
   cursor: pointer;
   transition: all 0.3s ease;
}

.category-btn.active {
   background: linear-gradient(45deg, var(--primary), var(--secondary));
   color: var(--light);
}

/* Animation on hover */
.project-card:hover {
   transform: translateY(-10px);
}

.project-card::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(45deg, var(--primary), var(--secondary));
   opacity: 0;
   transition: 0.3s;
   border-radius: 20px;
   z-index: -1;
}

.project-card:hover::after {
   opacity: 0.1;
}
.project-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 10px;
}

.version {
   padding: 4px 8px;
   background: rgba(255,255,255,0.05);
   border-radius: 12px;
   font-size: 0.8rem;
   color: var(--primary);
}

.details-btn {
   margin-top: 15px;
   width: 100%;
   padding: 10px;
   background: linear-gradient(45deg, var(--primary), var(--secondary));
   border: none;
   border-radius: 8px;
   color: var(--light);
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   transition: all 0.3s ease;
}

.details-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(0,242,254,0.2);
}

.back-content {
   height: 100%;
   overflow-y: auto;
   padding-right: 10px;
}

.tech-groups {
   display: grid;
   gap: 20px;
}

.tech-group h5 {
   color: var(--gray);
   margin-bottom: 10px;
   font-size: 0.9rem;
}

.features ul {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 10px;
}

.features li {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.9rem;
   color: var(--gray);
}

.features i {
   color: var(--primary);
}

/* Scrollbar for back content */
.back-content::-webkit-scrollbar {
   width: 4px;
}

.back-content::-webkit-scrollbar-track {
   background: rgba(255,255,255,0.02);
}

.back-content::-webkit-scrollbar-thumb {
   background: var(--primary);
   border-radius: 2px;
}

/* Add smooth transition for category filtering */
.project-card {
   transition: all 0.5s ease;
}

.project-card.hidden {
   opacity: 0;
   transform: scale(0.8);
   pointer-events: none;
}
/* Logo ve Referans Stilleri */
.reference-item {
   background: rgba(255,255,255,0.02);
   border-radius: 15px;
   padding: 25px;
   transition: all 0.3s ease;
   border: 1px solid rgba(255,255,255,0.05);
}

.reference-logo {
   width: 120px;
   height: 120px;
   margin: 0 auto 20px;
   padding: 15px;
   border-radius: 50%;
   background: rgba(255,255,255,0.03);
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   overflow: hidden;
}

.reference-logo::before {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(45deg, var(--primary), var(--secondary));
   opacity: 0.1;
   mix-blend-mode: overlay;
}

.reference-logo img {
   width: 100%;
   height: 100%;
   object-fit: contain;
   filter: grayscale(100%) brightness(2) contrast(0.8);
   mix-blend-mode: lighten;
   transition: all 0.3s ease;
}

/* Örnek logo URL'leri */
/* Partners Section Styles */
.partners-section {
    padding: 80px 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(37,99,235,0.03), transparent 70%);
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37,99,235,0.1);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--gray);
}

/* Remove old partner styles */

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Contact Trigger Button */
.contact-trigger-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 30px;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37,99,235,0.3);
}

.contact-trigger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.4);
}

/* Contact Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2,6,23,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.contact-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease forwards;
}

.modal-content {
    background: var(--darker);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    transform: translateY(50px);
    opacity: 0;
}

.contact-modal.active .modal-content {
    animation: modalSlideUp 0.3s ease 0.1s forwards;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.close-modal {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 50%;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255,255,255,0.1);
    color: var(--light);
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 20px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    transition: all 0.3s ease;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    color: var(--light);
    transition: all 0.3s ease;
}

.input-wrapper textarea {
    height: 120px;
    resize: none;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    background: rgba(255,255,255,0.05);
    border-color: var(--primary);
}

.input-wrapper input:focus + i,
.input-wrapper textarea:focus + i {
    color: var(--primary);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 12px;
    color: var(--light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,99,235,0.3);
}

.submit-btn .btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--light);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loader {
    display: block;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-trigger-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }
}


.dashboard-section {
    min-height: 100vh;
    background: var(--darker);
    padding: 20px;
}

.dashboard-container {
    display: flex;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    overflow: hidden;
}

/* Sidebar Styles */
.dashboard-sidebar {
    width: 280px;
    background: rgba(255,255,255,0.03);
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 60px;
    height: 60px;
    border-radius: 15px;
}

.status-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--darker);
}

.status-badge.online {
    background: #10B981;
}

.profile-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.user-role {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Navigation */
.dashboard-nav {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    color: var(--gray);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-item:hover {
    background: rgba(255,255,255,0.05);
    color: var(--light);
}

.nav-item.active {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--light);
}

.nav-item i {
    font-size: 1.2rem;
}

/* Main Content */
.dashboard-main {
    flex: 1;
    padding: 30px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.search-bar {
    position: relative;
    width: 300px;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    color: var(--light);
}

.search-bar i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notification-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--gray);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
}

/* Tab Content Styles */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease forwards;
}

.tab-content.active {
    display: block;
}

/* Overview Stats */
/* Overview Sekmesi Tasarımı */
.overview-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.stat-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.stat-icon {
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 5rem;
    opacity: 0.1;
    transform: rotate(-15deg);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(0deg);
    opacity: 0.2;
}

.stat-info h4 {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

/* Domains Sekmesi Tasarımı */
.domains-content {
    padding: 2rem;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.domain-card {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.domain-header {
    background: linear-gradient(to right, rgba(37,99,235,0.1), rgba(0,0,0,0));
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.domain-name {
    font-size: 1.2rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.domain-name i {
    color: var(--primary);
}

.domain-body {
    padding: 1.5rem;
}

.domain-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-item {
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    text-align: center;
}

.info-label {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.info-value {
    color: var(--light);
    font-weight: 600;
}

/* Faturalar Sekmesi Tasarımı */
.invoices-content {
    padding: 2rem;
}

.invoice-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.invoice-card {
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.invoice-card:hover {
    background: rgba(255,255,255,0.04);
    transform: translateX(10px);
}

.invoice-icon {
    width: 50px;
    height: 50px;
    background: rgba(37,99,235,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invoice-icon i {
    color: var(--primary);
    font-size: 1.5rem;
}

.invoice-details h4 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.invoice-meta {
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    gap: 1rem;
}

.invoice-amount {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.invoice-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.status-paid {
    background: rgba(34,197,94,0.1);
    color: #22c55e;
}

.status-pending {
    background: rgba(234,179,8,0.1);
    color: #eab308;
}

.status-overdue {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
}
/* Tab İçerikleri Genel Stiller */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

/* Overview Tab Styles */
.stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255,255,255,0.05);
}

.stat-icon {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-info h4 {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.stat-trend {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-trend.positive { color: #10B981; }
.stat-trend.negative { color: #EF4444; }
.stat-trend.neutral { color: var(--gray); }

/* Domains Tab Styles */
.domains-header {
    margin-bottom: 2rem;
}

.header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.domain-card {
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.domain-header {
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.domain-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

/* Invoices Tab Styles */
.invoice-card {
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.invoice-card:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.04);
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.invoice-id {
    font-weight: 600;
    color: var(--primary);
}

.invoice-date {
    color: var(--gray);
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.status.paid {
    background: rgba(16,185,129,0.1);
    color: #10B981;
}

.status.pending {
    background: rgba(234,179,8,0.1);
    color: #EAB308;
}

.status.cancelled {
    background: rgba(239,68,68,0.1);
    color: #EF4444;
}

/* Tab İçerikleri için Genel Stiller */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

/* Overview Tab - Modern Gradient Style */
.overview-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(99,102,241,0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Domains Tab - Grid Card Style */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.domain-card {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

/* Invoices Tab - Timeline Style */
.invoice-timeline {
    position: relative;
    padding-left: 3rem;
}

.invoice-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6 0%, rgba(59,130,246,0.1) 100%);
}

.invoice-item {
    position: relative;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

/* Payments Tab - Kanban Style */
.payments-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.payment-column {
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    padding: 1rem;
}

.payment-card {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #3b82f6;
    transition: transform 0.2s ease;
}

.payment-card:hover {
    transform: scale(1.02);
}

/* Main Content ve Sidebar Styles */
.main-content {
    padding-top: 90px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.dashboard-content {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    padding: 25px;
    min-height: calc(100vh - 180px); /* Header yüksekliği ve padding'i hesaba katarak */
}


.dashboard-header {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
}

/* Ana wrapper */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}


/* Sidebar Styles */
.dashboard-sidebar {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 25px;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.user-profile {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-image {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.05);
    border-color: var(--primary);
}

.status-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--darker);
}

.status-badge.online {
    background: #10B981;
}

.profile-info h3 {
    margin: 15px 0 5px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--light);
}

.user-role {
    color: var(--primary);
    font-size: 0.9rem;
    padding: 5px 15px;
    background: rgba(37,99,235,0.1);
    border-radius: 20px;
    display: inline-block;
}

/* Navigation Items */
.dashboard-nav {
    margin-top: 25px;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--gray);
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-item i {
    font-size: 1.2rem;
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--light);
    border-color: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--light);
    box-shadow: 0 4px 15px rgba(37,99,235,0.2);
}



/* Dashboard Container */
.dashboard-container {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.dashboard-header h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.dashboard-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Search */
.search-wrapper {
    position: relative;
}

.search-wrapper input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    color: var(--light);
    width: 300px;
}

.search-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

/* Notifications */
.notifications {
    position: relative;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
}

/* Statistics Cards */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
}


/* Dashboard Styles */
.dashboard-section {
    padding: 120px 0 60px;
    background: var(--darker);
    min-height: 100vh;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.dashboard-header h1 {
    font-size: 32px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dashboard-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.search-box {
    position: relative;
}

.search-box input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--light);
    width: 300px;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.notification-box {
    position: relative;
    cursor: pointer;
}

.notification-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: var(--light);
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stat-card h3 {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 12px;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.stat-trend.positive {
    color: #10B981;
}

.stat-trend.negative {
    color: #EF4444;
}

/* Payments Table */
.payments-section {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 20px;
    color: var(--light);
}

.btn-view {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--light);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: rgba(255,255,255,0.05);
}

.payments-table table {
    width: 100%;
    border-collapse: collapse;
}

.payments-table th {
    text-align: left;
    padding: 12px;
    color: var(--gray);
    font-weight: normal;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.payments-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.status.pending {
    background: rgba(245,158,11,0.1);
    color: #F59E0B;
}

.status.paid {
    background: rgba(16,185,129,0.1);
    color: #10B981;
}

.status.overdue {
    background: rgba(239,68,68,0.1);
    color: #EF4444;
}

.btn-pay {
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-pay.urgent {
    background: #EF4444;
}

/* Quick Actions */
.quick-actions {
    margin-bottom: 40px;
}

.quick-actions h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.action-btn {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.05);
}

.action-btn i {
    font-size: 24px;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid,
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid,
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .payments-table {
        overflow-x: auto;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-box input {
        width: 100%;
    }
}
/* Dashboard Styles */
.dashboard-section {
    padding: 120px 0 60px;
    background-color: #0A0B14;
    min-height: 100vh;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    color: #fff;
    font-size: 2rem;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box input {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    width: 300px;
}

.notifications {
    position: relative;
    cursor: pointer;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #3B82F6;
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    font-size: 0.75rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #3B82F6;
}

.stat-card h3 {
    color: #94A3B8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.stat-value {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.stat-trend.positive { color: #10B981; }
.stat-trend.negative { color: #EF4444; }

/* Payments Section */
.payments-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    color: #fff;
    font-size: 1.25rem;
}

.payments-table table {
    width: 100%;
    border-collapse: collapse;
}

.payments-table th,
.payments-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.payments-table th {
    color: #94A3B8;
    font-weight: normal;
}

.status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.status.paid {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.status.overdue {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

/* Quick Actions */
.quick-actions {
    margin-bottom: 2rem;
}

.quick-actions h2 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn i {
    font-size: 1.5rem;
    color: #3B82F6;
}

.action-btn span {
    color: #fff;
}

.action-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

/* Modal Styles */
.modal-content {
    background: #0A0B14;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header .modal-title {
    color: #fff;
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Payment Methods Modal */
.nav-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-tabs .nav-link {
    color: #94A3B8;
    border: none;
}

.nav-tabs .nav-link.active {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    border: none;
}

.wallet-grid,
.bank-transfer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.wallet-item,
.bank-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Chat Modal Styles */
.chat-container {
    height: 400px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.message {
    margin-bottom: 1rem;
}

.message.ai {
    display: flex;
    justify-content: flex-start;
}

.message.user {
    display: flex;
    justify-content: flex-end;
}

.message-content {
    max-width: 70%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: #fff;
}

.message.ai .message-content {
    background: rgba(255, 255, 255, 0.05);
}

.message.user .message-content {
    background: #3B82F6;
}

.chat-input-container {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.chat-input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
}

.send-btn {
    background: #3B82F6;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 992px) {
    .stats-grid,
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .stats-grid,
    .actions-grid {
        grid-template-columns: 1fr;
    }
}

a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: none;
}


/* Language Selector Styles */
.language-dropdown {
    min-width: 200px;
    background: var(--darker);
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.language-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    color: var(--gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.language-dropdown .dropdown-item:hover {
    background: rgba(255,255,255,0.05);
    color: var(--light);
    transform: translateX(5px);
}

.language-dropdown .dropdown-item img {
    width: 20px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.language-dropdown .dropdown-item.active {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--light);
}

/* Language Globe Icon Animation */
.nav-link .fa-globe {
    transition: transform 0.3s ease;
}

.nav-link:hover .fa-globe {
    transform: rotate(20deg);
}

/* Hide Google Translate Element */
.skiptranslate,
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Custom Language Indicator */
.current-lang {
    font-weight: 500;
    margin-left: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .language-dropdown {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
    }
}

/* Payment Methods Styles */
.payment-card-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-card-container:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.credit-card {
    background: linear-gradient(45deg, #1a1f3e, #2d3a6e);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.credit-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.card-header {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-brand i {
    font-size: 32px;
    color: #fff;
}

.card-default {
    background: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
}

.card-number {
    font-size: 20px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-info {
    position: relative;
    z-index: 2;
}

.card-holder .label,
.card-expiry .label {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.card-holder .value,
.card-expiry .value {
    font-size: 14px;
    color: #fff;
}

.card-actions {
    display: flex;
    justify-content: flex-end;
}

/* Bank Account Styles */
.bank-account-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bank-account-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.bank-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bank-logo img {
    max-width: 100%;
    max-height: 100%;
}

.bank-details {
    flex: 1;
}

.bank-details h4 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 18px;
}

.account-info {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
}

.info-row {
    display: flex;
    margin-bottom: 10px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row .label {
    width: 150px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.info-row .value {
    flex: 1;
    color: #fff;
    font-size: 14px;
}

/* Digital Wallet Styles */
.wallet-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.wallet-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.wallet-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-icon i {
    font-size: 30px;
    color: var(--primary);
}

.wallet-info {
    flex: 1;
}

.wallet-info h4 {
    margin-bottom: 5px;
    color: #fff;
}

.wallet-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

/* Cryptocurrency Styles */
.crypto-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.crypto-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.crypto-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crypto-icon i {
    font-size: 30px;
    color: #f2a900;
}

.crypto-icon i.fa-ethereum {
    color: #627eea;
}

.crypto-info {
    flex: 1;
}

.crypto-info h4 {
    margin-bottom: 10px;
    color: #fff;
}

.crypto-address .address-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 5px;
}

.truncated-address {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    font-family: monospace;
    color: #fff;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 6px;
    color: #fff;
    transition: all 0.2s ease;
}

.btn-icon:hover {
    background: var(--primary);
}

/* Add Payment Modal Wallet Options */
.wallet-option {
    position: relative;
}

.wallet-radio {
    position: absolute;
    opacity: 0;
}

.wallet-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wallet-label i {
    font-size: 24px;
    color: var(--primary);
}

.wallet-radio:checked + .wallet-label {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 767px) {
    .bank-account-item {
        flex-direction: column;
    }
    
    .bank-logo {
        margin: 0 auto;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-row .label {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* Modal Fix - Additional Modal Styles */
.modal {
    z-index: 1060 !important;
}

.modal-backdrop {
    z-index: 1050 !important;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-content {
    background: var(--darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1061 !important;
}

.modal-dialog {
    position: relative;
    margin: 1.75rem auto;
    pointer-events: all;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    transform: none;
}

/* Fix for modal when open */
body.modal-open {
    overflow: hidden;
    padding-right: 17px; /* Scrollbar width compensation */
}

/* Ensure the modal appears on top of other elements */
#aiChatModal {
    display: none;
}

#aiChatModal.show {
    display: block !important;
}

/* Ensure modals appear on top of any other fixed elements */
.modal, .modal-backdrop {
    position: fixed !important;
}

/* Fix for the AI chat modal content */
#aiChatModal .modal-content {
    overflow: hidden;
    max-height: calc(100vh - 3.5rem);
}

/* Ensure the chat container takes full height */
#aiChatModal .chat-container {
    height: 400px;
}

/* Make sure modal dialog is properly centered */
@media (min-width: 576px) {
    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }
}

@media (max-width: 575.98px) {
    .modal-dialog {
        margin: 0.5rem;
    }
    
    #aiChatModal .chat-container {
        height: 350px;
    }
}

/* Add this CSS rule to fix dropdown menu text color */
.dropdown-menu .dropdown-item {
    color: #ffffff !important; /* White text color for dropdown items */
}

.dropdown-menu {
    background-color: rgba(30, 41, 59, 0.95) !important; /* Dark background for dropdown */
    border: 1px solid rgba(59, 130, 246, 0.2) !important; /* Blue border */
}

.dropdown-menu .dropdown-item:hover, 
.dropdown-menu .dropdown-item:focus {
    background-color: rgba(59, 130, 246, 0.2) !important; /* Blue highlight on hover */
    color: #fff !important;
}

/* Add these dropdown menu styles at the end of the file */
.dropdown-menu .dropdown-item {
    color: #ffffff !important;
}

.dropdown-menu {
    background-color: rgba(30, 41, 59, 0.95) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
}

.dropdown-menu .dropdown-item:hover, 
.dropdown-menu .dropdown-item:focus {
    background-color: rgba(59, 130, 246, 0.2) !important;
    color: #fff !important;
}

/* Add minimalist styling for dashboard elements */
/* Status indicators */
.status-active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.status-expired {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Loading animation */
@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.loading .card-body {
    position: relative;
}

.loading .card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    z-index: 1;
}

/* Progress bar enhancements */
.progress {
    height: 6px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    background-color: #3b82f6;
    border-radius: 3px;
}

/* Buttons in dashboard */
.btn-outline-primary {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
}

.btn-outline-primary:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    color: #3b82f6;
}

.btn-primary {
    background: #3b82f6;
    border-color: #3b82f6;
}

.btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Dashboard container spacing adjustments */
.dashboard-container .container {
    padding-bottom: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .welcome-section {
        padding: 15px;
    }
    
    .dashboard-card {
        margin-bottom: 15px;
    }
    
    .card-header {
        padding: 12px 15px;
    }
    
    .card-body {
        padding: 15px;
    }
}

/* Partner Slider Styles */
.partners-section {
    padding: 80px 0;
    background: rgba(255,255,255,0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-slider .partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px;
    transition: all 0.3s ease;
}

.partners-slider .partner-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.partners-slider .partner-item img {
    max-width: 100%;
    max-height: 60px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partners-slider .partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Ensure carousel items display correctly */
.partners-slider.owl-carousel .owl-item {
    display: inline-block;
    vertical-align: top;
}

/* Partner tooltip */
.partner-item {
    position: relative;
}

.partner-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.partner-item:hover .partner-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -25px;
}

/* Hide partner info - only show logo */
.partner-info {
    display: none !important;
}

.partner-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    padding: 10px !important;
}

.partner-logo img {
    max-width: 120px !important;
    max-height: 50px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    filter: grayscale(100%) !important;
    opacity: 0.6 !important;
    transition: all 0.3s ease !important;
}

.partner-item:hover .partner-logo img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transform: scale(1.1) !important;
}
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.8) opacity(0.8);
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo img {
    filter: brightness(1) opacity(1);
    transform: scale(1.05);
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37,99,235,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-overlay {
    opacity: 1;
}

.partner-overlay a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.partner-overlay a:hover {
    transform: scale(1.1);
}

/* Hero Slider Database Dynamic Styles */
.hero-slide {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(2,6,23,0.9), rgba(2,6,23,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(37,99,235,0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(37,99,235,0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.hero-title .highlight {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(37,99,235,0.1);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.floating-card i {
    font-size: 2rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Service Details Modal */
.modal-content {
    background: var(--dark);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    color: var(--light);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 30px;
}

.modal-title {
    color: var(--light);
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.service-details {
    color: var(--gray);
    line-height: 1.6;
}

.service-details h6 {
    color: var(--light);
    margin-bottom: 15px;
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.pricing-item {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 20px 30px;
}

/* Dynamic Content Loading States */
.loading-placeholder {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(37,99,235,0.2);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for Dynamic Content */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .floating-card {
        width: 60px;
        height: 60px;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 40px;
    }
    
    .floating-card {
        width: 50px;
        height: 50px;
    }
    
    .floating-card i {
        font-size: 1.2rem;
    }
    
    .partners-slider .partner-item {
        height: 80px;
    }
    
    .partner-logo {
        padding: 15px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility Improvements */
.partner-item:focus,
.service-link:focus,
.hero-buttons a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .floating-card,
    .partner-logo img,
    .service-box,
    .hero-slider {
        animation: none;
        transition: none;
    }
}

/* Hero Slider Text Visibility Fix - Added Mon Jun 23 06:39:15 AM +03 2025 */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.875rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--light);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

/* Ensure text contrast on hero images */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
