:root {
    --primary-blue: #0066FF;
    --dark: #000000;
    --white: #FFFFFF;
    --neutral-100: #f5f7fb;
    --neutral-300: #e5e7eb;
    --neutral-500: #6b7280;
    --neutral-700: #374151;
    --neutral-900: #0f172a;
    --brand-item-w: 200px;
    --brand-item-h: 100px;
    --marquee-pps: 140;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    overflow-x: hidden;
    color: var(--neutral-900);
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 3rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 3rem;
    background: rgba(0, 0, 0, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

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

.logo img {
    height: 60px; /* Set a default height for desktop */
    width: auto;  /* Let width adjust to maintain aspect ratio */
    border-radius: 8px;
    object-fit: contain; /* Use 'contain' to ensure the entire logo is visible */
    margin-right: 0.5rem;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

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

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    list-style: none;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
    min-width: 200px;
}

.mobile-nav-links a:hover {
    color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
.hero-section {
    height: 100vh;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.hero-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--white);
    opacity: 0.9;
    padding: 0 1rem;
}
.neural-container {
    position: absolute;
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(300px, 50vw, 600px);
    height: clamp(300px, 50vw, 600px);
}

.neural-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: visible;
}

.circle-main {
    position: absolute;
    width: 85%;
    height: 85%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 102, 255, 0.8) 0%, rgba(0, 102, 255, 0.6) 30%, rgba(0, 68, 204, 0.4) 60%, rgba(0, 51, 153, 0.2) 100%);
    box-shadow: 0 0 100px rgba(0, 102, 255, 0.5), inset 0 0 80px rgba(0, 102, 255, 0.3), 0 0 200px rgba(0, 102, 255, 0.2);
    animation: pulse 4s ease-in-out infinite;
}

.outer-ring {
    position: absolute;
    width: 95%;
    height: 95%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary-blue);
    border-right-color: var(--primary-blue);
    opacity: 0.6;
    animation: rotate 20s linear infinite;
}

.outer-ring-2 {
    width: 90%;
    height: 90%;
    border-top-color: rgba(0, 102, 255, 0.4);
    border-left-color: rgba(0, 102, 255, 0.4);
    animation: rotate-reverse 15s linear infinite;
}

.energy-wave {
    position: absolute;
    width: 85%;
    height: 85%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 102, 255, 0.3);
    animation: expand 4s ease-out infinite;
}

.energy-wave:nth-child(2) {
    animation-delay: 1s;
}

.energy-wave:nth-child(3) {
    animation-delay: 2s;
}

.glowing-core {
    position: absolute;
    width: clamp(75px, 15vw, 150px);
    height: clamp(75px, 15vw, 150px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 102, 255, 0.8) 0%, rgba(0, 102, 255, 0.4) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: core-glow 3s ease-in-out infinite;
}

.neural-network,
.particle-field,
.texture-overlay,
.grid-overlay {
    position: absolute;
    width: 85%;
    height: 85%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.neural-network {
    display: flex;
    justify-content: center;
    align-items: center;
}

.particle-field {
    border-radius: 50%;
    overflow: hidden;
}

.texture-overlay {
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
    filter: blur(1px);
}

.grid-overlay {
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.1;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: grid-move 20s linear infinite;
}

.neural-node {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(0, 102, 255, 0.6);
    animation: node-pulse 3s ease-in-out infinite;
}

.neural-node.center {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, var(--primary-blue) 0%, rgba(0, 102, 255, 0.6) 100%);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.9), 0 0 60px rgba(0, 102, 255, 0.6);
}

.neural-connection {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    transform-origin: 0 0;
    z-index: 1;
    height: 2px;
    animation: connection-glow 4s ease-in-out infinite;
}

.orbit-container {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 30s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.field-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-random 10s linear infinite;
}

.mouse-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.video-section {
    height: 100vh;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.8) translateY(100px);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    background: #000;
}

.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-container:hover .video-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.play-button-wrapper {
    position: relative;
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: clamp(60px, 12vw, 90px);
    height: clamp(60px, 12vw, 90px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.play-button::before,
.play-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: play-pulse 2s ease-in-out infinite;
}

.play-button::after {
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.2);
    animation-delay: 0.3s;
}

.video-container:hover .play-button {
    transform: scale(1.1);
    background: var(--primary-blue);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.6);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: clamp(20px, 4vw, 30px) solid #000;
    border-top: clamp(10px, 2vw, 15px) solid transparent;
    border-bottom: clamp(10px, 2vw, 15px) solid transparent;
    transition: all 0.3s ease;
}

