:root {
    /* New Purple Color Scheme */
    --dark-purple: #3D2A4B;
    --dark-purple-alt: #4A2C5E;
    --medium-purple: #5A3F6B;
    --medium-purple-alt: #6B4C7A;
    --light-purple: #7D5E8C;
    --light-purple-alt: #8A6B9A;
    --accent-purple: #9B7CAC;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f5ff 0%, #f0e8ff 100%);
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(61, 42, 75, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(155, 124, 172, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--accent-purple) 50%, var(--light-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
}

.logo h1 a {
    text-decoration: none;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--accent-purple) 50%, var(--light-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-purple);
    font-weight: 500;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-purple);
    background: rgba(155, 124, 172, 0.1);
    transform: translateY(-1px);
}

.hero {
    text-align: center;
    padding: 6rem 0;
    color: white;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--medium-purple) 50%, var(--light-purple) 100%);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.content {
    background: white;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.section {
    padding: 3rem 2rem;
}

.section h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--accent-purple) 50%, var(--light-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: var(--medium-purple);
}

.section p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.card p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.section ul, .section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #555;
}

.section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Services Slider Container */
.services-slider-container {
    position: relative;
    margin-top: 2rem;
    overflow: hidden;
    width: 100%;
}

.services-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
    width: 100%;
    min-height: 320px;
}

.card {
    background: linear-gradient(135deg, #faf8ff, #ffffff);
    padding: 1rem 0.8rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(61, 42, 75, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-purple);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: block !important;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dark-purple), var(--accent-purple), var(--light-purple));
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(61, 42, 75, 0.2);
    border-left-color: var(--light-purple);
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--dark-purple);
    line-height: 1.2;
}

.card .category {
    background: linear-gradient(135deg, var(--medium-purple), var(--accent-purple));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-category {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

.web-category {
    background: linear-gradient(45deg, #10ac84, #00d2d3);
}

.mobile-category {
    background: linear-gradient(45deg, #5f27cd, #a55eea);
}

.features-list {
    list-style: none;
    margin-top: 0.6rem;
}

.features-list li {
    padding: 0.1rem 0;
    position: relative;
    padding-left: 1rem;
    font-size: 0.75rem;
    line-height: 1.3;
}

.features-list li::before {
    content: "✓";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    margin-top: 0.6rem;
}

.tech-tag {
    background: #f0f2ff;
    color: #667eea;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 500;
}

/* Hide scrollbars */
body {
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* Hide scrollbars for webkit browsers */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbars for Firefox */
html {
    scrollbar-width: none;
}

/* Slider Dots */
.slider-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(155, 124, 172, 0.3);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--accent-purple);
    transform: scale(1.2);
}

.ai-showcase {
    background: linear-gradient(135deg, #f8f5ff 0%, #f0e8ff 100%);
    color: var(--dark-purple);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 6rem 0;
    animation: slideInFromRight 1.2s ease-out;
}

.ai-showcase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(155, 124, 172, 0.05) 50%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
    z-index: 1;
}

.ai-showcase-content {
    position: relative;
    z-index: 2;
}

.ai-showcase .container {
    position: relative;
    z-index: 3;
}

.ai-showcase h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--accent-purple) 50%, var(--light-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: slideInFromRight 1.4s ease-out 0.2s both;
}

.ai-showcase p {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--medium-purple);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInFromRight 1.4s ease-out 0.4s both;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(155, 124, 172, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(61, 42, 75, 0.1);
    animation: slideInFromRight 1.6s ease-out both;
}

.process-step:nth-child(1) {
    animation-delay: 0.6s;
}

.process-step:nth-child(2) {
    animation-delay: 0.8s;
}

.process-step:nth-child(3) {
    animation-delay: 1.0s;
}

.process-step:nth-child(4) {
    animation-delay: 1.2s;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--light-purple), var(--accent-purple), var(--light-purple));
}

.process-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(61, 42, 75, 0.2);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-purple), var(--accent-purple));
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-purple);
    position: relative;
    z-index: 2;
}

.process-step p {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--medium-purple);
    position: relative;
    z-index: 2;
}

