body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* Navbar.css - iOS 17/18 Inspired */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 24px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 11, 16, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

/* iOS Brand */
.nav-brand a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.nav-brand span {
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-brand a:hover {
    transform: scale(1.05);
}

/* iOS Desktop Navigation */
.nav-links {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 40px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

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

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-links a.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(11, 105, 255, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-links a:hover .nav-icon {
    transform: scale(1.2);
}

.nav-underline {
    display: none;
}

/* iOS Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    font-size: 1.2rem;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

/* iOS Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    padding: 80px 20px 20px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    padding: 0 0 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.mobile-menu-header h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(135deg, #fff, #a8b2d1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.open .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 14px 16px;
    border-radius: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.mobile-nav-links a.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(11, 105, 255, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(11, 105, 255, 0.3);
}

.mobile-nav-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.mobile-menu-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mobile-menu-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
}

/* iOS Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* iOS Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar {
        padding: 12px 16px;
    }
    
    .navbar.scrolled {
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
}
/* Hero.css - iOS 17/18 Inspired with Visible Workspace Background */

/* ===== Base Styles ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Creative Code Elements - Floating in background (të lehta) */
.hero::before {
    content: '</>';
    position: absolute;
    font-size: 20rem;
    font-weight: 800;
    font-family: 'SF Mono', 'Menlo', monospace;
    color: rgba(11, 105, 255, 0.05); /* Më transparent */
    bottom: -50px;
    right: -50px;
    transform: rotate(15deg);
    pointer-events: none;
    animation: codeFloat 20s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '{...}';
    position: absolute;
    font-size: 15rem;
    font-family: 'SF Mono', 'Menlo', monospace;
    color: rgba(139, 92, 246, 0.05); /* Më transparent */
    top: -30px;
    left: -30px;
    transform: rotate(-10deg);
    pointer-events: none;
    animation: codeFloatReverse 25s ease-in-out infinite;
    z-index: 1;
}

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

@keyframes codeFloatReverse {
    0%, 100% { transform: rotate(-10deg) translate(0, 0); }
    50% { transform: rotate(-15deg) translate(20px, 20px); }
}

/* ===== Lighter Gradient Overlay for Better Background Visibility ===== */
.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, 
            rgba(10, 11, 16, 0.7) 0%,    /* Reduced from 0.9 to 0.7 */
            rgba(26, 27, 46, 0.6) 40%,   /* Reduced from 0.8 to 0.6 */
            rgba(42, 27, 60, 0.65) 80%,  /* Reduced from 0.85 to 0.65 */
            rgba(10, 11, 16, 0.75) 100%  /* Reduced from 0.95 to 0.75 */
        ),
        radial-gradient(circle at 30% 40%, rgba(11, 105, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    z-index: 2;
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px); /* Reduced blur */
}

/* Window Light Effect - Më i fortë për të balancuar */
.hero-window-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 75% 25%,
        rgba(255, 248, 235, 0.35) 0%,  /* Increased from 0.25 to 0.35 */
        transparent 45%                /* Adjusted spread */
    );
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: soft-light; /* Changed from overlay to soft-light for more natural look */
    animation: windowLightBreath 8s ease-in-out infinite;
}

@keyframes windowLightBreath {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

/* ===== Particle Overlay - Më i lehtë ===== */
.hero-particle-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 40% 50%, rgba(11, 105, 255, 0.1) 2px, transparent 2px);
    background-size: 70px 70px, 90px 90px, 110px 110px;
    animation: particleFloat 25s linear infinite;
    z-index: 3;
    opacity: 0.3; /* Reduced from 0.4 to 0.3 */
    pointer-events: none;
}

@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}

/* ===== Floating Elements - Më transparentë ===== */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.08); /* Reduced from 0.1 to 0.08 */
    backdrop-filter: blur(8px); /* Reduced blur */
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    z-index: 15;
    animation: floatElement 8s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.floating-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.floating-text {
    letter-spacing: 0.4px;
}

/* ===== Main Content ===== */
.hero-content {
    position: relative;
    z-index: 20;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 0;
    text-align: center;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4); /* Lighter shadow */
}

/* ===== Badge ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3); /* Darker base for contrast */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 10px 24px 10px 20px;
    margin-bottom: 32px;
    animation: badgeAppear 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: badgeShine 4s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { transform: translateX(-100%); }
    20%, 100% { transform: translateX(100%); }
}