.video-container:hover .play-icon {
    border-left-color: #fff;
}
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    max-height: calc(100vh - 40px);
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.modal-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: flex-end;
    z-index: 10;
}

.modal-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.modal-video-wrapper iframe,
.modal-video-wrapper video {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 100px);
    object-fit: contain;
    border: none;
}

.close-modal {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.close-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.brands-section {
    height: var(--brand-item-h);
    background: #f8f9fa;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: filter 0.3s ease;
}

.brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: marquee-x linear infinite;
}

.brand-item {
    flex: 0 0 auto;
    width: var(--brand-item-w);
    height: var(--brand-item-h);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-item span {
    font-size: 16px;
}
.projects-section {
    padding: 110px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.035) 1px, transparent 1px) 0 0 / 80px 100%,
        radial-gradient(circle at 20% 15%, rgba(0, 0, 0, 0.04), transparent 45%),
        radial-gradient(circle at 80% 85%, rgba(0, 0, 0, 0.03), transparent 45%);
    pointer-events: none;
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
    position: relative;
    z-index: 1;
}

.projects-grid {
    --gap: clamp(16px, 3vw, 28px);
    --feature-h: clamp(260px, 40vw, 560px);
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--gap);
    perspective: 1400px;
}

.feature {
    grid-column: 1 / span 7;
}

.feature .project-item {
    height: var(--feature-h);
}

.stack {
    grid-column: 8 / span 5;
    display: grid;
    gap: var(--gap);
}

.stack .project-item {
    height: calc((var(--feature-h) - var(--gap)) / 2);
}

.project-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--neutral-300);
    transform-style: preserve-3d;
    transition: transform .25s ease, border-color .25s ease;
    cursor: pointer;
    outline: none;
}

.project-media {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: gentleFloat 8s ease-in-out infinite;
}

.project-item:hover .project-media {
    animation-play-state: paused;
}

.project-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0px);
}

.project-item:hover .project-image {
    transform: translateZ(0px) scale(1.06);
}

.project-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0) 35%);
    opacity: 0;
    transition: opacity .25s ease;
    transform: translateZ(120px);
    mix-blend-mode: screen;
    z-index: 4;
}

.project-item:hover .project-shine {
    opacity: .40;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(40, 40, 44, 0.35);
    backdrop-filter: blur(0px);
    opacity: 0;
    transition: opacity 1.5s ease, backdrop-filter 1.5s ease, background-color 1.5s ease;
    transform: translateZ(80px);
    z-index: 3;
    pointer-events: none;
}

.project-item:hover .project-overlay,
.project-item.is-playing .project-overlay {
    opacity: 1;
    backdrop-filter: blur(4px);
    background-color: rgba(36, 36, 40, 0.45);
}

.reveal-stripes {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(var(--stripes, 6), 1fr);
    gap: 6px;
    z-index: 10;
    pointer-events: none;
}

.reveal-stripe {
    background: #ffffff;
    transform-origin: top;
    transform: scaleY(1);
}

.project-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, .9), transparent);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: translateZ(80px);
    z-index: 20;
}

.project-name h3 {
    color: #fff;
    font-weight: 800;
    letter-spacing: .2px;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    margin: 0;
}

.project-name h3 .char {
    display: inline-block;
    transform: translateY(14px) rotateX(25deg);
    opacity: 0;
}

.ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 600ms ease-out forwards;
    z-index: 12;
    pointer-events: none;
}

.more-projects-container {
    text-align: center;
    margin-top: clamp(48px, 8vw, 80px);
}

.more-projects-btn {
    position: relative;
    padding: 16px 44px;
    background: #ffffff;
    color: #111;
    border: 2px solid #111;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .12s ease;
}

.more-projects-btn::after {
    content: '';
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -30%;
    width: 60%;
    background: linear-gradient(115deg, rgba(255, 255, 255, .0) 0%, rgba(255, 255, 255, .35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-140%) rotate(12deg);
    transition: transform .6s ease;
    pointer-events: none;
}

.more-projects-btn:hover,
.more-projects-btn.is-tap {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    transform: translateY(-1px);
}

.more-projects-btn:hover::after,
.more-projects-btn.is-tap::after {
    transform: translateX(220%) rotate(12deg);
}

.more-projects-btn:active {
    transform: translateY(0);
}
.about-section {
    padding: clamp(40px, 8vw, 60px) 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.about-bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.5;
    z-index: 1;
}

.mesh-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    opacity: 0.3;
}

.mesh-line.horizontal {
    width: 100%;
    height: 1px;
    animation: mesh-horizontal 20s linear infinite;
}

.mesh-line.vertical {
    width: 1px;
    height: 100%;
    animation: mesh-vertical 15s linear infinite;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 40px);
    position: relative;
    z-index: 10;
}