.contact-section {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--medium-purple) 50%, var(--light-purple) 100%);
    background-size: 200% 200%;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.contact-section h2 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    margin-top: 2rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.submit-btn {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--accent-purple) 50%, var(--light-purple) 100%);
    background-size: 200% 200%;
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(61, 42, 75, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(61, 42, 75, 0.5);
    background-position: 100% 0;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ai-keywords {
    font-weight: 500;
    color: #667eea;
}

.natural-language {
    line-height: 1.7;
    font-size: 1rem;
}

.qa-section {
    margin: 2rem 0;
}

.question {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.answer {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group small {
    color: #ffffff;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: block;
    opacity: 0.9;
}

footer nav {
    margin-top: 1rem;
}

footer nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
}

footer nav a:hover {
    text-decoration: underline;
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Skip to main content link for accessibility */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 4px;
}

.skip-to-main:focus {
    top: 6px;
}

/* Focus indicators for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid #333;
    }
    
    .tech-tag {
        border: 1px solid #667eea;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mobile-menu-toggle::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: left 0.5s;
}

.mobile-menu-toggle:hover::before {
    left: 100%;
}

.mobile-menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: white;
    margin: 2.5px 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.mobile-menu-toggle.active {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: scale(1.05);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: white;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: white;
}

/* Trust Signals and Testimonials */
.trust-signals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
}

.trust-signals::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

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

.trust-item:hover::before {
    left: 100%;
}

.trust-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-text strong {
    display: block;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.trust-text small {
    color: #666;
    font-size: 0.9rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #333;
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author small {
    color: #667eea;
    font-weight: 500;
}

/* FAQ Styles */
.faq-container {
    max-width: 1200px;
    margin: 2rem auto;
    width: 100%;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
}

.faq-question-wrapper {
    position: relative;
}

.faq-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.faq-question {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--medium-purple) 50%, var(--light-purple) 100%);
    background-size: 200% 200%;
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.2rem;
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.faq-question::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: left 0.5s ease;
}

.faq-question:hover::before {
    left: 100%;
}

.faq-text {
    color: white;
    font-weight: 600;
    flex: 1;
    margin-right: 1rem;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--medium-purple) 0%, var(--accent-purple) 50%, var(--light-purple) 100%);
    background-size: 200% 200%;
    animation: gradientShift 2s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.faq-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.faq-plus, .faq-minus {
    position: absolute;
    font-size: 1.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-plus {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.faq-minus {
    opacity: 0;
    transform: rotate(180deg) scale(0.5);
}

.faq-item.active .faq-plus {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
}

.faq-item.active .faq-minus {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.faq-item.active .faq-toggle {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem;
}

.faq-answer p {
    padding: 1.5rem 0;
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    font-family: var(--font-primary);
    border-left: 4px solid var(--accent-purple);
    padding-left: 1.5rem;
    margin-left: 1.5rem;
}

/* Radio button visual indicator */
.faq-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translateY(-50%);
    width: 6px;
    height: 0;
    background: linear-gradient(135deg, var(--dark-purple), var(--accent-purple));
    border-radius: 0 3px 3px 0;
    transition: height 0.3s ease;
    z-index: 10;
}

.faq-item.active::before {
    height: 60px;
}

/* Enhanced focus states for accessibility */
.faq-question:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.2rem;
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
    }
    
    .faq-plus, .faq-minus {
        font-size: 1.5rem;
    }
    
    .faq-answer p {
        padding: 1.2rem 0;
        font-size: 1rem;
        margin-left: 1.2rem;
    }
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #f8f9ff;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #667eea;
    font-weight: bold;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
    font-weight: 500;
}

/* Enhanced Footer Styles */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 3rem 0;
}

.footer-brand h3 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand p {
    color: white;
    line-height: 1.6;
    font-size: 1rem;
}

