
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #facc15;
            --secondary-dark: #eab308;
            --light: #f8fafc;
            --dark: #1e293b;
            --gray: #64748b;
            --light-gray: #e2e8f0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        
        body {
            background-color: white;
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
      .logo {
    display: flex;
    align-items: center;
    height: 100px;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    margin-left: -10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .logo {
        height: 80px; /* Smaller height on mobile */
    }
    
    .logo img {
        height: 80px; /* Smaller image on mobile */
        margin-left: -5px; /* Adjusted margin for smaller screens */
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .logo {
        height: 60px; /* Even smaller for very small screens */
    }
    
    .logo img {
        height: 60px;
        margin-left: 0; /* Remove negative margin if too tight */
    }
}
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }
        
        /* Hero Section */
        .hero {
            padding: 180px 0 100px;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(250, 204, 21, 0.05) 100%);
            text-align: center;
        }
        
        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #1d4ed8;
        }
        
        .hero p {
            font-size: 20px;
            color: white;
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
            border: 2px solid var(--primary);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background-color: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background-color: var(--light);
            transform: translateY(-2px);
        }
        
         /* About Section */
        .about {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-content {
            display: flex;
            gap: 50px;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .values {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .value-item {
            background-color: var(--light);
            padding: 20px;
            border-radius: 8px;
            flex: 1 1 200px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .value-item:hover {
            transform: translateY(-5px);
        }
        
        .value-icon {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .value-item h4 {
            margin-bottom: 10px;
           
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Additional styles for the content */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary);
            color: white;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: var(--primary-dark);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            color: var(--dark);
        }
        
        .btn-secondary:hover {
            background-color: var(--secondary-dark);
        }
        
        .btn-group {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .process-steps {
            margin: 40px 0;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .step-number {
            background-color: var(--primary);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .results {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
        }
        
        .results-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .results-item:before {
            content: "✓";
            color: var(--primary);
            margin-right: 10px;
            font-weight: bold;
        }
        
        .services-list {
            margin: 20px 0;
        }
        
        .services-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .services-list li:before {
            
            color: var(--primary);
            font-size: 24px;
            position: absolute;
            left: 0;
            top: -3px;
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-header {
            padding: 20px;
            background-color: var(--primary);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .service-header h3 {
            font-size: 20px;
        }
        
        .status {
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .status.live {
            background-color: var(--secondary);
            color: var(--dark);
        }
        
        .status.coming-soon {
            background-color: white;
            color: var(--primary);
        }
        
        .service-body {
            padding: 20px;
        }
        
        .service-body p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .service-features {
            margin-bottom: 20px;
        }
        
        .service-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .service-features i {
            color: var(--secondary);
            margin-top: 3px;
        }
        
        .service-btn {
            display: block;
            text-align: center;
            background-color: var(--light);
            color: var(--primary);
            padding: 10px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .service-btn:hover {
            background-color: var(--light-gray);
        }
        
        /* Legal VA Section */
        .legal-va {
            padding: 100px 0;
            background-color: white;
        }
        
        .legal-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        .legal-feature {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background-color: var(--light);
            transition: transform 0.3s;
        }
        
        .legal-feature:hover {
            transform: translateY(-5px);
        }
        
        .legal-feature-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .legal-feature h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .legal-feature p {
            color: var(--gray);
        }
        
        .case-study {
            background-color: var(--light);
            border-radius: 10px;
            padding: 40px;
            margin-top: 60px;
            display: flex;
            gap: 40px;
            align-items: center;
        }
        
        .case-study-content {
            flex: 1;
        }
        
        .case-study h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .case-study p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .case-study-visual {
            flex: 1;
            background-color: var(--primary);
            border-radius: 8px;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }
        
        /* Coming Soon Sections */
        .coming-soon {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .coming-soon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .coming-soon-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .coming-soon-card:hover {
            opacity: 1;
        }
        
        .coming-soon-tag {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .coming-soon-card h3 {
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .coming-soon-features {
            margin-bottom: 20px;
            text-align: left;
        }
        
        .coming-soon-features li {
            margin-bottom: 10px;
            color: var(--gray);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .coming-soon-features i {
            color: var(--primary);
            margin-top: 3px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .cta-buttons-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .cta-btn {
            background-color: white;
            color: var(--primary);
            border: none;
        }
        
        .cta-btn:hover {
            background-color: var(--light);
        }
        
        .cta-btn-alt {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .cta-btn-alt:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--light);
        }
        
        .footer-links li {
            margin-bottom: 10px;
            list-style: none;
        }
        
        .footer-links a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-gray);
            font-size: 14px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            color: white;
            font-size: 20px;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: var(--secondary);
        }
        
        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .sticky-btn {
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.3s;
        }
        
        .sticky-btn:hover {
            transform: translateY(-3px);
        }
        
        .sticky-btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .sticky-btn-secondary {
            background-color: var(--secondary);
            color: var(--dark);
        }
        
        /* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-header {
    padding: 25px 30px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

.modal-header h3 {
    margin: 0;
    font-size: 22px;
    color: #2c3e50;
    font-weight: 600;
}

.modal-header p {
    margin: 8px 0 0;
    font-size: 14px;
    color: #7f8c8d;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #95a5a6;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #e74c3c;
}

/* Form Styles */
#consultationForm {
    padding: 25px 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #34495e;
    font-weight: 500;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

.form-group textarea {
    padding: 12px 15px;
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 38px;
    color: #95a5a6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    background-color: white;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.submit-btn svg {
    transition: transform 0.3s;
}

.submit-btn:hover svg {
    transform: translateX(3px);
}

.form-footer {
    margin-top: 25px;
}

.privacy-notice {
    font-size: 12px;
    color: #95a5a6;
    text-align: center;
    margin-top: 15px;
}

.privacy-notice a {
    color: #3498db;
    text-decoration: none;
}

/* Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-content {
        max-width: 100%;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    #consultationForm {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-header p {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px 10px 36px;
    }
    
    .input-icon {
        top: 34px;
    }
}
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 40px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .case-study {
                flex-direction: column;
            }
            
            .case-study-visual {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .sticky-cta {
                bottom: 10px;
                right: 10px;
            }
            
            .sticky-btn {
                padding: 10px 15px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            .cta-section h2 {
                font-size: 28px;
            }
            
            .modal-content {
                width: 95%;
                padding: 20px;
            }
        }
        /* Sidebar styles */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: left 0.3s ease;
  z-index: 1002;
}

.mobile-sidebar a {
  text-decoration: none;
  color: #333;
  margin: 15px 0;
  font-size: 1.1rem;
}

.close-sidebar {
  align-self: flex-end;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
}

/* Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 1000;
}
  
/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-category {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.category-header {
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background-color: white;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid #e2e8f0;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    text-align: center;
}

.testimonial-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.client-role {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #475569;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.rating {
    color: #f59e0b;
    font-size: 0.875rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: #1a365d;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #2c5282;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #1a365d;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .testimonial-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    
    .client-image {
        margin: 0;
        width: 100px;
        height: 100px;
    }
    
    .testimonial-content {
        text-align: left;
        flex: 1;
    }
    
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 33.33%;
    }
}
  