.about-logo-container {
    perspective: 1000px;
    margin: 0 auto clamp(30px, 5vw, 50px);
    width: clamp(120px, 15vw, 150px);
    height: clamp(120px, 15vw, 150px);
}

.about-logo-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: logo-rotate-professional 15s linear infinite;
}

.about-logo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: clamp(15px, 2vw, 20px);
    transform: translateZ(30px);
    border: 2px solid rgba(0, 102, 255, 0.3);
}

.logo-glow {
    display: none;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0.3em;
    flex-wrap: wrap;
}

.title-word {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-blue), #00d4ff, var(--primary-blue));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease-in-out infinite, title-bounce 0.6s ease-out;
    animation-delay: calc(var(--word-index, 0) * 0.1s);
}

.title-word:nth-child(1) {
    --word-index: 0;
}

.title-word:nth-child(2) {
    --word-index: 1;
}

.title-word:nth-child(3) {
    --word-index: 2;
}

.about-subtitle {
    font-size: clamp(0.875rem, 1.8vw, 1.125rem);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(40px, 8vw, 60px);
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 0.3em;
}

.subtitle-line {
    display: block;
    opacity: 0;
    animation: subtitle-slide 0.8s ease-out forwards;
    animation-delay: calc(var(--line-index, 0) * 0.15s);
}

.subtitle-line:nth-child(1) {
    --line-index: 0;
}

.subtitle-line:nth-child(2) {
    --line-index: 1;
}

.subtitle-line:nth-child(3) {
    --line-index: 2;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 60px);
    margin-bottom: 0;
    align-items: center;
}

.about-text-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.8;
}

.text-animate {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.text-line {
    display: block;
    opacity: 0;
    transform: translateX(-30px);
    animation: text-slide-in 0.6s ease-out forwards;
    animation-delay: calc(var(--delay) + var(--line-index, 0) * 0.05s);
}

.text-line:nth-child(1) {
    --line-index: 0;
}

.text-line:nth-child(2) {
    --line-index: 1;
}

.text-line:nth-child(3) {
    --line-index: 2;
}

.text-line:nth-child(4) {
    --line-index: 3;
}

.text-line:nth-child(5) {
    --line-index: 4;
}

.about-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.about-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float 20s linear infinite;
}
.process-flow-container {
    position: relative;
    width: 100%;
    height: clamp(400px, 60vh, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 4vw, 40px) 0;
}


.process-circle-wrapper {
    position: relative;
    width: clamp(300px, 50vw, 500px);
    height: clamp(300px, 50vw, 500px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-circle-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.process-progress-circle {
    transition: stroke-dashoffset 0.5s ease;
}

.process-center-content {
    position: relative;
    text-align: center;
    z-index: 10;
    padding: 20px;
    max-width: 200px;
}

.process-active-title {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: white;
    margin-bottom: 10px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.process-active-title.visible {
    opacity: 1;
    transform: scale(1);
}

.process-active-description {
    font-size: clamp(0.775rem, 1.4vw, 0.9rem);
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.process-active-description.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-items-circular {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.process-item-circular {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.process-dot {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    background: rgba(0, 102, 255, 0.1);
    border: 3px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
}

.process-item-circular.active .process-dot {
    background: linear-gradient(135deg, var(--primary-blue), #00d4ff);
    border-color: transparent;
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.6);
}

.process-dot::before {
    content: attr(data-number);
    position: absolute;
    color: white;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.process-info {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 250px;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 20;
}


.process-info .process-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.process-info h4 {
    color: white;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 8px;
}

.process-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5;
}

.process-item-circular[data-angle="270"] .process-info {
    top: -120px;
    left: 50%;
    transform-origin: bottom center;
}

.process-item-circular[data-angle="342"] .process-info {
    top: -100px;
    left: 80px;
}

.process-item-circular[data-angle="54"] .process-info {
    top: -100px;
    right: 80px;
    left: auto;
}

.process-item-circular[data-angle="126"] .process-info {
    bottom: -120px;
    right: 80px;
    top: auto;
    left: auto;
}

.process-item-circular[data-angle="198"] .process-info {
    bottom: -120px;
    left: 80px;
    top: auto;
}

/* COMBINED STATS & TESTIMONIALS SECTION */
.stats-testimonials-section {
    padding: clamp(80px, 12vw, 120px) 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.stats-testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 40px);
    position: relative;
}

.showcase-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 60px);
}

.showcase-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: transparent;
    background: linear-gradient(45deg, var(--primary-blue), #00d4ff, var(--primary-blue));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    margin-bottom: 0.75rem;
}

.showcase-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
}

.showcase-wrapper {
    position: relative;
    height: clamp(300px, 50vh, 400px);
    perspective: 1000px;
}

.showcase-display {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 60px);
    align-items: center;
}

.showcase-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item.active {
    opacity: 1;
    transform: translateY(0);
}

.stat-showcase {
    text-align: center;
    position: relative;
}

/* New Statistical Dashboard Style */
.stat-container {
    max-width: 280px;
    margin: 0 auto;
    position: relative;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 20px;
    padding: clamp(30px, 5vw, 40px);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: stat-shine 3s ease-in-out infinite;
}

.stat-icon {
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-blue), #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-blue), #00d4ff);
    border-radius: 12px;
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
}

