/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* Ensure all elements stay within viewport */
*, *::before, *::after {
    max-width: 100%;
}

/* Allow specific elements to exceed if needed */
.container, .nav-container, section, .page-header {
    max-width: none;
}

/* CSS Variables */
:root {
    --primary-color: #667eea;
    --primary-dark: #5a67d8;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-dark: #1a202c;
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    width: 2.5rem;
    /*height: 2.5rem;*/
    display: inline-block;
    vertical-align: middle;
}

.logo-text {
    margin-top: 5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.nav-logo:hover .logo-text {
    transform: translateY(-1px);
    text-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--gradient-secondary);
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    top: 10%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0px) rotate(180deg);
    }
    75% {
        transform: translateY(20px) rotate(270deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

.hero-title {
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .line1,
.hero-title .line2 {
    display: block;
}

/* Typewriter cursor effect - Only show cursor when actively typing */
.hero-title .line1.typing::after,
.hero-title .line2.typing::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1.1em;
    background-color: #667eea;
    margin-left: 2px;
    animation: blink 1s infinite;
    opacity: 1;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-hover);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.hero-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.code-window {
    border-radius: 10px;
    overflow: hidden;
    background: #1a202c;
    color: #e2e8f0;
    font-family: 'Fira Code', monospace;
}

.code-header {
    background: #2d3748;
    padding: 1rem;
    display: flex;
    align-items: center;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #fc8181;
}

.dot.yellow {
    background: #f6e05e;
}

.dot.green {
    background: #68d391;
}

.code-content {
    padding: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 0.5rem;
}

.code-line.indent {
    padding-left: 2rem;
}

.keyword {
    color: #9f7aea;
}

.variable {
    color: #63b3ed;
}

.function {
    color: #68d391;
}

.string {
    color: #f6ad55;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Why Choose Us */
.why-choose-us {
    padding: 6rem 0;
    background: var(--bg-light);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-text p {
    color: var(--text-light);
    margin: 0;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Guarantees Container */
.guarantees-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    gap: 1rem;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.guarantee-content h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.guarantee-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Technology Stack */
.tech-stack {
    padding: 6rem 0;
    background: var(--white);
}

/* Wider container for tech stack on large screens */
.tech-stack .container {
    max-width: 1400px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Additional spacing for very large screens */
@media (min-width: 1600px) {
    .tech-stack .container {
        max-width: 1600px;
    }
    
    .tech-grid {
        gap: 3rem;
    }
}

/* Responsive breakpoints for tech-grid */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
    min-height: 160px;
    justify-content: center;
}

/* Enhanced styling for large screens */
@media (min-width: 1200px) {
    .tech-item {
        padding: 3rem 2rem;
        min-height: 180px;
    }
    
    .tech-item span {
        font-size: 1.1rem;
        font-weight: 500;
    }
}

.tech-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.tech-icon {
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

/* Larger icons for big screens */
@media (min-width: 1200px) {
    .tech-icon {
        font-size: 3.5rem;
    }
}

.tech-item:hover .tech-icon {
    transform: scale(1.1);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-item span {
    font-weight: 500;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.footer-logo .logo-icon {
    width: 3rem;
    height: 3rem;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
    transition: all 0.3s ease;
}

.footer-logo .logo-text {
    background: var(--gradient-primary);
    /*background:#f0f0f0;*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    line-height: 1.2;
}

.footer-logo:hover .logo-icon {
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.5));
    transform: translateY(-2px);
}

.footer-logo:hover .logo-text {
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer .contact-info {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.footer .contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.footer .contact-info .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer .contact-info .contact-item a:hover {
    color: var(--white);
}

.footer .contact-info .contact-item i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.footer .contact-info .contact-item:hover i {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-container,
    .guarantees-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-title {
        line-height: 1.2;
    }
    
    /* Fix breadcrumb overflow on small devices */
    .breadcrumb {
        flex-wrap: wrap;
        gap: 0.3rem;
        justify-content: center;
        font-size: 0.9rem;
        max-width: 100%;
        overflow: visible;
    }
    
    .header-content {
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .header-content p {
        font-size: 1rem;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .stats-container,
    .guarantees-container {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card,
    .stat-item,
    .guarantee-item {
        padding: 1.5rem;
    }

    .guarantee-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Page Header Styles */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,100 0,50"/></svg>') repeat-x;
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.header-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* About Introduction */
.about-intro {
    padding: 6rem 0;
    background: var(--white);
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.intro-content .lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.intro-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.intro-stats .stat {
    text-align: center;
}

.intro-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.intro-stats .stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

/* About Page Guarantees */
.intro-guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

/* Mission & Vision */
.mission-vision {
    padding: 6rem 0;
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
}

.mv-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Our Approach */
.our-approach {
    padding: 6rem 0;
    background: var(--white);
}

.approach-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    min-height: 120px;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: center;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.timeline-content {
    flex: 1;
    padding: 3rem 2rem 2rem 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    margin: 0 5rem;
    box-shadow: var(--shadow);
    position: relative;
    text-align: center;
}

.timeline-content h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: var(--bg-light);
}

.choose-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.choose-content h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.choose-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.choose-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.choose-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.choose-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.choose-feature .feature-content {
    text-align: center;
}

.choose-feature .feature-content h4 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.choose-feature .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 2rem;
}

.team-info h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-info p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Services Page Styles */
.services-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.services-list {
    padding: 6rem 0;
    background: var(--white);
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid var(--bg-light);
}

.service-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) .service-content {
    direction: ltr;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.service-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.service-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.service-image img {
    width: 100%;
    height: auto;
}

/* Contact Page Styles */
.contact-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.contact-content {
    padding: 6rem 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.info-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-text p,
.info-text a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0;
}

.info-text a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--bg-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Form Validation Styles */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #f56565;
    background-color: rgba(245, 101, 101, 0.05);
}

.form-group input.error:focus,
.form-group textarea.error:focus,
.form-group select.error:focus {
    border-color: #f56565;
    box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.1);
}

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Portfolio Page Styles */
.portfolio-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.portfolio-grid {
    padding: 6rem 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    height: 200px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.project-content {
    padding: 2rem;
}

.project-content h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tech-tag {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Technology Page Styles */
.tech-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.tech-categories {
    padding: 6rem 0;
    background: var(--white);
}

.category-section {
    margin-bottom: 4rem;
}

.category-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.tech-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tech-card .tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tech-card h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tech-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* Technology Page Styles */
.tech-overview {
    padding: 6rem 0;
    background: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.overview-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overview-text h2 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.tech-architecture {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.tech-architecture h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.architecture-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.architecture-layer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.layer-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.layer-tech {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.architecture-arrow {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.tech-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-card h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

/* Technology Categories */
.tech-categories {
    padding: 6rem 0;
    background: var(--bg-light);
}

.category-section {
    margin-bottom: 4rem;
}

.category-section h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 2rem;
}

.category-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.tech-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}

.tech-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.tech-card .tech-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.tech-card:hover .tech-icon {
    transform: scale(1.1);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-card h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.tech-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Technology Benefits */
.tech-benefits {
    padding: 6rem 0;
    background: var(--white);
}

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

.benefit-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.benefit-card:hover {
    background: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
}

.benefit-card h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.375rem;
}

.benefit-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Portfolio Page Styles */
.portfolio-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.portfolio-grid {
    padding: 6rem 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    height: 200px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.project-content {
    padding: 2rem;
}

.project-content h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tech-tag {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.project-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
}

.project-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.project-stats i {
    color: var(--primary-color);
}

/* Success Stories */
.success-stories {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: #ffd700;
    font-size: 1rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

.tech-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Live Client Websites */
.live-websites {
    padding: 6rem 0;
    background: var(--white);
}

.live-websites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.website-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.website-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.website-preview {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.website-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.website-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.website-card:hover .website-overlay {
    opacity: 1;
}

.website-card:hover .website-preview img {
    transform: scale(1.05);
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.overlay-content i {
    font-size: 2rem;
}

.website-info {
    padding: 2rem;
}

.website-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.business-type {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.website-info > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.website-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.website-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 20px;
}

.website-features i {
    color: var(--primary-color);
}

.website-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

/* AI Solutions */
.ai-solutions {
    padding: 6rem 0;
    background: var(--bg-light);
}

.ai-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-demo {
    position: relative;
}

.demo-window {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.demo-header {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.demo-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.demo-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.demo-content {
    padding: 2rem 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.message-content {
    background: var(--bg-light);
    padding: 1rem 1.2rem;
    border-radius: 18px;
    max-width: 70%;
}

.chat-message.user .message-content {
    background: #1e293b !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(30, 41, 59, 0.2);
}

.chat-message.user .message-content p {
    color: #ffffff !important;
    margin: 0;
    line-height: 1.4;
    font-size: 0.95rem;
}

.message-content p {
    margin: 0;
    line-height: 1.4;
    font-size: 0.95rem;
}

.typing-indicator {
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
}

.typing-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.2rem;
    background: var(--bg-light);
    border-radius: 18px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-light);
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 80%, 100% { opacity: 0.3; transform: scale(1); }
    40% { opacity: 1; transform: scale(1.2); }
}

.ai-features h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.ai-features > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.feature-list {
    margin-bottom: 2.5rem;
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ai-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ai-feature .feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.ai-feature .feature-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.ai-tech {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.ai-demo .ai-tech {
    margin-top: 2rem;
    margin-bottom: 0;
}

.ai-tech h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ai-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ai-cta .btn {
    flex: 1;
    min-width: 180px;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Service Process */
.service-process {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
        overflow-x: hidden;
    }
    
    .header-content {
        max-width: 100%;
        padding: 4rem 0 1rem;
        box-sizing: border-box;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .header-content p {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 0.4rem;
        max-width: 100%;
    }
    
    .intro-wrapper,
    .content-wrapper,
    .contact-wrapper,
    .service-item,
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Fix contact page container overflow */
    .contact-info,
    .contact-form {
        margin: 0;
        padding: 2rem 1.5rem;
        max-width: 100%;
        box-sizing: border-box;
        width: 100%;
    }
    
    .contact-content {
        padding: 4rem 0;
    }
    
    .contact-content .container {
        padding: 0 1rem;
    }
    
    .service-item {
        /* Reverse order on mobile - image first, then content */
        display: flex;
        flex-direction: column-reverse;
    }
    
    .service-item:nth-child(even) {
        direction: ltr;
        /* Also reverse order for even items on mobile */
        flex-direction: column-reverse;
    }
    
    .service-image {
        border-radius: 15px;
        margin-bottom: .0rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .service-image img {
        max-height: 250px;
        object-fit: cover;
        width: 100%;
    }
    
    .service-content {
        padding: 0;
    }
    
    .service-content p {
        margin-bottom: 1.5rem;
        line-height: 1.7;
        color: var(--text-secondary);
    }
    
    .intro-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .intro-guarantees {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .approach-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: center;
    }
    
    .timeline-icon {
        left: 30px !important;
        transform: translateX(-50%) !important;
    }
    
    .timeline-content {
        margin: 0 0 0 30px !important;
    }
    
    .choose-features {
        grid-template-columns: 1fr;
    }
    
    .choose-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid,
    .tech-items,
    .process-steps,
    .faq-grid,
    .testimonials-grid,
    .benefits-grid,
    .live-websites-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ai-demo {
        order: -1;
    }
    
    .ai-features {
        order: 1;
    }
    
    .ai-features h3 {
        font-size: 1.8rem;
    }
    
    .demo-content {
        max-height: 300px;
    }
    
    .ai-cta {
        flex-direction: column;
    }
    
    .ai-cta .btn {
        min-width: auto;
    }
    
    .website-features {
        justify-content: left;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tech-stats {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    /* Additional contact page fixes for very small devices */
    .contact-info,
    .contact-form {
        padding: 1.5rem 1rem !important;
        margin: 0 !important;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 100%;
    }
    
    .contact-content {
        padding: 3rem 0;
    }
    
    .contact-content .container {
        padding: 0 0.5rem;
    }
    
    .contact-wrapper {
        gap: 1.5rem;
    }
    
    .info-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .info-text {
        flex: 1;
        min-width: 0;
    }
    
    .info-text h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .info-text p,
    .info-text a {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    /* Form elements mobile fixes */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-submit .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Additional breadcrumb fixes for very small devices */
    .page-header {
        padding: 5rem 0 2.5rem;
    }
    
    .header-content h1 {
        font-size: 1.6rem !important;
        margin-bottom: 0.8rem;
    }
    
    .header-content p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .breadcrumb {
        font-size: 0.8rem !important;
        gap: 0.2rem !important;
        margin: 0 auto;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .breadcrumb > * {
        display: inline;
        margin: 0 0.1rem;
    }
    
    .tech-stats {
        flex-direction: column;
    }
    
    .stat-card {
        flex: none;
    }
    
    /* Enhanced mobile experience for services */
    .service-item {
        margin-bottom: 4rem;
        padding-bottom: 4rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .service-item:last-child {
        border-bottom: none;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .service-image img {
        max-height: 220px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }
    
    .service-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        margin-top: 0;
        color: var(--primary-color);
    }
    
    .service-features {
        margin: 1.8rem 0 2rem 0;
    }
    
    .service-features li {
        margin-bottom: 0.9rem;
        font-size: 0.95rem;
        padding-left: 0.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}