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

/* Performance optimizations */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    /* Optimize for animations */
    will-change: scroll-position;
}

html, body {
    -webkit-overflow-scrolling: touch;
}

/* Hardware acceleration for smooth animations */
.service-card,
.case-card,
.about-block,
.about-right,
.why-choose-image,
.btn,
.mobile-nav-overlay,
.service-modal,
.modal-container {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Prevent layout thrashing */
    contain: layout style paint;
}

/* Prevent transform conflicts and ensure smooth animations */
.service-card.animate-in,
.case-card.animate-in,
.about-block.animate-in,
.about-right.animate-in,
.why-choose-text.animate-in,
.why-choose-image.animate-in {
    transform: translateY(0) scale(1) translateZ(0) !important;
    opacity: 1 !important;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 14px;
    transition: all 0.3s ease;
    line-height: auto;
}

.btn-primary {
    background-color: #213555;
    color: white !important;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #e0e0e0;
}

.btn-white {
    background-color: white;
    color: #333;
    border: 1px solid #e0e0e0;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid #e0e0e0;
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline.theme {
    background-color: #3b82f6;
}

.btn-outline.default {
    color: #0a1128;
} 

.btn-link {
    background-color: transparent;
    color: white;
    border: none;
    padding: 0;
    text-decoration: none;
}

.btn-subscribe {
    background-color: #333;
    color: white;
    border: 1px solid white;
    padding: 8px 16px;
}

/* CTA Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}



/* Header Styles - Matching index.html exactly */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo svg {
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav a {
    color: #0a1128;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #3b82f6;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.contact-btn {
    background: #3b82f6;
    color: white !important;
    padding: 9px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    font-size: 14px;
    border-radius: 52px;
}

.contact-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.contact-btn::after {
    display: none;
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: -0.5rem;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.lang-btn:hover {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
}

.lang-btn.active {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
    font-weight: 600;
}

.lang-separator {
    color: #d1d5db;
    font-weight: 300;
}

/* Mobile Language Switcher */
.mobile-language-switcher {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mobile-lang-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.mobile-lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #3b82f6;
    padding: 0.75rem 1.5rem;
    color: #0a1128;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    color: #3b82f6;
    border-radius: 9999px;
}

.mobile-lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.7) 0%, rgba(59, 130, 246, 0.3) 100%);
    background-image: url('pexels-hcdigital-3619870.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 160px 0 120px;
    color: white;
    text-align: left;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.8) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(139, 92, 246, 0.3) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0;
    padding: 0 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    animation: fadeInUp 1s ease-out 0.3s both;
    margin-left: 200px;
    padding-left: 0;
    margin-right: auto;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 500;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #3b82f6;
    border-radius: 2px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.hero .btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.hero .btn-white {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
    padding: 16px 32px;
}

.hero .btn-white::before {
    display: none;
}

.hero .btn-white::after {
    content: '→';
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.hero .btn-white:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5);
    background: #1e40af;
    animation: pulseGlow 2s ease-in-out infinite;
}

.hero .btn-white:hover::after {
    transform: translateX(6px) scale(1.1);
}

/* Enhanced Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-5px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(30, 58, 138, 0.5);
    }
}

/* Scroll Indicator */
.scroll-indicator-section {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    position: relative;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.8);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* About Section */
.about {
    background-color: white;
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 300px;
}

.about-block.top-left {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
}

.about-block.bottom-right {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
    align-self: end;
}

.about-block img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

.about-block h3 {
    font-size: 20px;
    margin-bottom: 0;
    color: #333;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 500;
    line-height: 1.3;
}

.about-block p {
    font-size: 14px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    padding: 0 20px;
}