.stat-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.stat-value::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.stat-label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.75rem;
}

.stat-progress {
    margin-top: 1.5rem;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.stat-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), #00d4ff);
    border-radius: 3px;
    width: 0%;
    transition: width 2s ease-out;
    position: relative;
    overflow: hidden;
}

.stat-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shine 2s linear infinite;
}

.testimonial-showcase {
    position: relative;
    padding: clamp(25px, 5vw, 35px);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.testimonial-quote {
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-blue);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-size: clamp(0.9rem, 1.8vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: clamp(40px, 6vw, 48px);
    height: clamp(40px, 6vw, 48px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.author-info h4 {
    color: white;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    margin-bottom: 0.125rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
}

.showcase-progress {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-blue);
}

.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.float-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(0, 102, 255, 0.6);
    border-radius: 50%;
    animation: float-diagonal 15s linear infinite;
}

@keyframes stat-shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

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

.contact-section {
    padding: clamp(60px, 12vw, 100px) 0;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 30px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-blue);
}

.submit-btn {
    padding: 15px 50px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: float-up 10s linear infinite;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {
    border-radius: 8px;
    object-fit: cover;
}
@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotate-reverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes expand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes grid-move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 20px;
    }
}

@keyframes node-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

@keyframes connection-glow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes float-random {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    10% {
        transform: translate(10px, -20px) scale(1);
        opacity: 1;
    }

    90% {
        transform: translate(-100px, -300px) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-150px, -400px) scale(0);
        opacity: 0;
    }
}

@keyframes core-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.9;
    }
}

@keyframes play-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes marquee-x {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * var(--marquee-distance, 0px)));
    }
}

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(26);
        opacity: 0;
    }
}

@keyframes mesh-horizontal {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100vh);
    }
}

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

    100% {
        transform: translateX(100vw);
    }
}