.hero-badge span {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.hero-badge span:first-child {
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

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

/* ===== Title ===== */
.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Slightly lighter */
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-line.highlight .animated-text {
    background: linear-gradient(135deg, 
        #0b69ff 0%, 
        #8b5cf6 30%, 
        #ff6b6b 60%, 
        #0b69ff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 300%;
    animation: gradientFlow 8s ease-in-out infinite;
    display: inline-block;
    text-shadow: none;
}

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

/* ===== Subtitle ===== */
.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    line-height: 1.6;
    opacity: 0;
    animation: subtitleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@keyframes subtitleReveal {
    to { opacity: 1; }
}

.typing-text {
    color: #8b5cf6;
    font-weight: 600;
    position: relative;
    display: inline-block;
    background: rgba(139, 92, 246, 0.2); /* Slightly more opaque for visibility */
    padding: 4px 12px;
    border-radius: 30px;
    margin-left: 4px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 4px;
    color: #8b5cf6;
    font-weight: 700;
}

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

/* ===== Stats ===== */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 48px;
    opacity: 0;
    animation: statsReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes statsReveal {
    to { opacity: 1; }
}

.stat {
    background: rgba(0, 0, 0, 0.35); /* Slightly lighter */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 24px 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(11, 105, 255, 0.25), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat:hover::before {
    opacity: 1;
}

.stat:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(11, 105, 255, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, #a8b2d1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat:hover .stat-number {
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: scale(1.05);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.stat:hover .stat-label {
    color: #fff;
}

/* ===== CTA Buttons ===== */
.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 48px;
    opacity: 0;
    animation: ctasReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

@keyframes ctasReveal {
    to { opacity: 1; }
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    color: #fff;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 35px rgba(11, 105, 255, 0.35);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.3); /* Lighter */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    background: transparent;
    transform: translateY(-5px) scale(1.02);
    border-color: transparent;
}

.btn-icon, .btn-play {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(8px);
}

.btn-secondary:hover .btn-play {
    transform: scale(1.2) rotate(360deg);
}

/* ===== Background Pattern - Më i lehtë ===== */
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, rgba(11, 105, 255, 0.02) 0px, rgba(11, 105, 255, 0.02) 2px, transparent 2px, transparent 8px),
        repeating-linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0px, rgba(139, 92, 246, 0.02) 2px, transparent 2px, transparent 8px);
    z-index: 5;
    pointer-events: none;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 100px 100px, -50px -50px; }
}

/* ===== Scroll Indicator ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 20;
    opacity: 0;
    animation: scrollIndicatorAppear 2s ease 2s forwards;
}

@keyframes scrollIndicatorAppear {
    to { opacity: 1; }
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #0b69ff, #8b5cf6, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
    
    .hero::before {
        font-size: 15rem;
    }
    
    .hero::after {
        font-size: 12rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }
    
    .hero-subtitle {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .floating-element {
        display: none;
    }
    
    .hero::before, .hero::after {
        font-size: 10rem;
        opacity: 0.15;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-window-light {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        padding: 8px 20px 8px 16px;
    }
    
    .hero-badge span {
        font-size: 0.9rem;
    }
    
    .hero-badge span:first-child {
        display: none;
    }
    
    .hero::before, .hero::after {
        display: none;
    }
}

/* ===== iOS Safe Area Support ===== */
@supports (padding: max(0px)) {
    .hero {
        padding-left: max(24px, env(safe-area-inset-left));
        padding-right: max(24px, env(safe-area-inset-right));
        padding-top: max(24px, env(safe-area-inset-top));
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    .hero *,
    .hero::before,
    .hero::after,
    .hero-window-light {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ===== Container ===== */
.Services_container__oyVjK {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 2;
}

/* ===== Hero Section ===== */
.Services_heroSection__Xmph6 {
    position: relative;
    padding: 60px 0 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.Services_heroContent__5d9eW {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.Services_heroTitle__DUrGq {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.Services_titleWord__BoHaw {
    position: relative;
    display: inline-block;
}

.Services_titleWord__BoHaw:nth-child(1) {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: Services_titleFloat__lnqaR 3s ease-in-out infinite;
}

.Services_titleWord__BoHaw:nth-child(2) {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: Services_titleFloat__lnqaR 3s ease-in-out infinite 1s;
}

@keyframes Services_titleFloat__lnqaR {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.Services_heroSubtitle__Q3NWR {
    font-size: 1.3rem;
    color: #a0aec0;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
}

.Services_heroSubtitle__Q3NWR::before,
.Services_heroSubtitle__Q3NWR::after {
    content: '"';
    position: absolute;
    font-size: 4rem;
    font-family: serif;
    opacity: 0.1;
    color: #667eea;
}

.Services_heroSubtitle__Q3NWR::before {
    left: -10px;
    top: -20px;
}

.Services_heroSubtitle__Q3NWR::after {
    right: -10px;
    bottom: -40px;
    transform: rotate(180deg);
}

/* ===== Stats ===== */
.Services_statsGrid__dgcBu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.Services_statCard__Ysak0 {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.Services_statCard__Ysak0::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 0%,
        var(--stat-color),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.Services_statCard__Ysak0:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
}

.Services_statCard__Ysak0:hover::before {
    opacity: 0.15;
}

.Services_statValue__Fpp7y {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #a0aec0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    position: relative;
}

.Services_statLabel__djKOJ {
    font-size: 1.1rem;
    color: #cbd5e0;
    font-weight: 500;
}

/* ===== Section Header ===== */
.Services_sectionHeader__deiZ3 {
    text-align: center;
    margin-bottom: 60px;
}

.Services_sectionTitle__EMl0U {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.Services_titleAccent__Nv6dW {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.Services_titleAccent__Nv6dW::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
    transform: scaleX(0);
    animation: Services_titleUnderline__pSPKf 1s ease forwards;
}

@keyframes Services_titleUnderline__pSPKf {
    to { transform: scaleX(1); }
}

.Services_sectionDivider__JQniv {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    margin: 0 auto;
    border-radius: 2px;
    animation: Services_dividerPulse__Fi1pl 3s ease-in-out infinite;
}

@keyframes Services_dividerPulse__Fi1pl {
    0%, 100% { width: 100px; opacity: 0.5; }
    50% { width: 150px; opacity: 1; }
}

/* ===== Core Services Grid ===== */
.Services_coreServicesGrid__EN3Nu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    gap: 30px;
    margin-bottom: 80px;
}

.Services_coreServiceCard__sXdVY {
    position: relative;
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    cursor: pointer;
}

.Services_coreServiceCard__sXdVY:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
}

.Services_cardGlow__T5voa {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.Services_coreServiceCard__sXdVY:hover .Services_cardGlow__T5voa {
    transform: scaleX(1);
}

.Services_coreCardHeader__814XA {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.Services_coreIconWrapper__xJm1o {
    font-size: 3rem;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(102, 126, 234, 0.3));
}

.Services_coreServiceCard__sXdVY:hover .Services_coreIconWrapper__xJm1o {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 20px 30px var(--accent-color));
}

.Services_coreCardHeader__814XA h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.Services_coreDescription__zSsMi {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Tech Section */
.Services_techSection__oxFos {
    margin-bottom: 30px;
}

.Services_techSection__oxFos h4,
.Services_deliverablesSection__lz-2J h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.Services_techSection__oxFos h4::after,
.Services_deliverablesSection__lz-2J h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.Services_coreServiceCard__sXdVY:hover .Services_techSection__oxFos h4::after,
.Services_coreServiceCard__sXdVY:hover .Services_deliverablesSection__lz-2J h4::after {
    width: 100%;
}

.Services_techGrid__lPkIC {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.Services_techTag__2cZqM {
    background: rgba(255, 255, 255, 0.03);
    color: #cbd5e0;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.Services_techTag__2cZqM:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Deliverables Section */
.Services_deliverablesList__62aL3 {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.Services_deliverablesList__62aL3 li {
    color: #cbd5e0;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.Services_checkMark__Y1Kyy {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.Services_deliverablesList__62aL3 li:hover {
    transform: translateX(5px);
    color: #fff;
}

.Services_deliverablesList__62aL3 li:hover .Services_checkMark__Y1Kyy {
    transform: scale(1.2);
}

/* Learn More Button */
.Services_learnMoreBtn__5x14I {
    background: transparent;
    border: none;
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
}

.Services_learnMoreBtn__5x14I::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.Services_learnMoreBtn__5x14I:hover::after {
    width: 100%;
}

.Services_arrow__aL5ES {
    transition: transform 0.3s ease;
}

.Services_learnMoreBtn__5x14I:hover .Services_arrow__aL5ES {
    transform: translateX(8px);
}

/* ===== Specialized Services ===== */
.Services_specializedSection__Z\+O9k {
    margin-bottom: 80px;
}

.Services_specializedGrid__zShd7 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    gap: 25px;
}

.Services_specializedCard__oZX7\+ {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.Services_specializedCard__oZX7\+::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 0%,
        var(--accent-color),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.Services_specializedCard__oZX7\+:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-color);
}

.Services_specializedCard__oZX7\+:hover::before {
    opacity: 0.1;
}

.Services_specializedIcon__or8p9 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.Services_specializedCard__oZX7\+:hover .Services_specializedIcon__or8p9 {
    transform: scale(1.1) rotate(360deg);
}

.Services_specializedCard__oZX7\+ h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.Services_specializedCard__oZX7\+ p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.Services_specializedTags__jfODv {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.Services_specializedTag__fsgL3 {
    background: rgba(255, 255, 255, 0.03);
    color: #a0aec0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.Services_specializedTag__fsgL3:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== CTA Section ===== */
.Services_ctaSection__FyX8U {
    margin-top: 40px;
    margin-bottom: 40px;
}

.Services_ctaCard__D95kU {
    position: relative;
    padding: 80px 60px;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.1),
        rgba(118, 75, 162, 0.1),
        rgba(240, 147, 251, 0.1)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 70px;
    text-align: center;
    overflow: hidden;
}

.Services_ctaCard__D95kU h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.Services_ctaCard__D95kU p {
    font-size: 1.3rem;
    color: #cbd5e0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.Services_ctaButtons__ddnA3 {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.Services_ctaPrimary__4IuAL {
    padding: 18px 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.Services_ctaPrimary__4IuAL:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

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

.Services_ctaSecondary__zwex\+ {
    padding: 18px 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.Services_ctaSecondary__zwex\+::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.Services_ctaSecondary__zwex\+:hover {
    border-color: transparent;
    transform: translateY(-5px);
}

.Services_ctaSecondary__zwex\+:hover::before {
    opacity: 1;
}

/* CTA Particles */
.Services_ctaParticle__Eezbh {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.Services_ctaParticle__Eezbh:nth-child(4) {
    top: 20%;
    left: 10%;
    animation: Services_particleFloat__2qVdu 3s ease-in-out infinite;
}

.Services_ctaParticle__Eezbh:nth-child(5) {
    bottom: 20%;
    right: 10%;
    width: 15px;
    height: 15px;
    background: rgba(240, 147, 251, 0.3);
    animation: Services_particleFloat__2qVdu 4s ease-in-out infinite reverse;
}

.Services_ctaParticle__Eezbh:nth-child(6) {
    top: 30%;
    right: 20%;
    width: 8px;
    height: 8px;
    background: rgba(118, 75, 162, 0.3);
    animation: Services_particleFloat__2qVdu 5s ease-in-out infinite;
}

@keyframes Services_particleFloat__2qVdu {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, -20px) scale(1.5);
        opacity: 0.6;
    }
}

/* ===== Focused Card Animation ===== */
.Services_focusedCard__iltPK {
    animation: Services_focusPulse__NDN-F 2s ease-in-out;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.3);
}

@keyframes Services_focusPulse__NDN-F {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(102, 126, 234, 0.1);
    }
}

/* ===== Animation Classes ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.Services_inView__KNuTl {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .Services_heroTitle__DUrGq {
        font-size: 4.5rem;
    }
    
    .Services_coreServicesGrid__EN3Nu {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .Services_specializedGrid__zShd7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .Services_container__oyVjK {
        padding: 60px 20px;
    }
    
    .Services_heroTitle__DUrGq {
        font-size: 3.5rem;
    }
    
    .Services_heroSubtitle__Q3NWR {
        font-size: 1.1rem;
    }
    
    .Services_statsGrid__dgcBu {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .Services_sectionTitle__EMl0U {
        font-size: 2.8rem;
    }
    
    .Services_coreServicesGrid__EN3Nu {
        grid-template-columns: 1fr;
    }
    
    .Services_specializedGrid__zShd7 {
        grid-template-columns: 1fr;
    }
    
    .Services_ctaCard__D95kU {
        padding: 50px 30px;
        border-radius: 40px;
    }
    
    .Services_ctaCard__D95kU h2 {
        font-size: 2.5rem;
    }
    
    .Services_ctaCard__D95kU p {
        font-size: 1.1rem;
    }
    
    .Services_ctaButtons__ddnA3 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .Services_ctaPrimary__4IuAL,
    .Services_ctaSecondary__zwex\+ {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .Services_container__oyVjK {
        padding: 40px 16px;
    }
    
    .Services_heroTitle__DUrGq {
        font-size: 2.8rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .Services_heroSubtitle__Q3NWR::before,
    .Services_heroSubtitle__Q3NWR::after {
        display: none;
    }
    
    .Services_sectionTitle__EMl0U {
        font-size: 2.2rem;
    }
    
    .Services_coreServiceCard__sXdVY {
        padding: 30px;
    }
    
    .Services_coreCardHeader__814XA {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .Services_coreCardHeader__814XA h3 {
        font-size: 1.5rem;
    }
    
    .Services_specializedCard__oZX7\+ {
        padding: 25px;
    }
    
    .Services_ctaCard__D95kU {
        padding: 40px 20px;
    }
    
    .Services_ctaCard__D95kU h2 {
        font-size: 2rem;
    }
}

/* hero.module.css */
.hero_heroBackground__ZalcI {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0b10 0%, #15161d 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow: hidden;
}

/* Dark overlay for better text readability */
.hero_heroBackground__ZalcI::after {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 25, 0.7);
    z-index: 1;
}

/* Particle overlay like Hero */
.hero_heroBackground__ZalcI::before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    z-index: 0;
    animation: hero_particleFloat__XaZPY 20s ease-in-out infinite;
}
.hero_hero-gradient-overlay-second__1IkX3 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to bottom,
    rgba(45, 15, 75, 0.6) 0%,
    rgba(11, 15, 25, 0.9) 25%,
    rgba(11, 15, 25, 0.9) 60%,
    transparent 100%
);
    z-index: 1;
}
@keyframes hero_particleFloat__XaZPY {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Container positioning */
.hero_heroContainer__kH18\+ {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glass morphism effect for cards */
/* .glassCard {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
} */

/* Enhanced hover effects */
/* .glassCard:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
} */
/* Projects.module.css */
.Projects_projectsHeader__wg4bG {
    text-align: center;
    margin-bottom: 80px;
}

.Projects_projectsTitle__52BPi {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6, #06d6a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.Projects_projectsSubtitle__oaxCF {
    font-size: 1.3rem;
    color: #a8b2d1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Featured Projects Section ===== */
.Projects_featuredProjectsSection__\+ECwV {
    margin-bottom: 100px;
}

.Projects_sectionTitle__BJMie {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 700;
}

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

.Projects_projectCard__ZCCkh {
    background: linear-gradient(145deg, #1a1b23, #15161d);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

    .Projects_projectCard__ZCCkh.Projects_inView__xuxrK {
        opacity: 1;
        transform: translateY(0);
    }

    .Projects_projectCard__ZCCkh::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, var(--accent-color), transparent);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .Projects_projectCard__ZCCkh:hover::before {
        transform: scaleX(1);
    }

    .Projects_projectCard__ZCCkh:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }

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

.Projects_projectIcon__ectFj {
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.Projects_projectCard__ZCCkh:hover .Projects_projectIcon__ectFj {
    transform: scale(1.2) rotate(5deg);
    
}

.Projects_projectInfo__v8Qzg h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

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

.Projects_company__Gj27e {
    background: rgba(11, 105, 255, 0.2);
    color: #0b69ff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.Projects_period__SZtQw {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.Projects_projectDescription__jKuyq {
    color: #a8b2d1;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* ===== Technologies Section ===== */
.Projects_technologiesSection__BViiu {
    margin-bottom: 1.5rem;
}

    .Projects_technologiesSection__BViiu h4 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

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

.Projects_techTag__kvu36 {
    background: rgba(255, 255, 255, 0.05);
    color: #a8b2d1;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

    .Projects_techTag__kvu36:hover {
        background: var(--accent-color);
        color: white;
        transform: translateY(-2px);
    }

/* ===== Achievements Section ===== */
.Projects_achievementsSection__WMOVA h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.Projects_achievementsList__U68gQ {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .Projects_achievementsList__U68gQ li {
        color: #a8b2d1;
        padding: 0.5rem 0;
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        transition: color 0.3s ease;
        line-height: 1.5;
    }

        .Projects_achievementsList__U68gQ li:hover {
            color: #ffffff;
        }

.Projects_achievementCheck__u5-E8 {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.Projects_infrastructureSection__4MEM- {
    margin-top: 1.5rem;
}

.Projects_infrastructureSection__4MEM- h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.Projects_infrastructureTag__DpcWv {
    background: rgba(6, 214, 160, 0.08);
    color: #d7f7ee;
    padding: 0.45rem 0.8rem;
    border-radius: 14px;
    font-size: 0.82rem;
    border: 1px solid rgba(6, 214, 160, 0.22);
}

/* ===== Technology Stack Section ===== */
.Projects_techStackSection__7-aAl {
    margin-bottom: 80px;
}

.Projects_techStackGrid__\+JAhM {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.Projects_techCard__K5eny {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

    .Projects_techCard__K5eny.Projects_inView__xuxrK {
        opacity: 1;
        transform: translateY(0);
    }

    .Projects_techCard__K5eny:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

.Projects_techCategoryHeader__rhvxU {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.Projects_techCategoryIcon__vdYbQ {
    font-size: 2rem;
    color: #0b69ff;
}

.Projects_techCategoryHeader__rhvxU h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

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

.Projects_techItem__S7lej {
    background: rgba(255, 255, 255, 0.05);
    color: #a8b2d1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

    .Projects_techItem__S7lej:hover {
        background: rgba(11, 105, 255, 0.2);
        color: #0b69ff;
        transform: translateY(-2px);
    }

/* ===== CTA Section ===== */
.Projects_projectsCta__6ONYf {
    background: linear-gradient(135deg, rgba(11, 105, 255, 0.1), rgba(139, 92, 246, 0.1));
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.Projects_ctaContent__GE4ju h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.Projects_ctaContent__GE4ju p {
    color: #a8b2d1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.Projects_btn__QA9Y4 {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.Projects_btnPrimary__V2vod {
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    color: white;
}

    .Projects_btnPrimary__V2vod:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(11, 105, 255, 0.3);
    }

.Projects_btnSecondary__wCiQL {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .Projects_btnSecondary__wCiQL:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .Projects_projectsTitle__52BPi {
        font-size: 2.5rem;
    }

    .Projects_projectsSubtitle__oaxCF {
        font-size: 1.1rem;
    }

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

    .Projects_projectCard__ZCCkh {
        padding: 2rem;
    }

    .Projects_techStackGrid__\+JAhM {
        grid-template-columns: 1fr;
    }

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

    .Projects_btn__QA9Y4 {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .Projects_projectsHeader__wg4bG {
        margin-bottom: 60px;
    }

    .Projects_projectsTitle__52BPi {
        font-size: 2rem;
    }

    .Projects_projectCard__ZCCkh {
        padding: 1.5rem;
    }

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

    .Projects_sectionTitle__BJMie {
        font-size: 2rem;
    }
}

/* Fix for reveal animation */
.Projects_reveal__25ytt {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* About.module.css */
.About_aboutHeader__pRMLS {
    text-align: center;
    margin-bottom: 80px;
}

.About_aboutTitle__0YJ-Z {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6, #06d6a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.About_aboutSubtitle__reDJ4 {
    font-size: 1.3rem;
    color: #a8b2d1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Mission Section ===== */
.About_missionSection__\+w1Hs {
    margin-bottom: 100px;
}

.About_sectionTitle__DF1-v {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 700;
}

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

.About_missionText__6pe7w {
    font-size: 1.1rem;
    color: #a8b2d1;
    line-height: 1.8;
}

.About_missionText__6pe7w p {
    margin-bottom: 1.5rem;
}

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

.About_missionStat__3VG4n {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.About_missionStat__3VG4n:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.About_statNumber__g0xFr {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #a8b2d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.About_statLabel__-hfN- {
    color: #a8b2d1;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Values Section ===== */
.About_valuesSection__1cQ07 {
    margin-bottom: 100px;
}

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

.About_valueCard__p1Y\+z {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.About_valueCard__p1Y\+z:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.About_valueIcon__29ggl {
    font-size: 3rem;
    color: #0b69ff;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.About_valueTitle__kJmKK {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.About_valueDescription__FRmzX {
    color: #a8b2d1;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== Process Section ===== */
.About_processSection__T-Jv1 {
    margin-bottom: 100px;
}

.About_processSteps__7qpam {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.About_processStep__w1eUp {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-50px);
}

.About_processStep__w1eUp.About_inView__COfBb {
    opacity: 1;
    transform: translateX(0);
}

.About_processStep__w1eUp:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.About_stepNumber__OqnY6 {
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.About_stepContent__0Wt-O h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.About_stepContent__0Wt-O p {
    color: #a8b2d1;
    line-height: 1.6;
    margin: 0;
}

/* ===== Technology Section ===== */
.About_technologySection__Ixgnv {
    margin-bottom: 100px;
}

.About_techCategories__8ol\+4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
}

.About_techCategory__fR2G- {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.About_techCategory__fR2G-:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.About_techCategory__fR2G- h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.About_techList__u7y-l {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.About_techItem__0S\+-o {
    background: rgba(255, 255, 255, 0.05);
    color: #a8b2d1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.About_techItem__0S\+-o:hover {
    background: rgba(11, 105, 255, 0.2);
    color: #0b69ff;
    transform: translateY(-2px);
}

/* ===== CTA Section ===== */
.About_aboutCta__9wSA- {
    background: linear-gradient(135deg, rgba(11, 105, 255, 0.1), rgba(139, 92, 246, 0.1));
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.About_ctaContent__iPeXb h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.About_ctaContent__iPeXb p {
    color: #a8b2d1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.About_btn__6yFhB {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.About_btnPrimary__0FiH3 {
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    color: white;
}

.About_btnPrimary__0FiH3:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(11, 105, 255, 0.3);
}

.About_btnSecondary__s7mvr {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.About_btnSecondary__s7mvr:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .About_missionContent__erXEf {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .About_missionStats__Y5Ndl {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .About_aboutTitle__0YJ-Z {
        font-size: 2.5rem;
    }

    .About_aboutSubtitle__reDJ4 {
        font-size: 1.1rem;
    }

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

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

    .About_techCategories__8ol\+4 {
        grid-template-columns: 1fr;
    }

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

    .About_btn__6yFhB {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .About_aboutHeader__pRMLS {
        margin-bottom: 60px;
    }

    .About_aboutTitle__0YJ-Z {
        font-size: 2rem;
    }

    .About_sectionTitle__DF1-v {
        font-size: 2rem;
    }

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

    .About_valueCard__p1Y\+z {
        padding: 2rem;
    }

    .About_processStep__w1eUp {
        padding: 1.5rem;
    }
}

/* Animation classes */
.About_reveal__EA\+y3 {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
/* Contact.module.css */
.Contact_contactHeader__ZDjPt {
    text-align: center;
    margin-bottom: 80px;
}

.Contact_contactTitle__uRe9Y {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6, #06d6a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.Contact_contactSubtitle__IhgYu {
    font-size: 1.3rem;
    color: #a8b2d1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Contact Content Section ===== */
.Contact_contactContent__XXVRw {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
    gap: 4rem;
    margin-bottom: 100px;
}

/* ===== Contact Info Section ===== */
.Contact_contactInfo__CqRyv {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.Contact_infoCard__5pzQc {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.Contact_infoHeader__MAWFH {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.Contact_infoIcon__2\+nhq {
    font-size: 2rem;
    color: #0b69ff;
}

.Contact_infoHeader__MAWFH h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.Contact_infoContent__aAbCc p {
    color: #a8b2d1;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.Contact_infoLink__O2SpM {
    color: #0b69ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.Contact_infoLink__O2SpM:hover {
    color: #8b5cf6;
}

/* ===== Contact Form Section ===== */
.Contact_contactForm__Viuso {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.Contact_formGroup__J9KKW {
    margin-bottom: 1.5rem;
}

.Contact_formLabel__7ZZFc {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.Contact_formInput__eDba\+,
.Contact_formTextarea__EPfNW {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.Contact_formInput__eDba\+:focus,
.Contact_formTextarea__EPfNW:focus {
    outline: none;
    border-color: #0b69ff;
    background: rgba(255, 255, 255, 0.08);
}

.Contact_formInput__eDba\+::placeholder,
.Contact_formTextarea__EPfNW::placeholder {
    color: #a8b2d1;
}

.Contact_formTextarea__EPfNW {
    resize: vertical;
    min-height: 120px;
}

.Contact_submitButton__hjZdU {
    width: 100%;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.Contact_submitButton__hjZdU:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(11, 105, 255, 0.3);
}

.Contact_submitButton__hjZdU:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.Contact_formStatus__hC5P\+ {
    margin: 1rem 0 0;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.Contact_success__ybzHb {
    color: #b8f7d4;
    background: rgba(6, 214, 160, 0.12);
    border: 1px solid rgba(6, 214, 160, 0.35);
}

.Contact_error__IlbE6 {
    color: #ffd0d0;
    background: rgba(255, 107, 107, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.35);
}

/* ===== Team Section ===== */
.Contact_teamSection__r3\+n0 {
    margin-bottom: 80px;
}

.Contact_sectionTitle__aLMuZ {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 700;
}

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

.Contact_teamMember__wAsca {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.Contact_memberAvatar__ftTO3 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid rgba(11, 105, 255, 0.3);
}

.Contact_memberName__AoCk0 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.Contact_memberRole__Rw1Vl {
    color: #0b69ff;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.Contact_memberContact__ALTDD {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.Contact_contactLink__y0kUP {
    color: #a8b2d1;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.Contact_contactLink__y0kUP:hover {
    color: #0b69ff;
    background: rgba(11, 105, 255, 0.1);
    transform: translateY(-2px);
}

/* ===== CTA Section ===== */
.Contact_contactCta__RWF7z {
    background: linear-gradient(135deg, rgba(11, 105, 255, 0.1), rgba(139, 92, 246, 0.1));
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.Contact_ctaContent__\+5dKn h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.Contact_ctaContent__\+5dKn p {
    color: #a8b2d1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.Contact_btn__jx3Yo {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.Contact_btnPrimary__vS5VC {
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    color: white;
}

.Contact_btnPrimary__vS5VC:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(11, 105, 255, 0.3);
}

.Contact_btnSecondary__DzyOZ {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.Contact_btnSecondary__DzyOZ:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .Contact_contactContent__XXVRw {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .Contact_contactTitle__uRe9Y {
        font-size: 2.5rem;
    }

    .Contact_contactSubtitle__IhgYu {
        font-size: 1.1rem;
    }

    .Contact_contactForm__Viuso {
        padding: 2rem;
    }

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

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

    .Contact_btn__jx3Yo {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .Contact_contactHeader__ZDjPt {
        margin-bottom: 60px;
    }

    .Contact_contactTitle__uRe9Y {
        font-size: 2rem;
    }

    .Contact_sectionTitle__aLMuZ {
        font-size: 2rem;
    }

    .Contact_infoCard__5pzQc {
        padding: 1.5rem;
    }

    .Contact_contactForm__Viuso {
        padding: 1.5rem;
    }
}

/* Animation classes */
.Contact_reveal__PP73f {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Shto në fund të Content.module.css */

/* Smooth scrolling for the whole page */
html {
  scroll-behavior: smooth;
}

/* Ensure animated elements have proper overflow handling */
.Contact_animated-word__Jq3mQ {
  overflow: hidden;
  display: inline-block;
}

/* Parallax effect for sections */
.Contact_servicesSection__QkKlb,
.Contact_projectsSection__tUCR-,
.Contact_technologiesSection__pABIC,
.Contact_teamSection__r3\+n0,
.Contact_aboutSection__SNJO1,
.Contact_ctaSection__OdTg4 {
  transition: transform 0.3s ease-out;
  will-change: transform;
}

/* Content.module.css - iOS 17/18 Ultra Creative Edition */

/* ===== Container ===== */
.Content_container__eJNTP {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
    position: relative;
    z-index: 2;
}

/* ===== iOS Section Title with Creative Effects ===== */
.Content_sectionTitle__nSQrY {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #a8b2d1 20%,
        #0b69ff 40%,
        #8b5cf6 60%,
        #ff6b6b 80%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    background-size: 300% 300%;
    animation: Content_gradientFlow__IMWXs 10s ease-in-out infinite;
    position: relative;
    display: inline-block;
    width: 100%;
}

.Content_sectionTitle__nSQrY::before {
    content: '✦';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #0b69ff;
    opacity: 0;
    animation: Content_starPulse__7fQYN 3s ease-in-out infinite;
}

.Content_sectionTitle__nSQrY::after {
    content: '✦';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #8b5cf6;
    opacity: 0;
    animation: Content_starPulse__7fQYN 3s ease-in-out infinite 1.5s;
}

@keyframes Content_starPulse__7fQYN {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(-50%) scale(0.5);
    }
    50% { 
        opacity: 1; 
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes Content_gradientFlow__IMWXs {
    0%, 100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% { 
        background-position: 100% 50%;
        filter: hue-rotate(10deg);
    }
}

.Content_sectionSubtitle__885bJ {
    font-size: 1.3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    padding: 0 20px;
}

.Content_sectionSubtitle__885bJ::before {
    content: '“';
    position: absolute;
    left: -10px;
    top: -20px;
    font-size: 4rem;
    color: rgba(11, 105, 255, 0.2);
    font-family: serif;
}

.Content_sectionSubtitle__885bJ::after {
    content: '”';
    position: absolute;
    right: -10px;
    bottom: -30px;
    font-size: 4rem;
    color: rgba(139, 92, 246, 0.2);
    font-family: serif;
}

/* ===== Creative Background Elements for Sections ===== */
.Content_servicesSection__UCI5u::before {
    content: '{/*}';
    position: absolute;
    font-size: 15rem;
    font-family: 'SF Mono', monospace;
    color: rgba(11, 105, 255, 0.03);
    top: -50px;
    right: -50px;
    transform: rotate(15deg);
    pointer-events: none;
    animation: Content_floatCode__vScMt 20s ease-in-out infinite;
}

.Content_projectsSection__5KBNN::after {
    content: '</>';
    position: absolute;
    font-size: 12rem;
    font-family: 'SF Mono', monospace;
    color: rgba(139, 92, 246, 0.03);
    bottom: -30px;
    left: -30px;
    transform: rotate(-10deg);
    pointer-events: none;
    animation: Content_floatCodeReverse__EvvOl 18s ease-in-out infinite;
}

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

@keyframes Content_floatCodeReverse__EvvOl {
    0%, 100% { transform: rotate(-10deg) translate(0, 0); }
    50% { transform: rotate(-15deg) translate(20px, 20px); }
}

/* ===== iOS Button with Creative Effects ===== */
.Content_btn__abXN2 {
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
}

.Content_btn__abXN2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transition: left 0.6s ease;
    z-index: -1;
}

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

.Content_btn__abXN2::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6, #ff6b6b);
    border-radius: 50px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(5px);
}

.Content_btn__abXN2:hover::after {
    opacity: 1;
    animation: Content_buttonGlow__tQuqp 2s ease-in-out infinite;
}

@keyframes Content_buttonGlow__tQuqp {
    0%, 100% { filter: blur(5px); opacity: 0.5; }
    50% { filter: blur(10px); opacity: 0.8; }
}

.Content_btnPrimary__VVibo {
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    color: #fff;
    box-shadow: 0 10px 25px rgba(11, 105, 255, 0.3);
}

.Content_btnPrimary__VVibo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 35px rgba(11, 105, 255, 0.5);
}

.Content_btnSecondary__mT6M2 {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.Content_btnSecondary__mT6M2:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: transparent;
}

.Content_serviceBtn__nFXqC {
    margin-top: 20px;
    background: transparent;
    color: #0b69ff;
    border: 2px solid rgba(11, 105, 255, 0.3);
    padding: 12px 28px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.Content_serviceBtn__nFXqC::before {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.Content_serviceBtn__nFXqC:hover {
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    color: #fff;
    border-color: transparent;
    padding-right: 45px;
}

.Content_serviceBtn__nFXqC:hover::before {
    right: 15px;
    opacity: 1;
    color: #fff;
}

/* ===== iOS Animation Classes with Creative Timing ===== */
.Content_reveal__OHkIN {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.Content_reveal__OHkIN.Content_inView__qJuig {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.Content_cardAnimated__yLlsh {
    opacity: 0;
    transform: translateY(50px) scale(0.95) rotate(1deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-property: opacity, transform, box-shadow, border-color;
}

.Content_cardAnimated__yLlsh.Content_inView__qJuig {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
}

/* ===== iOS Services Section with Creative Cards ===== */
.Content_servicesSection__UCI5u {
    position: relative;
    margin-bottom: 80px;
    padding: 20px 0;
}

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

.Content_serviceCard__AIBM\+ {
    padding: 45px 35px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.Content_serviceCard__AIBM\+::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        #0b69ff,
        #8b5cf6,
        #ff6b6b,
        #0b69ff,
        #8b5cf6
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.Content_serviceCard__AIBM\+:hover::before {
    opacity: 1;
}

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

.Content_serviceCard__AIBM\+::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(11, 105, 255, 0.3),
        transparent 70%
    );
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(11, 105, 255, 0.3),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.Content_serviceCard__AIBM\+:hover::after {
    opacity: 1;
}

.Content_serviceIcon__QlVIe {
    font-size: 4rem;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(11, 105, 255, 0.3));
}

.Content_serviceCard__AIBM\+:hover .Content_serviceIcon__QlVIe {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 25px rgba(11, 105, 255, 0.5));
}

.Content_serviceCard__AIBM\+ h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.Content_serviceCard__AIBM\+ h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0b69ff, #8b5cf6);
    transition: width 0.3s ease;
}

.Content_serviceCard__AIBM\+:hover h3::after {
    width: 100%;
}

.Content_serviceCard__AIBM\+ p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    flex-grow: 1;
}

.Content_serviceCard__AIBM\+ ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.Content_serviceCard__AIBM\+ ul li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    left: 0;
}

.Content_serviceCard__AIBM\+ ul li::before {
    content: '✓';
    color: #0b69ff;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.Content_serviceCard__AIBM\+ ul li:hover {
    left: 5px;
    color: #fff;
}

.Content_serviceCard__AIBM\+ ul li:hover::before {
    transform: scale(1.2);
    color: #8b5cf6;
}

/* ===== iOS Projects Section with 3D Effects ===== */
.Content_projectsSection__5KBNN {
    margin-bottom: 80px;
    position: relative;
}

.Content_projectsGrid__i-BAN {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 35px;
    gap: 35px;
    perspective: 1000px;
}

.Content_projectCard__ghfJq {
    padding: 40px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.Content_projectCard__ghfJq:hover {
    transform: 
        translateY(-15px) 
        scale(1.02) 
        rotateX(2deg) 
        rotateY(1deg);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 30px 50px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(11, 105, 255, 0.1);
}

.Content_projectCard__ghfJq::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #0b69ff,
        #8b5cf6,
        #ff6b6b,
        #0b69ff
    );
    background: linear-gradient(
        90deg,
        var(--accent-color, #0b69ff),
        #8b5cf6,
        #ff6b6b,
        var(--accent-color, #0b69ff)
    );
    background-size: 300% 100%;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.Content_projectCard__ghfJq:hover::after {
    transform: scaleX(1);
    animation: Content_gradientMove__gxzxt 2s linear infinite;
}

@keyframes Content_gradientMove__gxzxt {
    0% { background-position: 0% 0; }
    100% { background-position: 300% 0; }
}

.Content_projectHeader__Kun7T {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.Content_projectIcon__ueR3g {
    font-size: 3.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: rotate(0deg);
}

.Content_projectCard__ghfJq:hover .Content_projectIcon__ueR3g {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    background: linear-gradient(135deg, var(--accent-color, #0b69ff), #8b5cf6);
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(11, 105, 255, 0.3);
}

.Content_projectCard__ghfJq:hover .Content_projectIcon__ueR3g svg {
    color: #fff !important;
}

.Content_projectInfo__jYQGA h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.3;
}

.Content_company__XzU4U {
    background: rgba(11, 105, 255, 0.2);
    color: #0b69ff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.Content_projectDescription__qh6cS {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.Content_technologiesSection__lFb4i h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.Content_technologiesSection__lFb4i h4::before {
    content: '#';
    color: #0b69ff;
    margin-right: 5px;
    font-size: 1.3rem;
}

.Content_technologiesGrid__kMALA {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.Content_techTag__d78Qw {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.Content_techTag__d78Qw::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    border-radius: 40px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.Content_techTag__d78Qw:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(11, 105, 255, 0.3);
}

.Content_techTag__d78Qw:hover::before {
    opacity: 1;
}

/* ===== TECHNOLOGY STACK - 3D CUBE DESIGN ===== */
.Content_technologiesSection__lFb4i {
    margin-bottom: 100px;
    position: relative;
    perspective: 2000px;
}

.Content_technologiesGrid__kMALA {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 30px;
    gap: 30px;
    transform-style: preserve-3d;
}

.Content_technologyCard__o2KuY {
    position: relative;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Content_technologyCard__o2KuY::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 105, 255, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    transform: translateZ(-20px) scale(1.02);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
}

.Content_technologyCard__o2KuY::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 105, 255, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 20px;
    transform: rotateY(90deg) translateZ(20px) scaleX(0.5);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.Content_technologyCard__o2KuY:hover {
    transform: rotateY(10deg) rotateX(5deg) translateZ(20px);
    box-shadow: 
        -20px 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(11, 105, 255, 0.2);
}

.Content_technologyCard__o2KuY:hover::before {
    transform: translateZ(-40px) scale(1.05);
    box-shadow: 0 0 30px rgba(11, 105, 255, 0.3);
}

.Content_technologyCard__o2KuY:hover::after {
    opacity: 1;
    transform: rotateY(90deg) translateZ(30px) scaleX(0.6);
}

.Content_techIcon__jyp9\+ {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(11, 105, 255, 0.2);
    transition: all 0.5s ease;
    z-index: 2;
}

.Content_technologyCard__o2KuY:hover .Content_techIcon__jyp9\+ {
    transform: translateY(-20px) rotate(360deg) scale(1.2);
    color: rgba(11, 105, 255, 0.6);
}

.Content_technologyCard__o2KuY h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    z-index: 2;
    transform: translateZ(30px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.Content_techProgress__ixjEK {
    position: relative;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 15px;
    transform: translateZ(25px);
    z-index: 2;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.Content_progressBar__BAEwk {
    height: 100%;
    background: linear-gradient(90deg, #0b69ff, #8b5cf6, #ff6b6b, #0b69ff);
    background-size: 300% 100%;
    border-radius: 50px;
    transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    animation: Content_progressFlow__tqCk5 3s linear infinite;
}

@keyframes Content_progressFlow__tqCk5 {
    0% { background-position: 0% 0; }
    100% { background-position: 300% 0; }
}

.Content_techLevel__sfKQE {
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    transform: translateZ(30px);
    letter-spacing: 0.5px;
}

.Content_techLevel__sfKQE[data-level="Expert"] {
    background: linear-gradient(135deg, rgba(11, 105, 255, 0.2), rgba(139, 92, 246, 0.2));
    color: #0b69ff;
    border: 1px solid rgba(11, 105, 255, 0.3);
}

.Content_techLevel__sfKQE[data-level="Advanced"] {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(255, 107, 107, 0.2));
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.Content_techLevel__sfKQE[data-level="Intermediate"] {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 149, 0, 0.2));
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.Content_techParticle__ZHmOs {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(11, 105, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.Content_technologyCard__o2KuY:hover .Content_techParticle__ZHmOs {
    animation: Content_particleFloat__LcTtI 2s ease-out infinite;
}

@keyframes Content_particleFloat__LcTtI {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-50px) translateX(20px) scale(0);
        opacity: 0;
    }
}

/* ===== MEET OUR TEAM - NEON CARD DESIGN ===== */
.Content_teamSection__mjY9G {
    margin-bottom: 100px;
    position: relative;
}

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

.Content_teamCard__Kn6Hh {
    position: relative;
    padding: 35px 25px;
    border-radius: 30px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1;
}

.Content_teamCard__Kn6Hh::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6, #ff6b6b, #0b69ff);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -2;
}

.Content_teamCard__Kn6Hh::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.9);
    border-radius: 30px;
    z-index: -1;
}

.Content_teamCard__Kn6Hh:hover::before {
    opacity: 1;
    animation: Content_neonPulse__GWHQH 1.5s ease-in-out infinite;
}

@keyframes Content_neonPulse__GWHQH {
    0%, 100% { 
        opacity: 0.5; 
        filter: blur(2px);
    }
    50% { 
        opacity: 1; 
        filter: blur(5px);
    }
}

.Content_teamCard__Kn6Hh.Content_featured__hOeNV {
    transform: scale(1.02);
}

.Content_teamCard__Kn6Hh.Content_featured__hOeNV::before {
    opacity: 0.7;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6, #ffd166, #0b69ff);
    animation: Content_neonPulseFeatured__hHhra 2s ease-in-out infinite;
}

@keyframes Content_neonPulseFeatured__hHhra {
    0%, 100% { 
        opacity: 0.7; 
        filter: blur(3px);
    }
    50% { 
        opacity: 1; 
        filter: blur(8px);
    }
}

.Content_memberAvatar__j9BqH {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.Content_memberAvatar__j9BqH img {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.Content_memberAvatar__j9BqH::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 65px;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6, #ff6b6b);
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(5px);
    z-index: 1;
}

.Content_teamCard__Kn6Hh:hover .Content_memberAvatar__j9BqH::before {
    opacity: 0.6;
    animation: Content_rotateGlow__y06ZV 3s linear infinite;
}

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

.Content_teamCard__Kn6Hh:hover .Content_memberAvatar__j9BqH img {
    transform: scale(1.05);
    border-color: #0b69ff;
}

.Content_featuredBadge__DIAa7 {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(0, 0, 0, 0.8);
    color: #0b69ff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    border: 1px solid #0b69ff;
    box-shadow: 0 0 15px #0b69ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
}

.Content_memberInfo__RpDFf h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    position: relative;
    display: inline-block;
    z-index: 2;
    transition: text-shadow 0.3s ease;
}

.Content_teamCard__Kn6Hh:hover .Content_memberInfo__RpDFf h4 {
    text-shadow: 
        0 0 10px #0b69ff,
        0 0 20px #8b5cf6;
}

.Content_memberRole__dI9dW {
    color: #0b69ff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    padding: 0 15px;
    z-index: 2;
}

.Content_memberRole__dI9dW::before,
.Content_memberRole__dI9dW::after {
    content: '⚡';
    position: absolute;
    font-size: 0.8rem;
    color: #8b5cf6;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.Content_memberRole__dI9dW::before {
    left: -5px;
}

.Content_memberRole__dI9dW::after {
    right: -5px;
}

.Content_teamCard__Kn6Hh:hover .Content_memberRole__dI9dW::before,
.Content_teamCard__Kn6Hh:hover .Content_memberRole__dI9dW::after {
    opacity: 1;
}

.Content_memberSkills__L9YHM {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.Content_skillTag__ok13l {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 2;
}

.Content_skillTag__ok13l::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #0b69ff, #8b5cf6, transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.Content_skillTag__ok13l:hover {
    color: #fff;
    border-color: #0b69ff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 5px 15px rgba(11, 105, 255, 0.3),
        0 0 0 1px #0b69ff;
}

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

.Content_skillMore__m0Jqs {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.Content_skillMore__m0Jqs:hover {
    background: #8b5cf6;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.Content_glowParticle__HX9HQ {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(11, 105, 255, 0.2), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.Content_teamCard__Kn6Hh .Content_glowParticle__HX9HQ:nth-child(1) {
    top: -50px;
    right: -50px;
    animation: Content_floatGlow__r0eSA 8s ease-in-out infinite;
}

.Content_teamCard__Kn6Hh .Content_glowParticle__HX9HQ:nth-child(2) {
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
    animation: Content_floatGlow__r0eSA 10s ease-in-out infinite reverse;
}

@keyframes Content_floatGlow__r0eSA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.2); }
}

.Content_teamSection__mjY9G .Content_sectionTitle__nSQrY {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.Content_teamSection__mjY9G .Content_sectionTitle__nSQrY::before {
    content: '✧';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #0b69ff;
    animation: Content_starTwinkle__PPA7u 2s ease-in-out infinite;
}

.Content_teamSection__mjY9G .Content_sectionTitle__nSQrY::after {
    content: '✧';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #8b5cf6;
    animation: Content_starTwinkle__PPA7u 2s ease-in-out infinite 1s;
}

.Content_technologiesSection__lFb4i .Content_sectionTitle__nSQrY {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.Content_technologiesSection__lFb4i .Content_sectionTitle__nSQrY::before {
    content: '〈/〉';
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #0b69ff;
    font-family: 'SF Mono', monospace;
    opacity: 0.5;
    animation: Content_codePulse__9a3VO 3s ease-in-out infinite;
}

.Content_technologiesSection__lFb4i .Content_sectionTitle__nSQrY::after {
    content: '{...}';
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #8b5cf6;
    font-family: 'SF Mono', monospace;
    opacity: 0.5;
    animation: Content_codePulse__9a3VO 3s ease-in-out infinite 1.5s;
}

@keyframes Content_codePulse__9a3VO {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateY(-50%) scale(0.9);
    }
    50% { 
        opacity: 0.8; 
        transform: translateY(-50%) scale(1.1);
    }
}

@keyframes Content_starTwinkle__PPA7u {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateY(-50%) scale(0.8);
    }
    50% { 
        opacity: 1; 
        transform: translateY(-50%) scale(1.2);
        text-shadow: 0 0 15px currentColor;
    }
}

/* ===== iOS About Section with Creative Values ===== */
.Content_aboutSection__WSAMx {
    margin-bottom: 80px;
    position: relative;
}

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

.Content_valueCard__ZJfP- {
    padding: 45px 35px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.Content_valueCard__ZJfP-::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(11, 105, 255, 0.2),
        transparent 70%
    );
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(11, 105, 255, 0.2),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.Content_valueCard__ZJfP-:hover::before {
    opacity: 1;
}

.Content_valueIcon__LXEwa {
    font-size: 4rem;
    color: #0b69ff;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(11, 105, 255, 0.3));
}

.Content_valueCard__ZJfP-:hover .Content_valueIcon__LXEwa {
    transform: scale(1.2) rotateY(180deg);
    color: #8b5cf6;
    filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.5));
}

.Content_valueTitle__vJo-M {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
    transition: all 0.3s ease;
}

.Content_valueCard__ZJfP-:hover .Content_valueTitle__vJo-M {
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.Content_valueDescription__zoIrv {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.Content_valueCard__ZJfP-:hover .Content_valueDescription__zoIrv {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== iOS CTA Section with Explosive Effects ===== */
.Content_ctaSection__RsiRY {
    text-align: center;
    margin-top: 40px;
}

.Content_ctaContent__hezlR {
    padding: 80px 50px;
    border-radius: 70px;
    background: linear-gradient(135deg, 
        rgba(11, 105, 255, 0.15), 
        rgba(139, 92, 246, 0.15),
        rgba(255, 107, 107, 0.15)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.Content_ctaContent__hezlR::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 30%,
        rgba(11, 105, 255, 0.1) 60%,
        transparent 80%
    );
    animation: Content_explode__NsJAV 10s linear infinite;
    z-index: -1;
}

@keyframes Content_explode__NsJAV {
    0% { 
        transform: rotate(0deg) scale(1); 
        opacity: 0.3;
    }
    50% { 
        transform: rotate(180deg) scale(1.5); 
        opacity: 0.6;
    }
    100% { 
        transform: rotate(360deg) scale(1); 
        opacity: 0.3;
    }
}

.Content_ctaContent__hezlR::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6, #ff6b6b, #0b69ff);
    border-radius: 70px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.Content_ctaContent__hezlR:hover::after {
    opacity: 0.3;
}

.Content_ctaContent__hezlR h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.Content_ctaContent__hezlR p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.Content_ctaButtons__s44-7 {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ===== iOS Mouse Tracking Effect ===== */
.Content_mouse-track__0KOT9 {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(11, 105, 255, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.1s ease;
}

/* ===== iOS Custom Selection ===== */
::selection {
    background: rgba(11, 105, 255, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(11, 105, 255, 0.3);
    color: #fff;
}

/* ===== iOS Responsive Design ===== */
@media (max-width: 1024px) {
    .Content_sectionTitle__nSQrY {
        font-size: 3rem;
    }
    
    .Content_sectionTitle__nSQrY::before,
    .Content_sectionTitle__nSQrY::after {
        display: none;
    }
    
    .Content_projectsGrid__i-BAN {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .Content_container__eJNTP {
        padding: 60px 20px;
    }

    .Content_sectionTitle__nSQrY {
        font-size: 2.5rem;
    }

    .Content_sectionSubtitle__885bJ {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .Content_servicesGrid__PmC0V {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .Content_serviceCard__AIBM\+ {
        padding: 35px 25px;
    }

    .Content_projectsGrid__i-BAN {
        grid-template-columns: 1fr;
    }

    .Content_projectCard__ghfJq {
        padding: 30px;
    }

    .Content_projectHeader__Kun7T {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .Content_projectIcon__ueR3g {
        margin: 0 auto;
    }

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

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

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

    .Content_ctaContent__hezlR {
        padding: 50px 30px;
        border-radius: 40px;
    }

    .Content_ctaContent__hezlR h2 {
        font-size: 2.2rem;
    }

    .Content_ctaContent__hezlR p {
        font-size: 1.1rem;
    }

    .Content_ctaButtons__s44-7 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .Content_btn__abXN2 {
        width: 100%;
        max-width: 300px;
    }
    
    .Content_servicesSection__UCI5u::before,
    .Content_projectsSection__5KBNN::after {
        display: none;
    }
    
    .Content_teamSection__mjY9G .Content_sectionTitle__nSQrY::before,
    .Content_teamSection__mjY9G .Content_sectionTitle__nSQrY::after,
    .Content_technologiesSection__lFb4i .Content_sectionTitle__nSQrY::before,
    .Content_technologiesSection__lFb4i .Content_sectionTitle__nSQrY::after {
        display: none;
    }
    
    .Content_teamCard__Kn6Hh.Content_featured__hOeNV {
        transform: scale(1);
    }
    
    .Content_technologiesGrid__kMALA {
        gap: 20px;
    }
    
    .Content_technologyCard__o2KuY h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .Content_container__eJNTP {
        padding: 40px 16px;
    }

    .Content_sectionTitle__nSQrY {
        font-size: 2rem;
    }

    .Content_sectionSubtitle__885bJ {
        font-size: 1rem;
        padding: 0 10px;
    }

    .Content_serviceCard__AIBM\+ {
        padding: 30px 20px;
        border-radius: 30px;
    }

    .Content_serviceIcon__QlVIe {
        font-size: 3.5rem;
    }

    .Content_serviceCard__AIBM\+ h3 {
        font-size: 1.4rem;
    }

    .Content_projectCard__ghfJq {
        padding: 25px;
        border-radius: 30px;
    }

    .Content_projectIcon__ueR3g {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .Content_projectInfo__jYQGA h3 {
        font-size: 1.3rem;
    }

    .Content_technologyCard__o2KuY {
        padding: 25px;
        border-radius: 25px;
    }
    
    .Content_techIcon__jyp9\+ {
        font-size: 2.5rem;
        top: -15px;
        right: 15px;
    }

    .Content_teamCard__Kn6Hh {
        padding: 30px 20px;
        border-radius: 30px;
    }

    .Content_memberAvatar__j9BqH img {
        width: 100px;
        height: 100px;
    }

    .Content_memberInfo__RpDFf h4 {
        font-size: 1.3rem;
    }

    .Content_valueCard__ZJfP- {
        padding: 35px 25px;
        border-radius: 30px;
    }

    .Content_ctaContent__hezlR {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .Content_ctaContent__hezlR h2 {
        font-size: 1.8rem;
    }

    .Content_ctaContent__hezlR p {
        font-size: 1rem;
    }

    .Content_focusedCard__4eXYj {
  outline: 2px solid var(--accent-color);
  box-shadow: 0 0 0 6px rgba(11, 105, 255, 0.12);
  animation: Content_focusPop__dezTF 600ms ease-out;
}

@keyframes Content_focusPop__dezTF {
  from { transform: scale(0.98); }
  to { transform: scale(1); }
}

}

.home-page {
    background: linear-gradient(135deg, #0a0b10 0%, #15161d 100%);
}

/* ===== Team Page Base Styles ===== */
.Team_teamPage__brOoM {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0b10 0%, #15161d 100%);
    min-height: 100vh;
    color: #ffffff;
}

/* ===== Header Section ===== */
.Team_teamHeader__HBC47 {
    text-align: center;
    margin-bottom: 80px;
}

.Team_teamTitle__ktIR9 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6, #06d6a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.Team_teamSubtitle__uxu5G {
    font-size: 1.3rem;
    color: #a8b2d1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Team Members Section ===== */
.Team_teamMembersSection__vyH-5 {
    margin-bottom: 100px;
}

.Team_sectionTitle__hD4mi {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 700;
}

.Team_teamMembersGrid__\+nQoL {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
}

.Team_teamMemberCard__6kVMG {
    background: linear-gradient(145deg, #1a1b23, #15161d);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(50px);
}

    .Team_teamMemberCard__6kVMG.Team_inView__IrtF1 {
        opacity: 1;
        transform: translateY(0);
    }

    .Team_teamMemberCard__6kVMG.Team_featured__G7NDZ {
        border: 2px solid rgba(11, 105, 255, 0.3);
        box-shadow: 0 15px 50px rgba(11, 105, 255, 0.2);
    }

    .Team_teamMemberCard__6kVMG.Team_active__P8jyl {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .Team_teamMemberCard__6kVMG:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }

/* Member Basic Info */
.Team_memberBasicInfo__-RSeu {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

    .Team_memberBasicInfo__-RSeu:hover {
        background: rgba(255, 255, 255, 0.02);
    }

.Team_memberAvatar__fDhqc {
    position: relative;
    flex-shrink: 0;
}

    .Team_memberAvatar__fDhqc img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(11, 105, 255, 0.3);
    }

.Team_featuredBadge__PaUj0 {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: Team_pulse__-ffau 2s infinite;
}

@keyframes Team_pulse__-ffau {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(11, 105, 255, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 4px rgba(11, 105, 255, 0);
    }
}

.Team_memberInfo__iRmsG {
    flex: 1 1;
}

    .Team_memberInfo__iRmsG h3 {
        font-size: 1.4rem;
        color: #ffffff;
        margin: 0 0 0.5rem 0;
        font-weight: 700;
    }

.Team_memberRole__T-msr {
    color: #0b69ff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.Team_memberBio__4uT51 {
    color: #a8b2d1;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.Team_skillTag__3XlQi {
    background: rgba(255, 255, 255, 0.05);
    color: #a8b2d1;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

    .Team_skillTag__3XlQi:hover {
        background: rgba(11, 105, 255, 0.2);
        color: #0b69ff;
        transform: translateY(-2px);
    }

.Team_skillMore__a0d9e {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.Team_expandIcon__D8zFe {
    color: #a8b2d1;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.Team_teamMemberCard__6kVMG.Team_active__P8jyl .Team_expandIcon__D8zFe {
    transform: rotate(180deg);
    color: #0b69ff;
}

/* Expanded Content */
.Team_memberExpandedContent__gVDoT {
    padding: 0 2rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: Team_slideDown__FBO1i 0.3s ease-out;
}

@keyframes Team_slideDown__FBO1i {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.Team_memberSocial__kuw\+j {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.Team_socialLink__aTELj {
    color: #a8b2d1;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

    .Team_socialLink__aTELj:hover {
        color: #0b69ff;
        background: rgba(11, 105, 255, 0.1);
        transform: translateY(-2px);
    }

.Team_fullSkills__gLe3Z {
    margin-bottom: 2rem;
}

    .Team_fullSkills__gLe3Z h4 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

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

.Team_skillTag__3XlQi.Team_full__o7se1 {
    font-size: 0.8rem;
}

/* Member Experience */
.Team_memberExperience__51IHe h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.Team_experienceCard__GCR05 {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #0b69ff;
    transition: all 0.3s ease;
}

    .Team_experienceCard__GCR05:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(5px);
    }

    .Team_experienceCard__GCR05[data-type="leadership"] {
        border-left-color: #ffd166;
    }

    .Team_experienceCard__GCR05[data-type="full-time"] {
        border-left-color: #06d6a0;
    }

    .Team_experienceCard__GCR05[data-type="part-time"] {
        border-left-color: #118ab2;
    }

.Team_experienceHeader__A2fTV {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.Team_experienceMain__x4CuP h5 {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0 0 0.3rem 0;
    font-weight: 600;
}

.Team_experienceMain__x4CuP h6 {
    font-size: 0.9rem;
    color: #0b69ff;
    margin: 0;
    font-weight: 500;
}

.Team_experienceMeta__6PaPU {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: right;
}

.Team_period__2193e {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.Team_location__9s9Xr {
    color: #a8b2d1;
    font-size: 0.8rem;
}

.Team_technologiesUsed__HfvhC {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.Team_techBadge__JvyyB {
    background: rgba(255, 255, 255, 0.05);
    color: #a8b2d1;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.Team_responsibilities__s1FU6 li {
    color: #a8b2d1;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

    .Team_responsibilities__s1FU6 li::before {
        content: "▸";
        color: #0b69ff;
        position: absolute;
        left: 0;
        font-weight: bold;
    }

/* ===== Team Technology Stack ===== */
.Team_teamTechStack__Le55n {
    margin-bottom: 80px;
}

.Team_sectionSubtitle__KPAtn {
    text-align: center;
    color: #a8b2d1;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.Team_techStackGrid__Y\+fpz {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.Team_techCard__FiimP {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

    .Team_techCard__FiimP.Team_inView__IrtF1 {
        opacity: 1;
        transform: translateY(0);
    }

    .Team_techCard__FiimP:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

.Team_techCategoryHeader__1GGKP {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.Team_techCategoryIcon__Xy6Ej {
    font-size: 2rem;
    color: #0b69ff;
}

.Team_techCategoryHeader__1GGKP h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

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

.Team_techItem__eDvVF {
    background: rgba(255, 255, 255, 0.05);
    color: #a8b2d1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

    .Team_techItem__eDvVF:hover {
        background: rgba(11, 105, 255, 0.2);
        color: #0b69ff;
        transform: translateY(-2px);
    }

/* ===== CTA Section ===== */
.Team_teamCta__vwjmg {
    background: linear-gradient(135deg, rgba(11, 105, 255, 0.1), rgba(139, 92, 246, 0.1));
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.Team_ctaContent__6GVcz h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.Team_ctaContent__6GVcz p {
    color: #a8b2d1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.Team_btn__MRs09 {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.Team_btnPrimary__jp7b2 {
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    color: white;
}

    .Team_btnPrimary__jp7b2:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(11, 105, 255, 0.3);
    }

.Team_btnSecondary__rF57b {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .Team_btnSecondary__rF57b:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

/* ===== View Portfolio Button ===== */
.Team_viewPortfolioBtn__86ypU {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
    padding: 0.7rem 1.4rem;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

    .Team_viewPortfolioBtn__86ypU:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(11, 105, 255, 0.4);
    }

    .Team_viewPortfolioBtn__86ypU:active {
        transform: translateY(-1px);
    }

.Team_viewPortfolioIcon__c2RUw {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.Team_viewPortfolioBtn__86ypU:hover .Team_viewPortfolioIcon__c2RUw {
    transform: translateX(4px);
}

/* ===== Portfolio Modal Overlay ===== */
.Team_portfolioOverlay__YBTwu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: Team_overlayFadeIn__SCooO 0.3s ease-out;
}

@keyframes Team_overlayFadeIn__SCooO {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.Team_portfolioModal__ucdNY {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: linear-gradient(145deg, #1a1b23, #15161d);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    overflow-x: hidden;
    animation: Team_modalAppear__89UXw 0.4s ease-out;
}

    .Team_portfolioModal__ucdNY::-webkit-scrollbar {
        width: 6px;
    }

    .Team_portfolioModal__ucdNY::-webkit-scrollbar-track {
        background: transparent;
    }

    .Team_portfolioModal__ucdNY::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 3px;
    }

        .Team_portfolioModal__ucdNY::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.25);
        }

@keyframes Team_modalAppear__89UXw {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Portfolio Floating Elements */
.Team_portfolioFloatingContainer__-rKpm {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.Team_portfolioFloatingElement__RzvJ9 {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    animation: Team_portfolioFloat__QPUaQ 6s ease-in-out infinite;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

    .Team_portfolioFloatingElement__RzvJ9:hover {
        opacity: 1;
    }

@keyframes Team_portfolioFloat__QPUaQ {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(2deg);
    }

    50% {
        transform: translateY(-8px) rotate(-1deg);
    }

    75% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.Team_portfolioFloatingIcon__bBr0R {
    color: #0b69ff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.Team_portfolioFloatingText__zaiGl {
    color: #a8b2d1;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Portfolio Header */
.Team_portfolioHeader__IOEHA {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(11, 105, 255, 0.05), rgba(139, 92, 246, 0.05));
}

.Team_portfolioHeaderContent__NeYX- {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.Team_portfolioMemberAvatar__ZnICb {
    position: relative;
    flex-shrink: 0;
}

    .Team_portfolioMemberAvatar__ZnICb img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid rgba(11, 105, 255, 0.3);
        box-shadow: 0 10px 30px rgba(11, 105, 255, 0.2);
    }

.Team_portfolioFeaturedBadge__rmDnZ {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #0b69ff, #8b5cf6);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: Team_pulse__-ffau 2s infinite;
}

.Team_portfolioMemberInfo__hXNub {
    flex: 1 1;
}

    .Team_portfolioMemberInfo__hXNub h2 {
        font-size: 2rem;
        color: #ffffff;
        margin: 0 0 0.5rem 0;
        font-weight: 800;
    }

.Team_portfolioMemberRole__4bMIR {
    color: #0b69ff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.8rem 0;
}

.Team_portfolioMemberBio__EA9HV {
    color: #a8b2d1;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

.Team_portfolioCloseBtn__WiFZc {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #a8b2d1;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .Team_portfolioCloseBtn__WiFZc:hover {
        background: rgba(255, 75, 75, 0.2);
        border-color: rgba(255, 75, 75, 0.3);
        color: #ff4b4b;
        transform: rotate(90deg);
    }

/* Portfolio Body */
.Team_portfolioBody__Xum0H {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
}

/* Portfolio Social */
.Team_portfolioSocial__0zqOk {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .Team_portfolioSocial__0zqOk h4 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

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

.Team_portfolioSocialLink__XZi6Y {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #a8b2d1;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .Team_portfolioSocialLink__XZi6Y:hover {
        background: rgba(11, 105, 255, 0.15);
        border-color: rgba(11, 105, 255, 0.3);
        color: #0b69ff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(11, 105, 255, 0.2);
    }

/* Portfolio Skills */
.Team_portfolioSkills__-khpd {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .Team_portfolioSkills__-khpd h4 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

.Team_portfolioSkillsGrid__JMDuw {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.Team_portfolioSkillTag__So85H {
    background: linear-gradient(135deg, rgba(11, 105, 255, 0.15), rgba(139, 92, 246, 0.15));
    color: #c8d0e0;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(11, 105, 255, 0.2);
    transition: all 0.3s ease;
}

    .Team_portfolioSkillTag__So85H:hover {
        background: linear-gradient(135deg, rgba(11, 105, 255, 0.3), rgba(139, 92, 246, 0.3));
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(11, 105, 255, 0.2);
    }

/* Portfolio Experience */
.Team_portfolioExperience__-U5o2 h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.Team_portfolioExperienceHeader__J39Wy {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.Team_portfolioExperienceIcon__C-qZT {
    color: #0b69ff;
    font-size: 1.3rem;
}

.Team_portfolioExperienceHeader__J39Wy h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

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

.Team_portfolioExperienceCard__8atwy {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #0b69ff;
    transition: all 0.3s ease;
    overflow: hidden;
}

    .Team_portfolioExperienceCard__8atwy:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .Team_portfolioExperienceCard__8atwy[data-type="leadership"] {
        border-left-color: #ffd166;
    }

    .Team_portfolioExperienceCard__8atwy[data-type="full-time"] {
        border-left-color: #06d6a0;
    }

    .Team_portfolioExperienceCard__8atwy[data-type="part-time"] {
        border-left-color: #118ab2;
    }

    .Team_portfolioExperienceCard__8atwy.Team_expanded__K5ILC {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

.Team_portfolioExperienceSummary__XTBAT {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .Team_portfolioExperienceSummary__XTBAT:hover {
        background: rgba(255, 255, 255, 0.05);
    }

.Team_portfolioExperienceMainInfo__\+ezgH h5 {
    font-size: 1rem;
    color: #ffffff;
    margin: 0 0 0.3rem 0;
    font-weight: 600;
}

.Team_portfolioExperienceMainInfo__\+ezgH h6 {
    font-size: 0.9rem;
    color: #0b69ff;
    margin: 0 0 0.8rem 0;
    font-weight: 500;
}

.Team_portfolioExperienceTechnologies__xBNo- {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.Team_portfolioTechBadge__9NNka {
    background: rgba(255, 255, 255, 0.05);
    color: #a8b2d1;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

    .Team_portfolioTechBadge__9NNka:hover {
        background: rgba(11, 105, 255, 0.2);
        color: #0b69ff;
    }

    .Team_portfolioTechBadge__9NNka.Team_detailed__C0bgH {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
    }

.Team_portfolioTechMore__XX9ze {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.Team_portfolioExperienceMeta__HCaTf {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    min-width: 120px;
}

.Team_portfolioPeriod__4eXiw {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.Team_portfolioLocation__\+zgVK {
    color: #a8b2d1;
    font-size: 0.8rem;
    white-space: nowrap;
}

.Team_portfolioExperienceToggle__cq9QV {
    color: #a8b2d1;
    font-size: 1rem;
    transition: transform 0.3s ease;
    padding: 0.3rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.Team_portfolioExperienceCard__8atwy.Team_expanded__K5ILC .Team_portfolioExperienceToggle__cq9QV {
    transform: rotate(180deg);
    color: #0b69ff;
}

/* Portfolio Experience Details */
.Team_portfolioExperienceDetails__npB\+2 {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: Team_slideDown__FBO1i 0.3s ease-out;
}

.Team_portfolioTechnologiesUsed__qEJUg {
    margin-bottom: 1.5rem;
}

    .Team_portfolioTechnologiesUsed__qEJUg strong {
        color: #ffffff;
        font-size: 0.9rem;
        display: block;
        margin-bottom: 0.8rem;
    }

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

.Team_portfolioResponsibilities__xJNxA strong {
    color: #ffffff;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.8rem;
}

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

.Team_portfolioResponsibilities__xJNxA li {
    color: #a8b2d1;
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

    .Team_portfolioResponsibilities__xJNxA li::before {
        content: "▸";
        color: #0b69ff;
        position: absolute;
        left: 0;
        font-weight: bold;
    }

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .Team_teamPage__brOoM {
        padding: 80px 0;
    }

    .Team_teamTitle__ktIR9 {
        font-size: 2.5rem;
    }

    .Team_teamSubtitle__uxu5G {
        font-size: 1.1rem;
    }

    .Team_teamMembersGrid__\+nQoL {
        grid-template-columns: 1fr;
    }

    .Team_memberBasicInfo__-RSeu {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .Team_memberExpandedContent__gVDoT {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .Team_experienceHeader__A2fTV {
        flex-direction: column;
        text-align: left;
    }

    .Team_experienceMeta__6PaPU {
        text-align: left;
    }

    .Team_techStackGrid__Y\+fpz {
        grid-template-columns: 1fr;
    }

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

    .Team_btn__MRs09 {
        width: 200px;
    }

        /* Portfolio Modal responsive */
    .Team_portfolioOverlay__YBTwu {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .Team_portfolioModal__ucdNY {
        max-height: 85vh;
        border-radius: 16px;
    }

    .Team_portfolioHeader__IOEHA {
        padding: 1.5rem;
    }

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

    .Team_portfolioMemberAvatar__ZnICb img {
        width: 90px;
        height: 90px;
    }

    .Team_portfolioMemberInfo__hXNub h2 {
        font-size: 1.5rem;
    }

    .Team_portfolioCloseBtn__WiFZc {
        position: relative;
        top: auto;
        right: auto;
        align-self: flex-end;
    }

    .Team_portfolioBody__Xum0H {
        padding: 1.5rem;
    }

    .Team_portfolioSocialLinks__Z4Xa5 {
        justify-content: center;
    }

    .Team_portfolioExperienceSummary__XTBAT {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .Team_portfolioExperienceMeta__HCaTf {
        align-items: flex-start;
        min-width: auto;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    .Team_portfolioFloatingElement__RzvJ9 {
        display: none;
    }
}

@media (max-width: 480px) {
    .Team_teamHeader__HBC47 {
        margin-bottom: 60px;
    }

    .Team_teamTitle__ktIR9 {
        font-size: 2rem;
    }

    .Team_sectionTitle__hD4mi {
        font-size: 2rem;
    }

    .Team_memberAvatar__fDhqc img {
        width: 70px;
        height: 70px;
    }

    /* Modal 480px */
    .Team_portfolioOverlay__YBTwu {
        padding: 0;
        align-items: flex-start;
        padding-top: 10px;
    }

    .Team_portfolioModal__ucdNY {
        max-height: 90vh;
        border-radius: 12px;
    }

    .Team_portfolioHeader__IOEHA {
        padding: 1.2rem;
    }

    .Team_portfolioBody__Xum0H {
        padding: 1.2rem;
    }
}

/* Experience Header Section */
.Team_experienceHeaderSection__bcq3E {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.Team_experienceIcon__hdcXk {
    color: #0b69ff;
    font-size: 1.3rem;
}

.Team_experienceHeaderSection__bcq3E h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

/* Experience Summary */
.Team_experienceSummary__2KsgL {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .Team_experienceSummary__2KsgL:hover {
        background: rgba(255, 255, 255, 0.05);
    }

.Team_experienceMainInfo__BfrHV h5 {
    font-size: 1rem;
    color: #ffffff;
    margin: 0 0 0.3rem 0;
    font-weight: 600;
}

.Team_experienceMainInfo__BfrHV h6 {
    font-size: 0.9rem;
    color: #0b69ff;
    margin: 0 0 0.8rem 0;
    font-weight: 500;
}

.Team_experienceTechnologies__2ahcm {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.Team_techBadge__JvyyB {
    background: rgba(255, 255, 255, 0.05);
    color: #a8b2d1;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

    .Team_techBadge__JvyyB:hover {
        background: rgba(11, 105, 255, 0.2);
        color: #0b69ff;
    }

    .Team_techBadge__JvyyB.Team_detailed__C0bgH {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
    }

.Team_techMore__hmoc4 {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.Team_experienceMeta__6PaPU {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    min-width: 120px;
}

.Team_period__2193e {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.Team_location__9s9Xr {
    color: #a8b2d1;
    font-size: 0.8rem;
    white-space: nowrap;
}

.Team_experienceToggle__5Tjr7 {
    color: #a8b2d1;
    font-size: 1rem;
    transition: transform 0.3s ease;
    padding: 0.3rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.Team_experienceCard__GCR05.Team_expanded__K5ILC .Team_experienceToggle__5Tjr7 {
    transform: rotate(180deg);
    color: #0b69ff;
}

/* Experience Details */
.Team_experienceDetails__EWLbN {
    padding: 1.5rem 1rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: Team_slideDown__FBO1i 0.3s ease-out;
}

@keyframes Team_slideDown__FBO1i {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.Team_technologiesUsed__HfvhC {
    margin-bottom: 1.5rem;
}

    .Team_technologiesUsed__HfvhC strong {
        color: #ffffff;
        font-size: 0.9rem;
        display: block;
        margin-bottom: 0.8rem;
    }

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

.Team_responsibilities__s1FU6 strong {
    color: #ffffff;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.8rem;
}

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

.Team_responsibilities__s1FU6 li {
    color: #a8b2d1;
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

    .Team_responsibilities__s1FU6 li::before {
        content: "▸";
        color: #0b69ff;
        position: absolute;
        left: 0;
        font-weight: bold;
    }

/* Enhanced Experience Card */
.Team_experienceCard__GCR05 {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #0b69ff;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    overflow: hidden;
}

    .Team_experienceCard__GCR05:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .Team_experienceCard__GCR05[data-type="leadership"] {
        border-left-color: #ffd166;
    }

    .Team_experienceCard__GCR05[data-type="full-time"] {
        border-left-color: #06d6a0;
    }

    .Team_experienceCard__GCR05[data-type="part-time"] {
        border-left-color: #118ab2;
    }

    .Team_experienceCard__GCR05.Team_expanded__K5ILC {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

/* Responsive adjustments for experience section */
@media (max-width: 768px) {
    .Team_experienceSummary__2KsgL {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .Team_experienceMeta__6PaPU {
        align-items: flex-start;
        min-width: auto;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    .Team_experienceToggle__5Tjr7 {
        align-self: flex-end;
    }

    .Team_technologiesList__lEQda {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .Team_experienceTechnologies__2ahcm {
        justify-content: flex-start;
    }

    .Team_experienceMeta__6PaPU {
        flex-direction: column;
        gap: 0.5rem;
    }

    .Team_experienceToggle__5Tjr7 {
        align-self: flex-start;
    }
}

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




/* basic resets */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #111;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* utility container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px;
}

.section {
    padding: 80px 0;
}

/* buttons */
.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
}

    .btn.primary {
        background: #0b69ff;
        color: white;
        border-color: #0b69ff;
    }

    .btn.ghost {
        background: transparent;
        color: white;
        border-color: rgba(255,255,255,0.3);
    }

/* content cards */
.cards {
    display: flex;
    gap: 18px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.card {
    flex: 1 1 220px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(16,22,26,0.06);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    gap: 20px;
    margin-top: 18px;
}

/* form */
.contact-form {
    display: grid;
    grid-gap: 12px;
    gap: 12px;
    max-width: 700px;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px 14px;
        border-radius: 8px;
        border: 1px solid #ddd;
        font-size: 15px;
    }

