        :root {
            --primary: #10b981;
            --primary-dark: #059669;
            --primary-light: #34d399;
            --dark: #0a0a0a;
            --darker: #000000;
            --dark-gray: #1a1a1a;
            --light: #f8fafc;
        }

        #loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3a3a3a;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.spinner {
  border: 6px solid rgba(255, 255, 255, 0.1);
  border-left-color: #28a745;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}
        
        body {
            background-color: var(--darker);
            color: var(--light);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--darker) 0%, #111827 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            z-index: 1;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
        }
        
        .navbar {
            backdrop-filter: blur(10px);
            background: rgba(10, 10, 10, 0.9) !important;
            border-bottom: 1px solid rgba(16, 185, 129, 0.2);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }
        
        .gradient-text {
            background: linear-gradient(135deg, var(--primary), #84cc16);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: var(--dark-gray);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
            border: 1px solid rgba(16, 185, 129, 0.3);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
                        z-index: 2;
            transition: all 0.3s ease;
            color: var(--darker);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
            color: var(--darker);
        }
        
        .btn-outline-primary {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
            padding: 10px 28px;
            border-radius: 8px;
            z-index: 2;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background: var(--primary);
            color: var(--darker);
            transform: translateY(-2px);
        }
        
        .section-title {
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 2px;
        }
        
        .service-card {
            background: var(--dark-gray);
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            border: 1px solid rgba(16, 185, 129, 0.3);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .tech-logo {
            height: 40px;
            margin: 0 15px 15px 0;
            filter: brightness(0) invert(1);
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .tech-logo:hover {
            opacity: 1;
        }
        
        .glow {
            text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
        }
        
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), #84cc16);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .testimonial-card {
            background: var(--dark-gray);
            border-left: 4px solid var(--primary);
            border-radius: 8px;
            padding: 1.5rem;
        }
        
        .unreal-badge {
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 5px 15px;
            font-size: 0.8rem;
            display: inline-flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translate(0, 0px); }
            50% { transform: translate(0, -10px); }
            100% { transform: translate(0, 0px); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
            100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }
        
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .process-step {
            position: relative;
            padding-left: 3rem;
            margin-bottom: 2rem;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 30px;
            height: 30px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-weight: bold;
        }
        
        .process-step:nth-child(1)::before { content: '1'; }
        .process-step:nth-child(2)::before { content: '2'; }
        .process-step:nth-child(3)::before { content: '3'; }
        .process-step:nth-child(4)::before { content: '4'; }
                .process-step:nth-child(5)::before { content: '5'; }
                        .process-step:nth-child(6)::before { content: '6'; }
                                .process-step:nth-child(7)::before { content: '7'; }
                                        .process-step:nth-child(8)::before { content: '8'; }
        
        .service-badge {
            background: rgba(16, 185, 129, 0.1);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
                /* Hero Section */
        .booking-hero {
            background: linear-gradient(135deg, var(--darker) 0%, #111827 100%);
            min-height: 60vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .booking-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
        }
        
        /* Booking Section */
        .booking-section {
            padding: 5rem 0;
        }
        
        /* Booking Steps */
        .booking-steps {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .booking-steps::before {
            content: '';
            position: absolute;
            top: 25px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1;
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            padding: 0 2rem;
        }
        
        .step-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .step.active .step-circle {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-color: var(--primary);
            color: var(--dark);
        }
        
        .step.completed .step-circle {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--dark);
        }
        
        .step-label {
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .step.active .step-label {
            color: var(--primary);
        }
        
        /* Booking Container */
        .booking-container {
            background: var(--dark-gray);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        /* Service Selection */
        .service-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .service-option {
            background: var(--dark);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .service-option:hover {
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateY(-3px);
        }
        
        .service-option.selected {
            border-color: var(--primary);
            background: rgba(16, 185, 129, 0.1);
        }
        

        
        .service-name {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--light);
        }
        
        .service-duration {
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .service-price {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        
        /* Calendar & Time Selection */
        .calendar-container {
            background: var(--dark);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .time-slots {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .time-slot {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .time-slot:hover {
            border-color: rgba(16, 185, 129, 0.3);
        }
        
        .time-slot.selected {
            background: rgba(16, 185, 129, 0.2);
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .time-slot.unavailable {
            background: rgba(255, 255, 255, 0.02);
            border-color: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.3);
            cursor: not-allowed;
        }
        
        /* Form Styles */
        .booking-form-container {
            padding: 3rem;
        }
        
        .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light);
            padding: 12px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
        }
        
        .form-control:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
            color: var(--light);
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .form-label {
            color: var(--light);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            padding: 10px 28px;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            color: var(--light);
        }
        
        /* Navigation Buttons */
        .booking-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Step Content */
        .step-content {
            display: none;
            padding: 3rem;
        }
        
        .step-content.active {
            display: block;
        }
        
        /* Success Section */
        .success-section {
            text-align: center;
            padding: 4rem 2rem;
            display: none;
        }
        
        .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
        }
        
        .success-icon i {
            font-size: 2.5rem;
            color: var(--dark);
        }
        
        /* Flatpickr Customization */
        .flatpickr-calendar {
            background: var(--dark-gray) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
        }
        
        .flatpickr-day {
            color: var(--light) !important;
        }
        
        .flatpickr-day.selected {
            background: var(--primary) !important;
            border-color: var(--primary) !important;
            color: var(--dark) !important;
        }
        
        .flatpickr-day:hover {
            background: rgba(16, 185, 129, 0.3) !important;
            border-color: rgba(16, 185, 129, 0.3) !important;
        }
        
        
        /* Responsive */
        @media (max-width: 768px) {
            .booking-steps {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }
            
            .booking-steps::before {
                display: none;
            }
            
            .step {
                padding: 0;
            }
            
            .booking-form-container {
                padding: 2rem;
            }
            
            .step-content {
                padding: 2rem;
            }
            
            .service-options {
                grid-template-columns: 1fr;
            }
            
            .time-slots {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        
        
        /* Hero Section */
        .contact-hero {
            background: linear-gradient(135deg, var(--darker) 0%, #111827 100%);
            min-height: 50vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 5rem 0;
        }
        
        /* Contact Methods */
        .contact-methods {
            background: var(--dark-gray);
            border-radius: 12px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: 100%;
        }
        
        .contact-method {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2.5rem;
            transition: all 0.3s ease;
        }
        
        .contact-method:hover {
            transform: translateX(5px);
        }
        
        .contact-method:last-child {
            margin-bottom: 0;
        }
        
        .method-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        .method-icon i {
            font-size: 1.5rem;
            color: var(--dark);
        }
        
        .method-content h4 {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--light);
        }
        
        .method-content p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.5rem;
        }
        
        .method-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .method-link:hover {
            color: var(--primary-light);
            text-decoration: underline;
        }
        
        /* Contact Form */
        .contact-form-container {
            background: var(--dark-gray);
            border-radius: 12px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: 100%;
        }
        
        .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light);
            padding: 12px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
        }
        
        .form-control:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
            color: var(--light);
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .form-label {
            color: var(--light);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        /* Map Section */
        .map-section {
            padding: 4rem 0;
            background: var(--dark-gray);
        }
        
        .map-container {
            background: var(--dark);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: 400px;
            position: relative;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            text-align: center;
            padding: 2rem;
        }
        
        .map-placeholder i {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 5rem 0;
        }
        
        .accordion {
            --bs-accordion-bg: var(--dark-gray);
            --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
            --bs-accordion-btn-color: var(--light);
            --bs-accordion-btn-bg: var(--dark-gray);
            --bs-accordion-active-bg: rgba(16, 185, 129, 0.1);
            --bs-accordion-active-color: var(--primary);
            --bs-accordion-btn-focus-border-color: var(--primary);
            --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
        }
        
        .accordion-button:not(.collapsed) {
            background: rgba(16, 185, 129, 0.1);
            color: var(--primary);
            border-bottom: 1px solid rgba(16, 185, 129, 0.2);
        }
        
        .accordion-body {
            color: rgba(255, 255, 255, 0.8);
            background: var(--dark);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
            padding: 5rem 0;
            text-align: center;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            padding: 3rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Success Message */
        .alert-success {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: var(--primary);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            display: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .contact-section {
                padding: 3rem 0;
            }
            
            .contact-methods,
            .contact-form-container {
                padding: 2rem;
                margin-bottom: 2rem;
            }
            
            .method-icon {
                width: 50px;
                height: 50px;
                margin-right: 1rem;
            }
            
            .method-icon i {
                font-size: 1.25rem;
            }
            
            .map-container {
                height: 300px;
            }
        }
        
        /* Loading Animation */
        .spinner-border {
            width: 1rem;
            height: 1rem;
            border-width: 0.15em;
        }
        
        /* Form Validation */
        .is-invalid {
            border-color: #dc3545 !important;
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2) !important;
        }
        
        .invalid-feedback {
            display: none;
            color: #dc3545;
            font-size: 0.875rem;
            margin-top: -1rem;
            margin-bottom: 1rem;
        }
        
        .was-validated .form-control:invalid ~ .invalid-feedback {
            display: block;
        }

             
        /* Hero Section */
        .about-hero {
            background: linear-gradient(135deg, var(--darker) 0%, #111827 100%);
            min-height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
        }
        
        /* Section Spacing */
        .section-padding {
            padding: 5rem 0;
        }
        
        /* Story Section */
        .story-section {
            background: var(--dark-gray);
            position: relative;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary), transparent);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            margin-bottom: 4rem;
            position: relative;
            width: 50%;
            padding: 0 3rem;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-dot {
            width: 20px;
            height: 20px;
            background: var(--primary);
            border-radius: 50%;
            position: absolute;
            top: 0;
            right: -10px;
            z-index: 2;
        }
        
        .timeline-item:nth-child(even) .timeline-dot {
            left: -10px;
            right: auto;
        }
        
        .timeline-content {
            background: var(--dark);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }
        
        .timeline-content::before {
            content: '';
            position: absolute;
            top: 20px;
            right: -10px;
            width: 0;
            height: 0;
            border-left: 10px solid var(--dark);
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
        }
        
        .timeline-item:nth-child(even) .timeline-content::before {
            left: -10px;
            right: auto;
            border-right: 10px solid var(--dark);
            border-left: none;
        }
        
        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .value-card {
            background: var(--dark-gray);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            border-color: rgba(16, 185, 129, 0.3);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .value-icon i {
            font-size: 2rem;
            color: var(--dark);
        }
        
        /* Team Section */
        .team-section {
            background: var(--dark-gray);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .team-card {
            background: var(--dark);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .team-card:hover {
            transform: translateY(-8px);
            border-color: rgba(16, 185, 129, 0.3);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
        }
        
        .team-image {
            height: 250px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-content {
            padding: 1.5rem;
        }
        
        .team-name {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--light);
        }
        
        .team-role {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .team-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .team-social a:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-2px);
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), #84cc16);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
        }
        
        /* Expertise Section */
        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .expertise-card {
            background: var(--dark-gray);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .expertise-card:hover {
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateY(-3px);
        }
        
        .expertise-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        
        /* Responsive */
        @media (max-width: 768px) {
            .timeline::before {
                left: 20px;
            }
            
            .timeline-item {
                width: 100%;
                left: 0 !important;
                padding-left: 50px;
                padding-right: 0;
            }
            
            .timeline-dot {
                left: 10px !important;
                right: auto !important;
            }
            
            .timeline-content::before {
                left: -10px !important;
                right: auto !important;
                border-right: 10px solid var(--dark);
                border-left: none;
            }
            
            .section-padding {
                padding: 3rem 0;
            }
        }

                /* Hero Section */
        .portfolio-hero {
            background: linear-gradient(135deg, var(--darker) 0%, #111827 100%);
            min-height: 60vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .portfolio-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
        }
        
        /* Portfolio Filters */
        .portfolio-filters {
            background: var(--dark-gray);
            padding: 2rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .filter-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.7);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            margin: 0 0.5rem 0.5rem 0;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--dark);
            transform: translateY(-2px);
        }
        
        /* Portfolio Grid */
        .portfolio-grid {
            padding: 4rem 0;
        }
        
        .portfolio-item {
            background: var(--dark-gray);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            height: 100%;
        }
        
        .portfolio-item:hover {
            transform: translateY(-8px);
            border-color: rgba(16, 185, 129, 0.3);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
        }
        
        .portfolio-image {
            height: 250px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.05);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-content {
            padding: 1.5rem;
        }
        
        .portfolio-category {
            background: rgba(16, 185, 129, 0.2);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .portfolio-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--light);
        }
        
        .portfolio-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        
        .portfolio-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .tech-tag {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
        }
        
        .portfolio-actions {
            display: flex;
            gap: 0.5rem;
        }
        
        /* Stats Section */
        .portfolio-stats {
            background: var(--dark-gray);
            padding: 4rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), #84cc16);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
        }
        
        /* CTA Section */
        .portfolio-cta {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
            padding: 4rem 0;
            text-align: center;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            padding: 3rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Modal */
        .modal-content {
            background: var(--dark-gray);
            color: var(--light);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .modal-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .modal-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .portfolio-filters {
                padding: 1.5rem 0;
            }
            
            .filter-btn {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
                margin: 0 0.25rem 0.5rem 0;
            }
            
            .portfolio-grid {
                padding: 2rem 0;
            }
            
            .portfolio-image {
                height: 200px;
            }
        }