@keyframes logo-rotate-professional {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

@keyframes gradient-shift {

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

    50% {
        background-position: 100% 50%;
    }
}

@keyframes title-bounce {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes subtitle-slide {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes text-slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

@keyframes float-diagonal {
    0% {
        transform: translate(0, 100vh);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translate(100vw, -100vh);
        opacity: 0;
    }
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }

    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}
@media (max-width: 1100px) {
    .projects-grid {
        --feature-h: clamp(380px, 50vw, 520px);
    }

    .feature {
        grid-column: 1 / span 12;
    }

    .stack {
        grid-column: 1 / span 12;
        grid-template-columns: 1fr 1fr;
    }

    .stack .project-item {
        height: clamp(260px, 28vw, 340px);
    }
}

@media (max-width: 768px) {

    .navbar,
    .navbar.scrolled {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .process-flow-container {
        height: clamp(350px, 60vw, 450px);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo img {
        height: 48px;
    }

    .mobile-nav-links a {
        font-size: 1.25rem;
        min-width: 180px;
    }

    .neural-container {
        bottom: -150px;
    }

    .projects-section {
        padding: 80px 0;
    }

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

    .feature .project-item,
    .stack .project-item {
        height: clamp(260px, 56vw, 380px);
    }

    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .process-circle-wrapper {
        width: clamp(280px, 80vw, 400px);
        height: clamp(280px, 80vw, 400px);
    }

    .process-info {
        min-width: 200px;
        padding: 15px;
        font-size: 0.9em;
    }

    .process-dot {
        width: clamp(40px, 8vw, 60px);
        height: clamp(40px, 8vw, 60px);
    }

    .process-center-content {
        max-width: 150px;
    }

    .process-float,
    .about-particles {
        display: none;
    }

    .showcase-display {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .showcase-wrapper {
        height: auto;
    }

    .stat-showcase {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {

    .navbar,
    .navbar.scrolled {
        padding: 0.75rem 1rem;
    }

    .hero-container {
        bottom: -100px;
    }
}
/* Stats & Testimonials Responsive Styles */

@media (max-width: 1024px) {
    /* Stats & Testimonials */
    .showcase-display {
        gap: clamp(20px, 4vw, 40px);
    }
    
    .stat-card {
        padding: clamp(25px, 4vw, 35px);
    }
}

@media (max-width: 768px) {
    /* Stats & Testimonials Section */
    .stats-testimonials-section {
        padding: clamp(60px, 10vw, 80px) 0;
    }
    
    .showcase-header {
        margin-bottom: 40px;
    }
    
    .showcase-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .showcase-subtitle {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
    }
    
    .showcase-wrapper {
        height: auto;
        min-height: 500px;
    }
    
    .showcase-display {
        grid-template-columns: 1fr;
        gap: 30px;
        position: relative;
        height: auto;
    }
    
    .stat-showcase {
        margin-bottom: 30px;
    }
    
    .stat-container {
        max-width: 100%;
    }
    
    .stat-card {
        padding: 30px 25px;
    }
    
    .stat-value {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .stat-label {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
    }
    
    .testimonial-showcase {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: clamp(0.9rem, 2.5vw, 1.125rem);
        margin-bottom: 1.25rem;
    }
    
    .quote-mark {
        font-size: 2rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    .showcase-progress {
        bottom: -20px;
    }
    
    /* Disable particles on mobile for performance */
    .floating-particles {
        display: none;
    }
}

@media (max-width: 576px) {
    /* Stats & Testimonials */
    .stats-testimonials-section {
        padding: 50px 0;
    }
    
    .showcase-container {
        padding: 0 1rem;
    }
    
    .showcase-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-value {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .testimonial-showcase {
        padding: 20px 16px;
    }
    
    .testimonial-text {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

/* Touch device optimizations for stats section */
@media (hover: none) and (pointer: coarse) {
    .progress-dot {
        width: 12px;
        height: 12px;
        margin: 0 4px;
    }
    
    .progress-dot.active {
        width: 28px;
    }
}

/* Landscape mobile adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .stats-testimonials-section {
        padding: 40px 0;
    }
    
    .showcase-wrapper {
        min-height: 400px;
    }
    
    .showcase-display {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-showcase {
        margin-bottom: 0;
    }
}
.contact-section {
    padding: clamp(60px, 12vw, 100px) 0;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-bg-animation {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float-shape 20s infinite ease-in-out;
}

.shape.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-blue);
}

.shape.square {
    width: 60px;
    height: 60px;
    background: #00d4ff;
    transform: rotate(45deg);
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--primary-blue);
}

.shape.hexagon {
    width: 60px;
    height: 33px;
    background: #00d4ff;
    position: relative;
}

.shape.hexagon:before,
.shape.hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
}

.shape.hexagon:before {
    bottom: 100%;
    border-bottom: 17px solid #00d4ff;
}

.shape.hexagon:after {
    top: 100%;
    border-top: 17px solid #00d4ff;
}

.shape:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.shape:nth-child(2) { left: 70%; top: 10%; animation-delay: 2s; animation-duration: 25s; }
.shape:nth-child(3) { left: 30%; top: 60%; animation-delay: 4s; }
.shape:nth-child(4) { left: 80%; top: 70%; animation-delay: 6s; animation-duration: 22s; }
.shape:nth-child(5) { left: 50%; top: 30%; animation-delay: 8s; }
.shape:nth-child(6) { left: 20%; top: 80%; animation-delay: 10s; animation-duration: 18s; }
.shape:nth-child(7) { left: 90%; top: 40%; animation-delay: 12s; }
.shape:nth-child(8) { left: 40%; top: 90%; animation-delay: 14s; animation-duration: 24s; }

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(100px);
    opacity: 0.3;
}

.orb {
    position: absolute;
    border-radius: 50%;
    animation: orb-float 30s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-blue), transparent);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00d4ff, transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: -10s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary-blue), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -20s;
}

.contact-section .container {
    position: relative;
    z-index: 10;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(40px, 8vw, 80px);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: clamp(30px, 5vw, 40px);
}

.contact-info h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 30px;
    color: var(--white);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.info-text {
    flex: 1;
}

.info-text span {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text a,
.info-text p {
    color: var(--white);
    text-decoration: none;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    transition: color 0.3s ease;
    margin: 0;
    line-height: 1.6;
}

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

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

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 1;
    }
    
    .contact-form {
        order: 2;
    }
}

@media (max-width: 576px) {
    .info-item {
        gap: 15px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-text a,
    .info-text p {
        font-size: 0.9rem;
    }
    
    .shape {
        transform: scale(0.7);
    }
}