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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #0a1128;
    background-color: #ffffff;
    scroll-behavior: smooth;
}

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

/* 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,
.nav a.active {
    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,
.nav a.active::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;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.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;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.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-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: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100000;
    pointer-events: none;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    overflow: hidden;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: flex;
}

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

.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;
}

.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: 8px;
    font-size: 16px !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;
}



/* Main Content Section - Senior UI/UX Design */
.main-content {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.main-content::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Content Text Section */
.content-text {
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.content-header {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.content-badge {
    display: inline-block;
    background: #2563eb;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    opacity: 0;
    transform: scale(0.8);
    animation: badgePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

.content-header h2 {
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 42px;
    font-weight: 500;
    color: #0a1128;
    line-height: 1.2;
    margin-bottom: 0;
    background: linear-gradient(135deg, #0a1128 0%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

/* Content Cards */
.content-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.content-card:nth-child(1) {
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.0s forwards;
}

.content-card:nth-child(2) {
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

.content-card:nth-child(3) {
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.4s forwards;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e3a8a);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.08);
}

.content-card:hover::before {
    transform: scaleX(1);
}

.mission-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: rgba(16, 185, 129, 0.1);
}

.mission-card::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.8);
    animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.6s forwards;
}

.mission-card .card-icon {
    background: rgba(16, 185, 129, 0.1);
    animation-delay: 1.8s;
}

.content-card:hover .card-icon {
    transform: scale(1.03);
    background: rgba(59, 130, 246, 0.12);
}

.mission-card:hover .card-icon {
    background: rgba(16, 185, 129, 0.12);
}

.card-content h3 {
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #0a1128;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Values Showcase */
.values-showcase {
    margin-top: 20px;
}

.values-showcase h3 {
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #0a1128;
    margin-bottom: 25px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.6s forwards;
}

.values-grid {
    display: grid;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.05);
    opacity: 0;
    transform: translateX(-20px);
}

.value-item:nth-child(1) {
    animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.8s forwards;
}

.value-item:nth-child(2) {
    animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2.0s forwards;
}

.value-item:nth-child(3) {
    animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2.2s forwards;
}

.value-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.08);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item:nth-child(2) .value-icon {
    background: rgba(16, 185, 129, 0.1);
}

.value-item:nth-child(3) .value-icon {
    background: rgba(245, 158, 11, 0.1);
}

.value-item:hover .value-icon {
    transform: scale(1.05);
}

.value-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.value-content strong {
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0a1128;
}

.value-content span {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Content Visual Section */
.content-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.9);
    animation: imageReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

.hero-image:hover {
    transform: scale(1.01);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.16);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover img {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, transparent 50%, rgba(16, 185, 129, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover .image-overlay {
    opacity: 1;
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    top: 30px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.stat-card {
    background: white;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 10s ease-in-out infinite;
    opacity: 0;
    transform: scale(0.8);
}

.stat-card:nth-child(1) {
    animation: statCardPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards, float 10s ease-in-out 2s infinite;
}

.stat-card:nth-child(2) {
    animation: statCardPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s forwards, float 10s ease-in-out 2s infinite;
    animation-delay: -5s;
}

.stat-card:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.12);
}

.stat-number {
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a1128;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tech Particles */
.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #3b82f6;
    border-radius: 50%;
    animation: particle-float 15s ease-in-out infinite;
    opacity: 0;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: particleReveal 0.8s ease-out 2.0s forwards, particle-float 15s ease-in-out 2.8s infinite;
}

.particle:nth-child(2) {
    top: 60%;
    right: 15%;
    background: #10b981;
    animation: particleReveal 0.8s ease-out 2.2s forwards, particle-float 15s ease-in-out 3.0s infinite;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    background: #f59e0b;
    animation: particleReveal 0.8s ease-out 2.4s forwards, particle-float 15s ease-in-out 3.2s infinite;
}

.particle:nth-child(4) {
    top: 40%;
    right: 25%;
    background: #8b5cf6;
    animation: particleReveal 0.8s ease-out 2.6s forwards, particle-float 15s ease-in-out 3.4s infinite;
}

/* Entrance Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

@keyframes imageReveal {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes particleReveal {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 0.4;
        transform: scale(1);
    }
}

/* Ultra Smooth Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-4px);
    }
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-8px) scale(1.05);
        opacity: 0.6;
    }
}

/* Work Approach Section - Matching index.html services section */
.work-approach {
    padding: 100px 0;
    background: white;
}

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

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

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

.approach-header p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.approach-card {
    background: #f8fafc;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.approach-card:hover::before {
    transform: scaleY(1);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
    background: rgba(59, 130, 246, 0.15);
    transform: scale(1.1);
}

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

.approach-card h3 {
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0a1128;
    margin-bottom: 15px;
}

.approach-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.approach-buttons {
    display: flex;
    gap: 10px;
}



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

.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: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-block:hover img {
    transform: scale(1.02);
}

.about-block h3 {
    font-size: 20px;
    margin-bottom: 0;
    color: #0a1128;
    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: #0a1128;
    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;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .about-block.bottom-right {
        grid-column: 2;
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    /* Header Mobile Styles */
    .header {
        padding: 15px 0;
        transition: all 0.3s ease;
    }
    
    .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 {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 0 20px;
        height: 70px;
    }
    
    .logo {
        font-size: 22px;
        flex-shrink: 0;
        z-index: 1;
    }
    
    .nav {
        display: none;
    }
    
    .hamburger-menu {
        display: block !important;
        position: relative;
        z-index: 1002;
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
    }
    
    /* About Section Mobile Styles */
    .about-section {
        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;
    }
    
    .about-block h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .about-block p {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .about-right h2 {
        font-size: 24px;
    }
}

/* Button Styles - Matching index.html */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-outline-white:hover {
    background: white;
    color: #0a1128;
    transform: translateY(-2px);
}

.btn-link {
    background: transparent;
    color: #3b82f6;
    padding: 8px 0;
    font-weight: 600;
}

.btn-link:hover {
    color: #2563eb;
    transform: translateX(5px);
}

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

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

/* 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) {
    /* Header Mobile Styles */
    .header {
        padding: 15px 0;
        transition: all 0.3s ease;
    }
    
    .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%);
    }
    
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 0 20px;
    }
    
    .logo {
        font-size: 22px;
        flex-shrink: 0;
        z-index: 1;
    }
    
    .nav {
        display: none;
    }
    
    .hamburger-menu {
        display: block !important;
        position: relative;
        z-index: 1002;
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile Navigation Styles */
    .mobile-nav-overlay {
        padding: 20px;
    }
    
    .mobile-nav {
        gap: 20px;
    }
    
    .mobile-nav a {
        font-size: 18px;
    }
    
    /* Main Content Mobile Styles */
    .main-content {
        padding: 80px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .content-text {
        max-width: 100%;
        order: 2;
    }
    
    .content-visual {
        order: 1;
        margin-bottom: 30px;
    }
    
    .visual-container {
        max-width: 100%;
    }
    
    .hero-image {
        height: 300px;
        border-radius: 16px;
        display: none;
    }
    
    /* Hide floating stats on mobile */
    .floating-stats {
        display: none;
    }
    
    /* Hide tech particles on mobile */
    .tech-particles {
        display: none;
    }
    
    /* Hide hero image on mobile */
    .hero-image {
        display: none;
    }
    
    .content-header h2 {
        font-size: 32px;
        text-align: center;
    }
    
    .content-badge {
        text-align: center;
        margin: 0 auto 20px;
        display: block;
        width: 200px;
    }
    
    .content-cards {
        gap: 20px;
    }
    
    .content-card {
        padding: 25px;
        border-radius: 16px;
    }
    
    .card-content h3 {
        font-size: 20px;
    }
    
    .card-content p {
        font-size: 15px;
    }
    
    .values-showcase h3 {
        font-size: 24px;
    }
    
    .value-item {
        padding: 15px;
        gap: 12px;
    }
    
    .value-content strong {
        font-size: 14px;
    }
    
    .value-content span {
        font-size: 13px;
    }
    
    /* Work Approach Mobile Styles */
    .work-approach {
        padding: 60px 0;
    }
    
    .approach-header h2 {
        font-size: 28px;
    }
    
    .approach-header p {
        font-size: 16px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .approach-card {
        padding: 25px;
    }
    
    .approach-card h3 {
        font-size: 18px;
    }
    
    .approach-card p {
        font-size: 15px;
    }
    
    /* Footer Mobile Styles */
    .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) {
    /* Main Content Small Mobile Styles */
    .main-content {
        padding: 60px 0;
    }
    
    .content-header h2 {
        font-size: 28px;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .card-content h3 {
        font-size: 18px;
    }
    
    .card-content p {
        font-size: 14px;
    }
    
    .values-showcase h3 {
        font-size: 22px;
    }
    
    .value-item {
        padding: 12px;
        gap: 10px;
    }
    
    .value-content strong {
        font-size: 13px;
    }
    
    .value-content span {
        font-size: 12px;
    }
    
    .hero-image {
        height: 250px;
        display: none;
    }
    
    /* Work Approach Small Mobile Styles */
    .work-approach {
        padding: 50px 0;
    }
    
    .approach-header h2 {
        font-size: 24px;
    }
    
    .approach-header p {
        font-size: 15px;
    }
    
    .approach-card {
        padding: 20px;
    }
    
    .approach-card h3 {
        font-size: 16px;
    }
    
    .approach-card p {
        font-size: 14px;
    }
    
    /* Footer Small Mobile Styles */
    .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;
    }
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .mobile-nav-overlay {
        padding: 20px;
    }
    
    .mobile-nav {
        gap: 20px;
    }
    
    .mobile-nav a {
        font-size: 18px;
    }
}