.tagline {
    color: #3b82f6;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    display: block;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.about-right h2 {
    font-size: 36px;
    margin-bottom: 0;
    color: #333;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

.about-right p {
    font-size: 16px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}





/* Services Section - Mobile Optimized */
.services {
    background-color: #0a1128;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(59, 130, 246, 0.1) 100%);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-label {
    color: #3b82f6;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.services-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

.services-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    grid-template-areas: 
        "consulting people-image"
        "innovation growth"
        "journey solutions";
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:has(.service-image) {
    padding: 0;
    overflow: hidden;
}

.service-card:has(.service-image) .service-image {
    margin-top: 0;
}

.service-card:has(.service-image) .service-content {
    padding: 30px;
}

.service-card.image-only {
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.service-card.image-only img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card.image-only:hover img {
    transform: scale(1.05);
}

.service-image {
    margin-top: 0;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 0;
}

.category {
    color: #3b82f6;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    flex-grow: 1;
}

.service-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
}

.service-icon {
    font-size: 28px;
    margin-bottom: 20px;
    color: #3b82f6;
    text-align: center;
}

/* Grid layout for specific blocks */
.services-grid .service-card:nth-child(1) {
    grid-area: consulting;
}

.services-grid .service-card:nth-child(2) {
    grid-area: people-image;
}

.services-grid .service-card:nth-child(3) {
    grid-area: innovation;
}

.services-grid .service-card:nth-child(4) {
    grid-area: growth;
}

.services-grid .service-card:nth-child(5) {
    grid-area: journey;
}

.services-grid .service-card:nth-child(6) {
    grid-area: solutions;
}

/* Why Choose Section */
.why-choose {
    background-color: #fff;
    color: white;
    padding: 80px 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0a1128;
    font-family: 'Wix Madefor Display';
    font-weight: 500;
}

.why-choose-text p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #64748b;
    font-family: 'Montserrat';
}

.why-choose-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* CTA Section */
.cta {
    background-color: #fff;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0a1128;
    font-family: 'Wix Madefor Display';
    font-weight: 500;
}   

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #64748b;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.container span {
    margin-right: 10px;
}

.cta button {
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    padding: 10px 20px;
    border-radius: 100px;
    background: #2563eb;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    font-size: 15px;
    margin: 0 auto;
    color: #fff;
  }

  
  button > svg {
    width: 34px;
    transition: transform 0.3s ease-in-out;
    color: #fff;
  }
  
  button:active {
    transform: scale(0.95);
  }

/* Our Cases Section */
.our-cases {
    background-color: white;
    padding: 100px 0;
}

.cases-header {
    text-align: center;
    margin-bottom: 60px;
}

.cases-label {
    color: #3b82f6;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.cases-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0a1128;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

.cases-header p {
    font-size: 16px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    font-weight: 400;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.case-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.05);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 30px;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.1);
}


.case-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    padding: 10px;
}

.case-card h3 {
    font-size: 20px;
    margin-bottom: 0;
    color: #0a1128;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 500;
    line-height: 1.3;
}