.footer-contact h4,
.footer-services h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-details strong {
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-details p {
    color: white;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.contact-details a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-details a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    color: white;
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1rem;
}

.footer-services li::before {
    content: "→";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left p {
    color: white;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-right nav {
    display: flex;
    gap: 2rem;
}

.footer-bottom-right nav a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-bottom-right nav a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-right nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

/* Privacy Policy Specific Styles */
.effective-date {
    background: linear-gradient(135deg, #f5f7ff, #ffffff);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    margin-bottom: 2rem;
    font-weight: 500;
}

.contact-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.contact-box h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.contact-box a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    border-bottom: 3px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: inline-block;
    margin-top: 1rem;
}

.contact-box a:hover {
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.highlight {
    background: #f0f2ff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: #667eea;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(61, 42, 75, 0.95), rgba(90, 63, 107, 0.95));
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        gap: 2.5rem;
        opacity: 0;
        transform: translateY(-100%);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .nav-menu.mobile-open {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(30px);
        animation: slideInUp 0.6s ease-out forwards;
    }

    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.6s; }
    .nav-menu li:nth-child(7) { animation-delay: 0.7s; }

    .nav-menu li a {
        font-size: 1.3rem;
        color: white;
        font-weight: 600;
        text-decoration: none;
        padding: 0.5rem 1rem;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        display: block;
        text-align: center;
        border-radius: 8px;
    }

    .nav-menu li a:hover {
        color: rgba(255, 255, 255, 0.8);
        transform: translateX(10px);
        text-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }
    
    /* Hero Section */
    .hero {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 3rem 0;
    }
    
    .hero h1 { 
        font-size: 2.2rem; 
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p { 
        font-size: 1.1rem; 
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle { 
        font-size: 1rem; 
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .cta-button { 
        display: block; 
        margin: 0.5rem auto; 
        width: fit-content;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Logo */
    .logo h1 {
        font-size: 1rem;
    }
    
    /* Cards Grid */
    .cards-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.5rem;
    }
    
    /* Hide scrollbars on mobile */
    body {
        overflow-x: hidden;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
    
    /* Section Headings */
    .section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    /* AI Showcase */
    .ai-showcase {
        padding: 4rem 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        background: linear-gradient(135deg, #f8f5ff 0%, #f0e8ff 100%);
    }
    
    .ai-showcase h2 {
        font-size: 2.5rem;
    }
    
    .ai-showcase p {
        font-size: 1.1rem;
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .process-step {
        padding: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }
    
    .process-step h3 {
        font-size: 1.2rem;
    }
    
    /* Contact Info */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    /* Full-width sections on mobile */
    .content {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        border-radius: 0;
    }
    
    .contact-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    /* Tech Stack Tags */
    .tech-stack {
        gap: 0.3rem;
    }
    
    .tech-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    /* Features List */
    .features-list li {
        font-size: 0.9rem;
        padding: 0.2rem 0;
    }
    
    /* Section Padding */
    .section {
        padding: 2rem 1rem;
    }
    
    /* Container Padding */
    .container {
        padding: 0 15px;
    }
    
    /* Hero Padding */
    .hero {
        padding: 3rem 0;
    }
    
    /* AI Showcase */
    .ai-showcase .container {
        padding: 2rem 15px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Devices */
    .hero h1 { 
        font-size: 1.8rem; 
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .hero p { 
        font-size: 1rem; 
    }
    
    .hero-subtitle { 
        font-size: 0.9rem; 
    }
    
    .logo h1 {
        font-size: 0.9rem;
    }
    
    .section h2 {
        font-size: 1.7rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .card h3 {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.3rem;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
    }
    
    /* Process Steps for small screens */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Cards Grid for small screens */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ai-showcase h2 {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .contact-box {
        padding: 1.5rem;
    }
    
    .contact-box h3 {
        font-size: 1.2rem;
    }
    
    .contact-box a {
        font-size: 1rem;
    }
    
    /* Reduce spacing */
    .section {
        padding: 1.5rem 0.5rem;
    }
    
    .hero {
        padding: 2rem 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .content {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        border-radius: 0;
    }
    
    .contact-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .ai-showcase {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        background: linear-gradient(135deg, #f8f5ff 0%, #f0e8ff 100%);
    }
}

@media (max-width: 360px) {
    /* Very Small Screens */
    .hero h1 { 
        font-size: 1.6rem; 
    }
    
    .logo h1 {
        font-size: 0.8rem;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Full-width sections for very small screens */
    .hero {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .content {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        border-radius: 0;
    }
    
    .contact-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .ai-showcase {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        background: linear-gradient(135deg, #f8f5ff 0%, #f0e8ff 100%);
    }
}

/* Animation Keyframes */
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