.case-card p {
    font-size: 14px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.case-link {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.case-link:hover {
    color: #3b82f6;
}

.case-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.case-tag {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-tag.industry {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.case-tag.service {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.case-modal-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.case-modal-btn:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

/* Simple Two Column Section */
.simple-two-column {
    background-color: white;
    padding: 100px 0;
}

.two-column-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.column-left img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

.column-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.column-right .tagline {
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    display: block;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.column-right h2 {
    font-size: 42px;
    margin-bottom: 0;
    color: #333;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

.column-right p {
    font-size: 16px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}
  
/* Hamburger Menu Styles */
.hamburger-menu {
    display: none; /* Hidden by default on desktop */
    cursor: pointer;
    z-index: 1002;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: #0a1128;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-icon span:nth-child(1) {
    top: 0;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
}

.hamburger-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* Mobile Navigation Overlay - Updated */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none; /* Hidden by default on desktop */
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.mobile-nav-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
    background: rgba(255, 255, 255, 1) !important;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 100000;
}

.mobile-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #0a1128;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
    cursor: pointer;
    display: block;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-nav a:hover::before {
    width: 100%;
}

.mobile-nav a:hover {
    color: #3b82f6;
    transform: translateY(-2px);
}

.mobile-contact-btn {
    background: #3b82f6;
    color: white !important;
    padding: 12px 30px !important;
    border-radius: 9999px;
    font-size: 18px !important;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.mobile-contact-btn::before {
    display: none;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Footer - Modern Design */
.footer {
    background: linear-gradient(135deg, #0a1128 0%, #1e3a8a 100%);
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* Footer Brand Section */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo:hover svg {
    transform: scale(1.05);
}

.footer-logo-text {
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.social-link svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Footer Links Section */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1e3a8a);
    border-radius: 1px;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 15px;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3b82f6;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section a:hover {
    color: white;
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section li:not(:has(a)) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-legal a:hover {
    color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}


/* Enhanced Mobile Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .about-block.bottom-right {
        grid-column: 2;
        grid-row: 1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header Mobile Styles */
    .header {
        padding: 15px 0;
        transition: all 0.3s ease;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 0 20px;
    }
    
    .header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }
    
    .header.header-hidden {
        transform: translateY(-100%);
    }
    
    .logo {
        font-size: 22px;
        flex-shrink: 0;
        z-index: 1;
    }
    
    /* Hide desktop navigation on mobile */
    .nav {
        display: none !important;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: block !important;
    }
    
    /* Show mobile navigation overlay when active */
    .mobile-nav-overlay.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    /* Hero Mobile Styles */
    .hero {
        padding: 120px 0 80px;
        background-attachment: scroll;
        min-height: 100vh;
    }
    
    .hero .container {
        justify-content: flex-start;
        padding: 0 20px;
        margin: 0;
    }
    
    .hero-content {
        margin-left: 0;
        padding-left: 0;
        margin-right: auto;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero h1::after {
        width: 50px;
        height: 3px;
        bottom: -8px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .hero .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .scroll-indicator-section {
        visibility: hidden;
    }
    
    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 30px;
        padding: 0 20px;
    }
    
    .about-block.top-left {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
        max-width: 100%;
    }
    
    .about-block.bottom-right {
        grid-column: 1;
        grid-row: 3;
        justify-self: center;
        max-width: 100%;
    }
    
    .about-right {
        grid-column: 1;
        grid-row: 2;
        padding: 0;
        text-align: center;
    }
    
    .about-right h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .about-right p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Services Section Mobile */
    .services {
        padding: 60px 0;
    }
    
    .services-header {
        text-align: left;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .services-header h2 {
        font-size: 32px;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .services-header p {
        font-size: 16px;
        text-align: left;
        line-height: 1.6;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        grid-template-areas: 
            "consulting"
            "people-image"
            "innovation"
            "growth"
            "journey"
            "solutions";
    }
    
    .service-card {
        padding: 25px;
        text-align: left;
        border-radius: 8px;
    }
    
    .service-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .service-card p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .service-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }
    
    .service-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .service-card.image-only img {
        height: 300px;
    }
    
    .service-image img {
        height: 200px;
    }
    
    .service-icon {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: left;
    }
    
    /* Why Choose Section Mobile */
    .why-choose {
        padding: 60px 0;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .why-choose-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .why-choose-text p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .why-choose-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .why-choose-image img {
        border-radius: 12px;
    }
    
    /* CTA Section Mobile */
    .cta {
        padding: 60px 0;
        text-align: center;
    }
    
    .cta h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .cta p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta button {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    /* Cases Section Mobile */
    .our-cases {
        padding: 60px 0;
    }
    
    .cases-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .cases-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .cases-header p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .case-card {
        padding: 25px;
        text-align: center;
    }
    
    .case-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .case-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    /* Two Column Section Mobile */
    .simple-two-column {
        padding: 60px 0;
    }
    
    .two-column-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .column-right h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .column-right p {
        font-size: 16px;
        line-height: 1.6;
    }
    
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .hero .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .about-right h2,
    .services-header h2,
    .why-choose-text h2,
    .cta h2,
    .cases-header h2,
    .column-right h2 {
        font-size: 24px;
    }
    
    .service-card,
    .case-card {
        padding: 20px;
    }
    
    .services-header h2 {
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    .service-card.image-only img {
        height: 250px;
    }
    
    .service-image img {
        height: 180px;
    }
    
    .mobile-nav a {
        font-size: 20px;
    }
    
    .mobile-contact-btn {
        padding: 10px 25px !important;
        font-size: 16px !important;
    }

    /* Hide desktop language switcher on mobile */
    .language-switcher {
        display: none;
    }
    
    /* Show mobile language switcher on mobile */
    .mobile-language-switcher {
        display: block;
        visibility: hidden;
    }

}

/* Modern Animation Classes */
.animate-in {
    animation: none !important;
    will-change: transform, opacity;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth transitions for all interactive elements */
.service-card,
.case-card,
.about-block,
.about-right,
.why-choose-text,
.why-choose-image,
.btn,
.nav a,
.mobile-nav a,
.social-link,
.feature-item {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced hover effects */
.service-card:hover,
.case-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.nav a:hover,
.mobile-nav a:hover {
    transform: translateY(-1px);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Smooth header transitions */
.header {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Enhanced mobile nav transitions */

.mobile-nav a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth modal animations */
.service-modal {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-container {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading animation improvements */
body:not(.loaded)::before {
    animation: fadeOut 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
        transform: scale(1.1);
    }
}

/* Hero content initial state */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

/* Scroll indicator smooth animation */
.scroll-indicator {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
    border-radius: 9999px !important;
}

.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 cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Smooth image hover effects */
.service-card img,
.case-card img,
.about-block img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover img,
.case-card:hover img,
.about-block:hover img {
    transform: scale(1.08);
}

/* Enhanced service icon animations */
.service-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    color: #1e40af;
}

/* Smooth category label animations */
.category {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .category {
    color: #1e40af;
    transform: translateX(5px);
}

/* Enhanced footer animations */
.footer-section a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section a:hover {
    transform: translateX(5px);
    color: #3b82f6;
}

/* Smooth hamburger menu animation */
.hamburger-icon span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced contact button animation */
.contact-btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.4);
}

/* Smooth tagline animations */
.tagline {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-block:hover .tagline,
.service-card:hover .tagline {
    color: #1e40af;
    transform: translateY(-2px);
}

/* Loading Animation */
body:not(.loaded) {
    overflow: hidden;
}

body:not(.loaded)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    animation: fadeOut 0.5s ease-out 0.5s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav a:hover::before,
    .mobile-nav a:hover::before {
        width: 0;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .service-card:hover,
    .case-card:hover {
        transform: none;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav a,
    .mobile-nav a,
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve form elements */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Better spacing for mobile */
    .service-card,
    .case-card,
    .about-block {
        margin-bottom: 20px;
    }
    
    /* Services Mobile Touch Optimizations */
    .service-card {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .service-card .btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        min-height: 44px;
    }
    
    .service-card.image-only {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Optimize grid layouts */
    .services-grid,
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Improve button spacing */
    .hero-buttons,
    .service-buttons,
    .why-choose-buttons {
        gap: 15px;
    }
    
    /* Better text readability */
    .hero p,
    .about-right p,
    .service-card p,
    .case-card p {
        line-height: 1.6;
        font-size: 16px;
    }
    
    /* Optimize headings */
    .hero h1,
    .about-right h2,
    .services-header h2,
    .why-choose-text h2,
    .cta h2,
    .cases-header h2 {
        line-height: 1.2;
        margin-bottom: 15px;
    }
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hamburger-icon span {
        border-radius: 1px;
    }
    
    .btn {
        border-width: 1px;
    }
} 

/* Service Modal Styles - Modern & Minimalistic */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    background: white;
    border-radius: 24px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    transform: scale(0.95) translateY(30px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 32px 0 32px;
    margin-bottom: 24px;
}

.modal-header-content {
    flex: 1;
}

.modal-close {
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 16px;
    flex-shrink: 0;
}

.modal-close:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: scale(1.05);
}

.modal-close:active {
    transform: scale(0.95);
}

.modal-content {
    padding: 0 32px 32px 32px;
    max-height: calc(85vh - 120px);
    overflow-y: auto;
}

.modal-category {
    color: #3b82f6;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
    display: block;
}

.modal-title {
    font-size: 28px;
    color: #0a1128;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.02em;
}

.modal-description {
    margin-bottom: 32px;
}

.modal-description p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    font-weight: 400;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #3b82f6;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    background: #f1f5f9;
    border-color: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgba(59, 130, 246, 0.12);
    transform: scale(1.05);
}

.feature-content h4 {
    font-size: 16px;
    color: #0a1128;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.feature-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    font-weight: 400;
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 24px;
    border-top: 1px solid rgba(59, 130, 246, 0.08);
}

.modal-footer .btn {
    min-width: 140px;
    justify-content: center;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #000;
}

.modal-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 90vh;
        margin: 20px;
        border-radius: 20px;
    }
    
    .modal-header {
        padding: 24px 24px 0 24px;
        margin-bottom: 20px;
    }
    
    .modal-content {
        padding: 0 24px 24px 24px;
    }
    
    .modal-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .modal-description p {
        font-size: 15px;
    }
    
    .feature-item {
        padding: 16px;
        gap: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-content h4 {
        font-size: 15px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
    
    .modal-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .modal-footer .btn {
        width: 100%;
        min-width: auto;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
        border: none;
    }
    
    .modal-header {
        padding: 20px 20px 0 20px;
    }
    
    .modal-content {
        padding: 0 20px 20px 20px;
    }
    
    .modal-close {
        width: 36px;
        height: 36px;
    }
    
    .feature-item {
        padding: 14px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }
}

/* Case Modal Styles */
.case-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-modal.active {
    opacity: 1;
    visibility: visible;
}

.case-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.case-modal .modal-container {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: white;
    border-radius: 24px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    transform: scale(0.95) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.case-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.case-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 32px 0 32px;
    margin-bottom: 24px;
}

.case-modal .modal-header-content {
    flex: 1;
}

.case-modal .modal-close {
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 16px;
    flex-shrink: 0;
}

.case-modal .modal-close:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: scale(1.05);
}

.case-modal .modal-close:active {
    transform: scale(0.95);
}

.case-modal .modal-content {
    padding: 0 32px 32px 32px;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

.case-modal .modal-category {
    color: #3b82f6;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
    display: block;
}

.case-modal .modal-title {
    font-size: 28px;
    color: #0a1128;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.02em;
}

.case-modal-image {
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
}

.case-modal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-modal-image:hover img {
    transform: scale(1.05);
}

.case-modal .modal-description {
    margin-bottom: 32px;
}

.case-modal .modal-description p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    font-weight: 400;
}

.case-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.case-detail-item {
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #3b82f6;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.case-detail-item:hover {
    background: #f1f5f9;
    border-color: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
}

.case-detail-item:hover::before {
    transform: scaleY(1);
}

.case-detail-item h4 {
    font-size: 16px;
    color: #0a1128;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.case-detail-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    font-weight: 400;
}

.case-modal .modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 24px;
    border-top: 1px solid rgba(59, 130, 246, 0.08);
}

.case-modal .modal-footer .btn {
    min-width: 140px;
    justify-content: center;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.case-modal .modal-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Mobile Case Modal Styles */
@media (max-width: 768px) {
    .case-modal .modal-container {
        width: 95%;
        max-height: 95vh;
        margin: 20px;
        border-radius: 20px;
    }
    
    .case-modal .modal-header {
        padding: 24px 24px 0 24px;
        margin-bottom: 20px;
    }
    
    .case-modal .modal-content {
        padding: 0 24px 24px 24px;
    }
    
    .case-modal .modal-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .case-modal .modal-description p {
        font-size: 15px;
    }
    
    .case-details {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .case-detail-item {
        padding: 20px;
    }
    
    .case-detail-item h4 {
        font-size: 15px;
    }
    
    .case-detail-item p {
        font-size: 13px;
    }
    
    .case-modal .modal-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .case-modal .modal-footer .btn {
        width: 100%;
        min-width: auto;
    }
    
    .case-modal .modal-close {
        width: 40px;
        height: 40px;
    }
    
    .case-modal-image img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .case-modal .modal-container {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
        border: none;
    }
    
    .case-modal .modal-header {
        padding: 20px 20px 0 20px;
    }
    
    .case-modal .modal-content {
        padding: 0 20px 20px 20px;
    }
    
    .case-modal .modal-close {
        width: 36px;
        height: 36px;
    }
    
    .case-detail-item {
        padding: 16px;
    }
    
    .case-modal-image img {
        height: 180px;
    }
} 

/* Contact Page Styles */
/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.9) 0%, rgba(59, 130, 246, 0.4) 100%);
    background-image: url('pexels-hcdigital-3619870.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 160px 0 120px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.8) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(139, 92, 246, 0.3) 100%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.contact-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 500;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
    font-size: 18px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Contact Information */
.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-info-header {
    margin-bottom: 40px;
}

.contact-info-header h2 {
    font-size: 32px;
    color: #0a1128;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-info-header p {
    font-size: 16px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.08);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #f1f5f9;
    border-color: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-method-icon {
    background: rgba(59, 130, 246, 0.15);
    transform: scale(1.05);
}

.contact-method-content h3 {
    font-size: 18px;
    color: #0a1128;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.contact-method-content p {
    font-size: 16px;
    color: #3b82f6;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.contact-method-content span {
    font-size: 14px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
}

.social-links {
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding-top: 30px;
}

.social-links h3 {
    font-size: 18px;
    color: #0a1128;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.social-icon:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    color: #0a1128;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    background: white;
    color: #0a1128;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

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

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #3b82f6;
    color: white;
    border: none;
    cursor: pointer;
}

.submit-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
}

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

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

/* FAQ Section */
.faq-section {
    background: white;
    padding: 100px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-header h2 {
    font-size: 36px;
    color: #0a1128;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    margin: 15px 0;
    line-height: 1.3;
}

.faq-header p {
    font-size: 18px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
}

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

.faq-item {
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #f1f5f9;
    border-color: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
}

.faq-question {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    color: #0a1128;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    color: #3b82f6;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px 24px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

.faq-answer p {
    font-size: 16px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 60px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 80px;
        background-attachment: scroll;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-hero p {
        font-size: 16px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-info-header h2 {
        font-size: 28px;
    }
    
    .contact-methods {
        gap: 20px;
    }
    
    .contact-method {
        padding: 16px;
        gap: 16px;
    }
    
    .contact-method-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-header p {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 20px;
    }
    
    .contact-info-header h2 {
        font-size: 24px;
    }
    
    .contact-method {
        padding: 12px;
        gap: 12px;
    }
    
    .contact-method-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-method-content h3 {
        font-size: 16px;
    }
    
    .contact-method-content p {
        font-size: 14px;
    }
    
    .faq-header h2 {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 16px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 16px 16px 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Cases Page Styles */

/* Cases Page Specific Styles */
body:has(.cases-hero) {
    overflow: auto !important;
    height: auto !important;
}

html:has(.cases-hero) {
    overflow: auto !important;
    height: auto !important;
}

/* Cases Hero Section */
.cases-hero {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.9) 0%, rgba(59, 130, 246, 0.4) 100%);
    background-image: url('pexels-hcdigital-3619870.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 160px 0 120px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cases-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.8) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(139, 92, 246, 0.3) 100%);
    z-index: 1;
}

.cases-hero .container {
    position: relative;
    z-index: 2;
}

.cases-hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cases-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 500;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cases-hero p {
    font-size: 18px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Cases Filter Section */
.cases-filter-section {
    background: #f8fafc;
    padding: 60px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.cases-filter {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-header {
    text-align: center;
    margin-bottom: 40px;
}

.filter-header h2 {
    font-size: 32px;
    color: #0a1128;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.filter-header p {
    font-size: 16px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.6;
}

.filter-controls {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.filter-group label {
    font-size: 16px;
    font-weight: 600;
    color: #0a1128;
    font-family: 'Montserrat', sans-serif;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.filter-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Cases Grid Section */
.cases-grid-section {
    background: white;
    padding: 80px 0;
}

.cases-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.case-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.case-card.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.case-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 17, 40, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.case-btn {
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.case-card:hover .case-btn {
    transform: translateY(0);
}

.case-content {
    padding: 30px;
}

.case-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.case-tag {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-tag.industry {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.case-tag.service {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.case-content h3 {
    font-size: 22px;
    color: #0a1128;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.case-content p {
    font-size: 16px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.case-metrics {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6;
    font-family: 'Wix Madefor Display', sans-serif;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 12px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.load-more-btn:hover svg {
    transform: translateX(4px);
}

/* Statistics Section */
.cases-stats-section {
    background: linear-gradient(135deg, #0a1128 0%, #1e3a8a 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cases-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-dots)"/></svg>');
    opacity: 0.5;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.stats-header h2 {
    font-size: 36px;
    color: white;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.stats-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(59, 130, 246, 0.3);
    transform: scale(1.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: white;
    font-family: 'Wix Madefor Display', sans-serif;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cases-cta-section {
    background: #f8fafc;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    color: #0a1128;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.cta-content p {
    font-size: 18px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .filter-controls {
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cases-hero {
        padding: 120px 0 80px;
    }
    
    .cases-hero h1 {
        font-size: 36px;
    }
    
    .cases-hero p {
        font-size: 16px;
    }
    
    .cases-filter-section {
        padding: 40px 0;
    }
    
    .filter-header h2 {
        font-size: 28px;
    }
    
    .filter-controls {
        gap: 15px;
    }
    
    .filter-group {
        gap: 10px;
    }
    
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .cases-grid-section {
        padding: 60px 0;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .case-image {
        height: 200px;
    }
    
    .case-content {
        padding: 25px;
    }
    
    .case-content h3 {
        font-size: 20px;
    }
    
    .case-metrics {
        gap: 20px;
    }
    
    .metric-value {
        font-size: 20px;
    }
    
    .cases-stats-section {
        padding: 60px 0;
    }
    
    .stats-header h2 {
        font-size: 28px;
    }
    
    .stats-header p {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .cases-cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .cases-hero h1 {
        font-size: 28px;
    }
    
    .filter-header h2 {
        font-size: 24px;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .case-content {
        padding: 20px;
    }
    
    .case-content h3 {
        font-size: 18px;
    }
    
    .case-content p {
        font-size: 14px;
    }
    
    .case-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-header h2 {
        font-size: 24px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}