@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;800;900&family=Inter:wght@400;500;600&display=swap');

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

:root {
    --primary-blue: #0a0f1e;
    --accent-blue: #0891b2;
    --light-blue: #22d3ee;
    --white: #ffffff;
    --off-white: #f8fafc;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --border-light: #e2e8f0;
    --dark-bg: #0f172a;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--dark-bg);
}

/* Navigation Bar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-light);
    animation: slideDown 0.5s ease-out;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.nav-container::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar:hover .nav-container::before {
    opacity: 0.3;
}

.logo {
    cursor: pointer;
    animation: fadeInLeft 0.6s ease-out;
}

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

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-blue);
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu li {
    animation: fadeInUp 0.6s ease-out backwards;
}

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

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 12px 18px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 0.1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: var(--accent-blue);
    transform: translateY(-2px);
}

/* Animated Letter Effect */
.animated-link {
    position: relative;
    display: inline-block;
}

.animated-link span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0);
}

.animated-link:hover span {
    animation: letterBounce 0.5s ease forwards;
    text-shadow: 0 4px 8px rgba(8, 145, 178, 0.3);
}

.animated-link span:nth-child(1) { animation-delay: 0s; }
.animated-link span:nth-child(2) { animation-delay: 0.025s; }
.animated-link span:nth-child(3) { animation-delay: 0.05s; }
.animated-link span:nth-child(4) { animation-delay: 0.075s; }
.animated-link span:nth-child(5) { animation-delay: 0.1s; }
.animated-link span:nth-child(6) { animation-delay: 0.125s; }
.animated-link span:nth-child(7) { animation-delay: 0.15s; }
.animated-link span:nth-child(8) { animation-delay: 0.175s; }
.animated-link span:nth-child(9) { animation-delay: 0.2s; }

@keyframes letterBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    30% {
        transform: translateY(-10px) scale(1.1);
    }
    50% {
        transform: translateY(-12px) scale(1.15);
    }
    70% {
        transform: translateY(-8px) scale(1.08);
    }
}

/* Liquid Metal Button */
.liquid-metal-btn {
    position: relative;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 50%, #a8a8a8 100%);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 2px 5px rgba(0, 0, 0, 0.15),
        0 9px 9px rgba(0, 0, 0, 0.12),
        0 20px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: liquidShine 3s ease-in-out infinite;
}

.liquid-metal-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(0deg);
    animation: liquidFlow 4s linear infinite;
}

.liquid-metal-btn::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(180deg, #202020 0%, #000000 100%);
    border-radius: 100px;
    z-index: -1;
}

.liquid-metal-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 12px 12px rgba(0, 0, 0, 0.15),
        0 24px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    animation: liquidShine 1.5s ease-in-out infinite;
}

.liquid-metal-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

@keyframes liquidShine {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1) contrast(1.1);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.2) contrast(1.2);
    }
}

@keyframes liquidFlow {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Ripple effect on click */
.liquid-metal-btn {
    background-size: 200% 200%;
}

.liquid-metal-btn:focus {
    outline: none;
}

.liquid-metal-btn:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(8, 145, 178, 0.1);
    transform: scale(1.1);
}

.bar {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
}

.hamburger:hover .bar:nth-child(1) {
    transform: translateX(-3px);
}

.hamburger:hover .bar:nth-child(3) {
    transform: translateX(3px);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: transparent;
    color: var(--text-dark);
    padding: 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Vanta.js Canvas Positioning */
#vanta-hero canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Animated Background */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(8, 145, 178, 0.08), transparent),
        radial-gradient(ellipse 60% 50% at 50% 120%, rgba(34, 211, 238, 0.06), transparent);
    opacity: 0.3;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-blue), transparent);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--light-blue), transparent);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

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

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

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(8, 145, 178, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 145, 178, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: 100px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s backwards, pulse 3s ease-in-out 2s infinite;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.1);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(8, 145, 178, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(8, 145, 178, 0.2);
    }
}

.badge-icon {
    font-size: 16px;
    animation: rotate 3s linear infinite;
}

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

.badge-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-blue);
    letter-spacing: 2px;
}

/* Hero Title */
.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue), var(--light-blue));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

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

/* Hero Description */
.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero-btn {
    position: relative;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-btn {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    color: white;
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
}

.primary-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.primary-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(8, 145, 178, 0.4);
}

.primary-btn span,
.primary-btn .btn-arrow {
    position: relative;
    z-index: 1;
}

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

.primary-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.secondary-btn {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.secondary-btn:hover {
    transform: translateY(-3px);
    border-color: var(--accent-blue);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    animation: countUp 2s ease-out 1.2s backwards;
}

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

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out 1.4s backwards;
    z-index: 1;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--accent-blue);
    border-radius: 15px;
    position: relative;
    animation: bounce 2s infinite;
}

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

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-text {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 140px 20px 80px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-divider {
        display: none;
    }

    .orb-1, .orb-2, .orb-3 {
        width: 300px;
        height: 300px;
    }
}

/* Services Section - OLD VERSION REMOVED - Using main definition below */

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

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-blue);
}

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-blue);
}

.service-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

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

/* About Section - Premium Design */
.about {
    padding: 120px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.about-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.about-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: floatOrbit 30s ease-in-out infinite;
}

.about-orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.25), transparent 70%);
    top: -20%;
    right: -10%;
    animation-delay: 0s;
}

.about-orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent 70%);
    bottom: -15%;
    left: -10%;
    animation-delay: 10s;
}

.about-orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 20s;
}

@keyframes floatOrbit {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) scale(1.15) rotate(90deg);
    }
    50% {
        transform: translate(-40px, 40px) scale(0.9) rotate(180deg);
    }
    75% {
        transform: translate(40px, 50px) scale(1.05) rotate(270deg);
    }
}

/* Animated Particles */
.about-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 20px rgba(8, 145, 178, 0.6);
    animation: particleFloat 15s ease-in-out infinite;
}

.particle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 20%; left: 80%; animation-delay: 2s; }
.particle-3 { top: 40%; left: 15%; animation-delay: 4s; }
.particle-4 { top: 60%; left: 85%; animation-delay: 6s; }
.particle-5 { top: 80%; left: 20%; animation-delay: 8s; }
.particle-6 { top: 30%; left: 50%; animation-delay: 10s; }
.particle-7 { top: 70%; left: 60%; animation-delay: 12s; }
.particle-8 { top: 50%; left: 30%; animation-delay: 14s; }
.particle-9 { top: 15%; left: 60%; animation-delay: 3s; }
.particle-10 { top: 85%; left: 70%; animation-delay: 7s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    25% {
        transform: translate(40px, -40px) scale(1.8);
        opacity: 1;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.6);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, 40px) scale(1.4);
        opacity: 0.9;
    }
    90% {
        opacity: 0.3;
    }
}

/* Contact Section - Modern Design */
.contact {
    padding: 120px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

/* Contact Background Effects */
.contact-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: contactOrbFloat 18s ease-in-out infinite;
}

.orb-c-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.2), transparent 70%);
    top: -20%;
    right: -15%;
    animation-delay: 0s;
}

.orb-c-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15), transparent 70%);
    bottom: -15%;
    left: -10%;
    animation-delay: 6s;
}

.orb-c-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.18), transparent 70%);
    top: 50%;
    left: 40%;
    animation-delay: 12s;
}

@keyframes contactOrbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Contact Section Header (Old - Removed) */

/* Footer - Modern Design */
.footer {
    background: linear-gradient(180deg, #0a0f1e 0%, #050810 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 80px 40px 0;
}

/* Footer Background */
.footer-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.footer-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.3), transparent 70%);
    top: -20%;
    left: -10%;
    animation: floatOrbit 20s ease-in-out infinite;
}

.footer-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.25), transparent 70%);
    bottom: -15%;
    right: -8%;
    animation: floatOrbit 25s ease-in-out infinite reverse;
}

.footer-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(8, 145, 178, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 145, 178, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.footer .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

/* Footer Logo & About */
.footer-about {
    max-width: 350px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border-color: transparent;
    color: white;
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.4);
}

/* Footer Title */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--light-blue);
}

.footer-links li a:hover {
    color: var(--light-blue);
    transform: translateX(8px);
}

.footer-links li a:hover::before {
    opacity: 1;
    left: -16px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact li svg {
    color: var(--light-blue);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.footer-newsletter h3 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin: 0 0 8px 0;
}

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

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.2);
}

.newsletter-form button {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.4);
}

.newsletter-form button svg {
    transition: transform 0.3s ease;
}

.newsletter-form button:hover svg {
    transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-bottom-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--light-blue);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        border-top: 1px solid var(--border-light);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 28px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* Services Section */
.services {
    padding: 100px 40px;
    background: #ffffff;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Ripple Background Animation */
.ripple-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #0891b2, #22d3ee);
    animation: ripple 15s infinite;
    box-shadow: 0px 0px 20px 5px rgba(8, 145, 178, 0.4);
}

.small {
    width: 300px;
    height: 300px;
    left: -150px;
    bottom: -150px;
}

.medium {
    width: 500px;
    height: 500px;
    left: -250px;
    bottom: -250px;
}

.large {
    width: 700px;
    height: 700px;
    left: -350px;
    bottom: -350px;
}

.xlarge {
    width: 900px;
    height: 900px;
    left: -450px;
    bottom: -450px;
}

.xxlarge {
    width: 1100px;
    height: 1100px;
    left: -550px;
    bottom: -550px;
}

.shade1 {
    opacity: 0.15;
}

.shade2 {
    opacity: 0.25;
}

.shade3 {
    opacity: 0.35;
}

.shade4 {
    opacity: 0.45;
}

.shade5 {
    opacity: 0.55;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(0.8);
    }
}

/* Ensure services content appears above ripple */
.services .container,
.services .section-header,
.services .services-grid-clean {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInUp 0.8s ease-out;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(8, 145, 178, 0.1);
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: 100px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--light-blue);
    letter-spacing: 1.5px;
}

.section-badge svg {
    color: var(--light-blue);
}

.services h2 {
    font-size: 56px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: -1px;
    font-family: "Cinzel", serif;
}

.section-description {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section - DUPLICATE REMOVED - Using main definition above */

/* Services Background Effects */
.services-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.services-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: servicesOrbFloat 20s ease-in-out infinite;
}

.services-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.18), transparent 70%);
    top: -15%;
    left: -10%;
    animation-delay: 0s;
}

.services-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15), transparent 70%);
    bottom: -10%;
    right: -8%;
    animation-delay: 7s;
}

.services-orb-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12), transparent 70%);
    top: 50%;
    right: 30%;
    animation-delay: 14s;
}

@keyframes servicesOrbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-25px, 25px) scale(0.95);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Typing Title Animation */
.typing-title {
    font-family: 'Signika', sans-serif;
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 1px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
}

/* Text reveal animation for title - NO CURSOR */
.typing-title {
    animation: fadeInTitle 0.8s ease-out 0.5s forwards;
}

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

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Clean Services Grid */
.services-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

/* Service Card Clean */
.service-card-clean {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 32px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* GIF Card Styles */
.service-card-gif {
    padding: 0;
    background: transparent;
    border: none;
    overflow: hidden;
}

.card-gif-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* White background container for GIFs that need it */
/* MANUAL GIF POSITIONING: Adjust these values */
.gif-container-white {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;        /* Vertical: center, flex-start (top), flex-end (bottom) */
    justify-content: center;    /* Horizontal: center, flex-start (left), flex-end (right) */
    padding: 20px;              /* Space around the GIF */
}

.gif-container-white .card-gif-full {
    max-width: 80%;             /* Adjust GIF width (50% to 100%) */
    max-height: 80%;            /* Adjust GIF height (50% to 100%) */
    object-fit: contain;
    transform: translate(0px, 0px);  /* Manual position: (horizontal, vertical) */
}


/* Title overlay at top (always visible) */
/* MANUAL POSITIONING: Adjust these values to reposition the title */
.card-title-overlay {
    position: absolute;
    top: 10px;        /* Adjust vertical position (distance from top) */
    left: 10px;       /* Adjust horizontal position (distance from left) */
    right: 30px;      /* Change to 30px if you want to center/constrain width */
    padding: 0;
    background: transparent;
    z-index: 2;
}

.card-title-overlay h3 {
    color: #000000;              /* Text color */
    font-size: 32px !important;  /* Adjust text size - INCREASE THIS VALUE */
    font-weight: 700 !important;
    margin: 0;
    font-family: 'Shadows Into Light', cursive !important;
    line-height: 1.3 !important;
    text-shadow: 
        2px 2px 4px rgba(255, 255, 255, 0.8),
        -1px -1px 2px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #0a0f1e 0%, #0891b2 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    position: relative;
}

/* Shimmer animation for title */
@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Paper cover overlay (appears on hover) */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 40px 30px;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 12px;
    box-shadow: 
        0 -10px 40px rgba(0, 0, 0, 0.2),
        0 -5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
}

/* Paper texture effect */
.card-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        );
    pointer-events: none;
    border-radius: 12px;
}

.service-card-gif:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h3 {
    color: #1a1a1a;
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #0891b2 0%, #22d3ee 50%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: paperTitleShine 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(8, 145, 178, 0.3);
    letter-spacing: 0.5px;
    font-family: 'Cinzel', serif;
}

/* Shine animation for paper overlay title */
@keyframes paperTitleShine {
    0%, 100% {
        background-position: 0% center;
        transform: scale(1);
    }
    50% {
        background-position: 200% center;
        transform: scale(1.02);
    }
}

.card-overlay p {
    color: #444444;
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.card-overlay .service-link-clean {
    color: #0891b2;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.card-overlay .service-link-clean:hover {
    color: #22d3ee;
}

.service-card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    border-radius: 12px 12px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Animated Glow Background */
.service-card-clean::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border-radius: 12px;
    opacity: 0;
    filter: blur(20px);
    z-index: -1;
    transition: opacity 0.5s ease;
}

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

.service-card-clean:hover::after {
    opacity: 0.3;
}

.service-card-clean:hover {
    border-color: var(--accent-blue);
    box-shadow: 
        0 20px 60px rgba(8, 145, 178, 0.25),
        0 0 0 1px rgba(8, 145, 178, 0.2);
    transform: translateY(-12px) scale(1.03);
}

/* Card Header */
.card-header {
    margin-bottom: 24px;
    position: relative;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f0f9ff, #cffafe);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

/* Icon Glow Effect */
.card-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.5s ease;
}

/* Rotating Border Effect */
.card-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, var(--accent-blue), var(--light-blue), var(--accent-blue));
    background-size: 300% 300%;
    border-radius: 10px;
    opacity: 0;
    z-index: -1;
    animation: rotateBorderGradient 3s linear infinite;
}

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

.service-card-clean:hover .card-icon {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 12px 30px rgba(8, 145, 178, 0.4);
}

.service-card-clean:hover .card-icon::before {
    opacity: 0.6;
}

.service-card-clean:hover .card-icon::after {
    opacity: 1;
}

.card-icon svg {
    color: var(--accent-blue);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.service-card-clean:hover .card-icon svg {
    color: white;
    transform: scale(1.1);
}

/* Card Typography */
.service-card-clean h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

/* Animated Underline on Hover */
.service-card-clean h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    transition: width 0.4s ease;
}

.service-card-clean:hover h3 {
    color: var(--accent-blue);
}

.service-card-clean:hover h3::after {
    width: 100%;
}

.service-card-clean p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card-clean:hover p {
    color: #475569;
}

/* Service Link Clean */
.service-link-clean {
    display: inline-flex;
    align-items: center;
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Animated Arrow */
.service-link-clean::after {
    content: '→';
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-link-clean:hover::after {
    transform: translateX(5px);
    animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(10px);
    }
}

/* Shimmer Effect on Link Hover */
.service-link-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(8, 145, 178, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.service-link-clean:hover::before {
    left: 100%;
}

.service-link-clean:hover {
    border-bottom-color: var(--accent-blue);
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .services {
        padding: 80px 30px;
    }

    .services h2 {
        font-size: 40px;
    }

    .services-grid-clean {
        gap: 24px;
    }
}

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

    .services h2 {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .services-grid-clean {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-clean {
        padding: 32px 24px;
    }

    .service-card-clean h3 {
        font-size: 20px;
    }
}

/* Services Responsive */
@media (max-width: 1024px) {
    .services {
        padding: 80px 30px;
    }

    .services h2 {
        font-size: 42px;
    }

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

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

    .services h2 {
        font-size: 36px;
    }

    .section-description {
        font-size: 16px;
    }

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

    .service-card {
        padding: 32px 24px;
    }
}


/* Particle Canvas */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: all;
    z-index: 1;
}

/* Mesh Gradient - Simple and Clean */
.mesh-gradient {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(8, 145, 178, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 145, 178, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.4;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Nav Glow */
.nav-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0.5;
}

/* Text Reveal Animation */
.text-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.text-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.text-reveal:nth-child(1) { transition-delay: 0.1s; }
.text-reveal:nth-child(2) { transition-delay: 0.2s; }
.text-reveal:nth-child(3) { transition-delay: 0.3s; }

/* Badge Glow */
.badge-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.4), transparent 70%);
    filter: blur(20px);
    opacity: 0.5;
    animation: pulse 3s ease-in-out infinite;
}

/* Button Glow */
.btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border-radius: 12px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.primary-btn:hover .btn-glow {
    opacity: 0.6;
}

/* Hero Stats Redesign */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(8, 145, 178, 0.5);
    transform: translateY(-2px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.2), rgba(34, 211, 238, 0.2));
    border-radius: 12px;
}

.stat-icon svg {
    color: var(--light-blue);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 145, 178, 0.1);
    border: 1px solid rgba(8, 145, 178, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.float-element svg {
    color: var(--light-blue);
}

.element-1 {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
}

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

/* Card Shine Effect */
.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover .card-shine {
    transform: translateX(100%);
}

/* Card Shimmer */
.card-shimmer {
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(8, 145, 178, 0.3) 50%,
        transparent 100%
    );
    border-radius: 24px;
    opacity: 0;
    filter: blur(10px);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) rotate(0deg);
        opacity: 0;
    }
}

/* Code Block Enhancements */
.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-dots {
    display: flex;
    gap: 8px;
}

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

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.code-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.code-cursor {
    display: inline-block;
    width: 2px;
    height: 18px;
    background: var(--light-blue);
    margin-left: 4px;
    animation: blink 1s infinite;
}

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

/* Card Glow Enhancement */
.card-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.4), transparent 70%);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.hero-card:hover .card-glow {
    opacity: 1;
}

/* Tilt Effect Support */
[data-tilt] {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}


/* Hero Badge */
.hero-badge-animated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(8, 145, 178, 0.08);
    border: 1px solid rgba(8, 145, 178, 0.25);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    color: var(--accent-blue);
    font-family: var(--font-body);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-badge-animated svg {
    color: var(--accent-blue);
    width: 13px;
    height: 13px;
    animation: sparkle 2s ease-in-out infinite;
}

/* Animated Title */
.hero-animated-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.15;
    letter-spacing: -2px;
    max-width: 70rem;
    font-weight: 900;
    color: var(--primary-blue);
    display: block;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}

/* Building word with special fantasy font */
.building-word {
    font-family: Copperplate, Papyrus, fantasy;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary-blue);
    text-shadow: 0 2px 4px rgba(8, 145, 178, 0.15);
}

.title-line {
    display: inline;
    color: var(--primary-blue);
    font-weight: 900;
    white-space: nowrap;
    font-family: Copperplate, Papyrus, fantasy;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(8, 145, 178, 0.15);
    font-size: 0.8em;
}

.animated-words-container {
    display: inline-block;
    position: relative;
    min-width: 450px;
    height: 4rem;
    vertical-align: middle;
}

.animated-word {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    white-space: nowrap;
}

.animated-word.active {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 640px) {
    .hero-animated-title {
        font-size: 4.5rem;
    }
    
    .animated-words-container {
        min-width: 550px;
        height: 5rem;
    }
}

@media (min-width: 768px) {
    .hero-animated-title {
        font-size: 5.5rem;
        letter-spacing: -3px;
    }
    
    .animated-words-container {
        min-width: 650px;
        height: 6rem;
    }
}

@media (min-width: 1024px) {
    .hero-animated-title {
        font-size: 6.5rem;
        letter-spacing: -4px;
    }
    
    .animated-words-container {
        min-width: 750px;
        height: 7rem;
    }
}

@media (max-width: 640px) {
    .hero-animated-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    
    .animated-words-container {
        min-width: 250px;
        height: 3.2rem;
    }
}

/* Hero Subtext */
.hero-animated-subtext {
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 50rem;
    line-height: 1.65;
    font-family: var(--font-body);
    font-weight: 400;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .hero-animated-subtext {
        font-size: 1.15rem;
        line-height: 1.7;
    }
}

/* Hero Buttons */
.hero-animated-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn-outline,
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.3px;
}

.hero-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--foreground);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--light-blue);
    transform: translateY(-2px);
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border: none;
    color: white;
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(8, 145, 178, 0.4);
}

.hero-btn-outline svg,
.hero-btn-primary svg {
    transition: transform 0.3s ease;
}

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

/* Update hero cinematic content */
.hero-cinematic-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 3rem 1.5rem 2rem;
    flex: 1;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.animate-fade-rise {
    animation: fadeRise 0.8s ease-out 0.2s backwards;
}

.animate-fade-rise-delay {
    animation: fadeRise 0.8s ease-out 0.5s backwards;
}

.animate-fade-rise-delay-2 {
    animation: fadeRise 0.8s ease-out 0.8s backwards;
}


/* Inline Stats */
.hero-stats-inline {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.stat-box-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon-inline {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 145, 178, 0.15);
    border-radius: 10px;
}

.stat-icon-inline svg {
    color: var(--light-blue);
    width: 18px;
    height: 18px;
}

.stat-content-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number-inline {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--foreground);
    line-height: 1;
    margin-bottom: 2px;
}

.stat-label-inline {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.stat-divider-inline {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

@media (max-width: 640px) {
    .stat-divider-inline {
        display: none;
    }
    
    .hero-stats-inline {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
}


/* Gradient Blur Orbs - Simple and Aesthetic */
.gradient-blur {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.gradient-blur-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.15), transparent 70%);
    top: -15%;
    right: -5%;
    filter: blur(80px);
    animation: gentleFloat 30s ease-in-out infinite;
}

.gradient-blur-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 70%);
    bottom: -10%;
    left: -5%;
    filter: blur(70px);
    animation: gentleFloat 25s ease-in-out infinite reverse;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}


/* Enhanced Particle Animation - Removed for simplicity */
#particleCanvas {
    display: none;
}

/* Sparkle Effect - Simple */
@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.7;
    }
}

/* Mesh Grid and Floating Shapes */
.about-mesh-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(8, 145, 178, 0.04) 2px, transparent 2px),
        linear-gradient(90deg, rgba(8, 145, 178, 0.04) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: meshMove 30s linear infinite;
    opacity: 0.5;
}

@keyframes meshMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.about-floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(34, 211, 238, 0.1));
    animation: floatAround 20s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 70px;
    height: 70px;
    top: 30%;
    right: 25%;
    animation-delay: 15s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(0, -40px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(-20px, -20px) rotate(270deg);
        opacity: 0.6;
    }
}

.about .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

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

.about-badge-main {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.95), rgba(34, 211, 238, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-clip: padding-box;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    animation: badgeSlideIn 1s ease-out, badgeHover 3s ease-in-out 1s infinite;
    box-shadow: 
        0 8px 32px rgba(8, 145, 178, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
}

.about-badge-main:hover {
    transform: scale(1.1) translateY(-4px);
    background: linear-gradient(135deg, rgba(8, 145, 178, 1), rgba(34, 211, 238, 1));
    box-shadow: 
        0 16px 48px rgba(8, 145, 178, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.6);
}

.about-badge-main::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ffffff, var(--light-blue), #ffffff);
    background-size: 200% 200%;
    border-radius: 100px;
    z-index: -1;
    animation: gradientRotate 3s linear infinite, borderPulse 2s ease-in-out infinite;
}

@keyframes badgeSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes badgeHover {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-6px) rotate(1deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

@keyframes borderPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

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

.badge-pulse {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.8), rgba(34, 211, 238, 0.8));
    border-radius: 100px;
    opacity: 0;
    z-index: -2;
    animation: pulse 2s ease-out infinite, pulseExpand 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes pulseExpand {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.9);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(8, 145, 178, 0);
    }
}

.about-badge-main svg {
    color: #ffffff;
    animation: iconFloat 3s ease-in-out infinite, iconGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    25% {
        transform: translateY(-3px) rotateY(180deg);
    }
    50% {
        transform: translateY(0) rotateY(360deg);
    }
    75% {
        transform: translateY(-3px) rotateY(540deg);
    }
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
    }
}

/* Main Title */
.about-main-title {
    font-family: "Yuyu Short", sans-serif;
    font-size: 80px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -2px;
    margin: 32px 0 24px;
    color: var(--primary-blue);
    position: relative;
}

.about-main-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), var(--light-blue), transparent);
    opacity: 0;
    animation: expandLine 1.5s ease-out 0.8s forwards;
}

@keyframes expandLine {
    to {
        width: 300px;
        opacity: 1;
    }
}

.title-word {
    display: inline-block;
    animation: wordReveal 0.8s ease-out backwards;
    margin: 0 12px;
    font-family: "Yuyu Short", sans-serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
}

.title-word::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.title-word:hover::after {
    transform: scaleX(1);
}

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

.title-gradient {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
    display: inline-block;
    font-family: "Yuyu Short", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wordReveal 0.8s ease-out 0.8s backwards, shimmer 3s ease-in-out infinite;
    margin: 0 12px;
}

@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

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

.about-main-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 1s backwards;
    position: relative;
}

.about-main-description::before {
    content: '"';
    position: absolute;
    left: -40px;
    top: -20px;
    font-size: 80px;
    color: rgba(8, 145, 178, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.about-main-description::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    animation: expandWidth 1s ease-out 1.5s backwards;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

/* Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    align-items: stretch;
}

.about-feature-cards {
    display: contents;
}

/* Responsive About Section */
@media (max-width: 1400px) {
    .about-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .about {
        padding: 100px 30px;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-stats-panel {
        position: relative;
        top: 0;
    }
    
    .about-main-title {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 20px;
    }
    
    .about-main-title {
        font-size: 48px;
    }
    
    .title-word,
    .title-gradient {
        margin: 0 6px;
    }
    
    .about-main-description {
        font-size: 16px;
    }
    
    .feature-card-modern {
        padding: 24px;
    }
    
    .about-stats-panel {
        padding: 28px 20px;
    }
    
    .about-cta-modern {
        flex-direction: column;
    }
    
    .cta-button-premium,
    .cta-button-outline {
        width: 100%;
    }
}

.feature-card-modern {
    position: relative;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideInLeft 0.8s ease-out backwards;
    cursor: pointer;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05), rgba(34, 211, 238, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card-modern:hover {
    border-color: var(--accent-blue);
    transform: translateY(-12px);
    box-shadow: 
        0 20px 50px rgba(8, 145, 178, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-card-modern:nth-child(1) { animation-delay: 0.3s; }
.feature-card-modern:nth-child(2) { animation-delay: 0.5s; }
.feature-card-modern:nth-child(3) { animation-delay: 0.7s; }

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 24px 48px rgba(8, 145, 178, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon-modern {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 8px 24px rgba(8, 145, 178, 0.3),
        0 0 0 8px rgba(8, 145, 178, 0.05);
    position: relative;
}

.feature-icon-modern::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.2), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(8, 145, 178, 0.4),
        0 0 0 12px rgba(8, 145, 178, 0.08);
}

.feature-card-modern:hover .feature-icon-modern::after {
    opacity: 1;
}

.feature-icon-modern svg {
    color: white;
}

.feature-card-modern h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0a0f1e;
    margin: 0 0 16px 0;
    transition: all 0.3s ease;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
}

.feature-card-modern h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    border-radius: 2px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card-modern:hover h3 {
    color: var(--accent-blue);
}

.feature-card-modern:hover h3::after {
    opacity: 1;
    width: 60px;
}

.feature-card-modern p {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
    margin: 0 0 24px 0;
    flex-grow: 1;
    position: relative;
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    margin-top: auto;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-stats {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05), rgba(34, 211, 238, 0.05));
    border-color: rgba(8, 145, 178, 0.2);
    transform: translateY(-4px);
}

.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 12px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card-modern:hover .mini-stat {
    border-color: rgba(8, 145, 178, 0.15);
}

.mini-stat-value {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .mini-stat-value {
    transform: scale(1.1);
}

.mini-stat-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Panel */
.about-stats-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(8, 145, 178, 0.15);
    animation: slideInRight 0.8s ease-out 0.4s backwards;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.stats-panel-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(8, 145, 178, 0.15);
}

.stats-panel-header h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-blue);
    margin: 0 0 8px 0;
}

.stats-panel-header p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.stats-grid-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.stat-item-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(8, 145, 178, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.stat-item-modern:hover {
    border-color: var(--accent-blue);
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(8, 145, 178, 0.2);
}

.stat-icon-circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #f0f9ff, #cffafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    align-self: center;
}

.stat-item-modern:hover .stat-icon-circle {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    transform: rotate(360deg);
}

.stat-icon-circle svg {
    color: var(--accent-blue);
    transition: color 0.4s ease;
}

.stat-item-modern:hover .stat-icon-circle svg {
    color: white;
}

.stat-content-modern {
    display: flex;
    align-items: baseline;
    gap: 4px;
    justify-content: center;
}

.stat-number-animated {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-plus {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-blue);
}

.stat-label-modern {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
    text-align: center;
}

.stat-progress {
    width: 100%;
    height: 6px;
    background: rgba(8, 145, 178, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.stat-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: progressFill 2s ease-out 1.5s backwards;
}

@keyframes progressFill {
    0% {
        width: 0 !important;
    }
}

/* CTA Buttons */
.about-cta-modern {
    display: flex;
    gap: 16px;
    flex-direction: column;
    margin-top: 32px;
}

.cta-button-premium {
    position: relative;
    width: 100%;
    padding: 18px 32px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 10px 30px rgba(8, 145, 178, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button-premium:hover .button-bg-gradient {
    opacity: 1;
}

.button-text {
    position: relative;
    z-index: 1;
}

.cta-button-premium svg {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.cta-button-premium:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(8, 145, 178, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button-premium:hover svg {
    transform: translateX(4px);
}

.cta-button-outline {
    width: 100%;
    padding: 18px 32px;
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-button-outline:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(8, 145, 178, 0.3);
}

/* Responsive About Section */
@media (max-width: 1024px) {
    .about {
        padding: 100px 30px;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats-panel {
        position: relative;
        top: 0;
    }
    
    .about-main-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 20px;
    }
    
    .about-main-title {
        font-size: 36px;
    }
    
    .title-word,
    .title-gradient {
        margin: 0 6px;
    }
    
    .about-main-description {
        font-size: 16px;
    }
    
    .feature-card-modern {
        padding: 24px;
    }
    
    .about-stats-panel {
        padding: 28px 20px;
    }
    
    .about-cta-modern {
        flex-direction: column;
    }
    
    .cta-button-premium,
    .cta-button-outline {
        width: 100%;
    }
}


/* Additional Floating Shapes */
.shape-5 {
    width: 90px;
    height: 90px;
    top: 70%;
    right: 8%;
    animation-delay: 3s;
}

.shape-6 {
    width: 50px;
    height: 50px;
    top: 45%;
    left: 5%;
    animation-delay: 7s;
}

/* Animated Particles */
.about-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Duplicate particle styles removed - using main definition above */

/* Light Rays */
.light-rays {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.light-ray {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(8, 145, 178, 0.15) 50%, 
        transparent 100%);
    opacity: 0;
    animation: rayBeam 8s ease-in-out infinite;
    filter: blur(1px);
}

.ray-1 {
    left: 20%;
    animation-delay: 0s;
}

.ray-2 {
    left: 50%;
    animation-delay: 2.5s;
}

.ray-3 {
    left: 80%;
    animation-delay: 5s;
}

@keyframes rayBeam {
    0%, 100% {
        opacity: 0;
        transform: translateY(-100%);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animated Waves */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    pointer-events: none;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.wave path {
    fill: var(--accent-blue);
}

.wave-1 {
    animation: waveMove 12s ease-in-out infinite;
}

.wave-2 {
    animation: waveMove 15s ease-in-out infinite reverse;
    opacity: 0.08;
}

.wave-3 {
    animation: waveMove 18s ease-in-out infinite;
    opacity: 0.06;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) scaleY(1.1);
    }
}


/* Glow Spots */
.glow-spots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.glow-spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    animation: glowPulse 6s ease-in-out infinite;
}

.spot-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.25), transparent 70%);
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.spot-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent 70%);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.spot-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.18), transparent 70%);
    bottom: 10%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Rotating Rings */
.rotating-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    opacity: 0.1;
}

.ring-1 {
    width: 400px;
    height: 400px;
    border-top-color: var(--accent-blue);
    border-right-color: var(--accent-blue);
    animation: ringRotate 20s linear infinite;
}

.ring-2 {
    width: 600px;
    height: 600px;
    border-left-color: var(--light-blue);
    border-bottom-color: var(--light-blue);
    animation: ringRotate 25s linear infinite reverse;
}

.ring-3 {
    width: 800px;
    height: 800px;
    border-top-color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
    animation: ringRotate 30s linear infinite;
}

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Additional Visual Enhancements */

/* Shimmer Effect on Hover for Stats */
.stat-item-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.stat-item-modern:hover::after {
    opacity: 1;
    animation: shimmerSweep 1.5s ease-in-out;
}

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

/* Glow Effect on Feature Card Icons */
.feature-icon-modern::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: inherit;
    border-radius: 16px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease;
}

.feature-card-modern:hover .feature-icon-modern::before {
    opacity: 0.6;
    animation: iconGlowPulse 1.5s ease-in-out infinite;
}

@keyframes iconGlowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Animated Border Glow for CTA Buttons */
.cta-button-premium::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, 
        var(--accent-blue), 
        var(--light-blue), 
        var(--accent-blue), 
        var(--light-blue));
    background-size: 400% 400%;
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    animation: gradientShift 3s ease infinite;
    filter: blur(8px);
}

.cta-button-premium:hover::before {
    opacity: 1;
}

/* Depth Shadow Effect */
.feature-card-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card-modern:hover::after {
    opacity: 1;
}

/* Neon Glow Text Effect for Title */
.about-main-title {
    text-shadow: 0 0 10px rgba(8, 145, 178, 0);
    transition: text-shadow 0.3s ease;
}

.about-main-title:hover {
    text-shadow: 
        0 0 10px rgba(8, 145, 178, 0.3),
        0 0 20px rgba(8, 145, 178, 0.2),
        0 0 30px rgba(8, 145, 178, 0.1);
}

/* Ripple Effect on Stat Card Click */
.stat-item-modern {
    position: relative;
    overflow: hidden;
}

.stat-item-modern::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(8, 145, 178, 0.3);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.stat-item-modern:active::before {
    width: 300px;
    height: 300px;
    opacity: 1;
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
}

/* Gradient Text Animation for Stats Panel Header */
.stats-panel-header h3 {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue), var(--light-blue));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientTextFlow 5s ease infinite;
}

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

/* Floating Animation for Badge */
.about-badge-main {
    animation: badgeEntrance 1s ease-out, badgeFloat 3s ease-in-out 1s infinite, badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(8, 145, 178, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(8, 145, 178, 0.6));
    }
}

/* Duplicate about-background animation removed - using main definition above */

/* Animated Grid Background */
.services-animated-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(8, 145, 178, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 145, 178, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridDrift 25s linear infinite;
    opacity: 0.6;
}

@keyframes gridDrift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating Particles for Services */
.services-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.service-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 15px rgba(8, 145, 178, 0.6);
    animation: serviceParticleRise 12s ease-in-out infinite;
}

.sp-1 { left: 15%; animation-delay: 0s; }
.sp-2 { left: 25%; animation-delay: 1.5s; }
.sp-3 { left: 35%; animation-delay: 3s; }
.sp-4 { left: 45%; animation-delay: 4.5s; }
.sp-5 { left: 55%; animation-delay: 6s; }
.sp-6 { left: 65%; animation-delay: 1s; }
.sp-7 { left: 75%; animation-delay: 2.5s; }
.sp-8 { left: 85%; animation-delay: 4s; }

@keyframes serviceParticleRise {
    0% {
        transform: translateY(100vh) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) scale(1.5) rotate(360deg);
        opacity: 0;
    }
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.geo-shape {
    position: absolute;
    opacity: 0.08;
}

.triangle-1 {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--accent-blue);
    top: 10%;
    right: 15%;
    animation: geoFloat 15s ease-in-out infinite;
}

.triangle-2 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid var(--light-blue);
    bottom: 20%;
    left: 10%;
    animation: geoFloat 18s ease-in-out infinite reverse;
    animation-delay: 3s;
}

.circle-1 {
    width: 120px;
    height: 120px;
    border: 3px solid var(--accent-blue);
    border-radius: 50%;
    top: 30%;
    left: 20%;
    animation: geoSpin 20s linear infinite;
}

.circle-2 {
    width: 90px;
    height: 90px;
    border: 3px solid var(--light-blue);
    border-radius: 50%;
    bottom: 30%;
    right: 25%;
    animation: geoSpin 15s linear infinite reverse;
}

.square-1 {
    width: 100px;
    height: 100px;
    border: 3px solid var(--accent-blue);
    top: 60%;
    right: 10%;
    animation: geoFloat 16s ease-in-out infinite, geoRotate 12s linear infinite;
}

.square-2 {
    width: 70px;
    height: 70px;
    border: 3px solid var(--light-blue);
    top: 15%;
    left: 25%;
    animation: geoFloat 14s ease-in-out infinite, geoRotate 10s linear infinite reverse;
    animation-delay: 2s;
}

@keyframes geoFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes geoSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes geoRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}


/* Code Rain Effect */
.code-rain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.code-column {
    position: absolute;
    top: -100%;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(8, 145, 178, 0.8) 50%, 
        transparent 100%);
    animation: codeRainFall 8s linear infinite;
}

.col-1 { left: 10%; animation-delay: 0s; }
.col-2 { left: 30%; animation-delay: 1.5s; }
.col-3 { left: 50%; animation-delay: 3s; }
.col-4 { left: 70%; animation-delay: 0.5s; }
.col-5 { left: 90%; animation-delay: 2s; }

@keyframes codeRainFall {
    0% {
        top: -100px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Glowing Lines */
.glow-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.glow-line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(8, 145, 178, 0.3) 50%, 
        transparent 100%);
    opacity: 0;
}

.line-h-1 {
    width: 100%;
    height: 2px;
    top: 25%;
    animation: lineGlowH 6s ease-in-out infinite;
}

.line-h-2 {
    width: 100%;
    height: 2px;
    top: 75%;
    animation: lineGlowH 6s ease-in-out infinite;
    animation-delay: 3s;
}

.line-v-1 {
    width: 2px;
    height: 100%;
    left: 20%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(8, 145, 178, 0.3) 50%, 
        transparent 100%);
    animation: lineGlowV 5s ease-in-out infinite;
    animation-delay: 1s;
}

.line-v-2 {
    width: 2px;
    height: 100%;
    left: 80%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(8, 145, 178, 0.3) 50%, 
        transparent 100%);
    animation: lineGlowV 5s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes lineGlowH {
    0%, 100% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

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

/* Services Container with Z-index */
.services .container {
    position: relative;
    z-index: 1;
}


/* Enhanced Services Section Header */
.services .section-header {
    position: relative;
    z-index: 2;
}

.typing-title {
    position: relative;
    display: inline-block;
}

/* Animated Gradient Background for Title */
.typing-title::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, 
        rgba(8, 145, 178, 0.1), 
        rgba(34, 211, 238, 0.1));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(20px);
}

.typing-title:hover::before {
    opacity: 1;
}

/* Glow Effect on Title */
.typing-title {
    text-shadow: 0 0 20px rgba(8, 145, 178, 0);
    transition: text-shadow 0.3s ease;
}

.typing-title:hover {
    text-shadow: 
        0 0 20px rgba(8, 145, 178, 0.3),
        0 0 40px rgba(8, 145, 178, 0.2),
        0 0 60px rgba(8, 145, 178, 0.1);
}

/* Animated Dots After Title */
.typing-title::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    margin-left: 10px;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

/* Section Description Enhancement */
.services .section-description {
    position: relative;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.services .section-description::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-blue), 
        var(--light-blue), 
        transparent);
    animation: lineExpand 2s ease-out 1s backwards;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100px;
        opacity: 1;
    }
}

/* Services Grid Animation */
.services-grid-clean {
    animation: fadeIn 1s ease-out 0.8s backwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Ripple Effect on Card */
.service-card-clean {
    position: relative;
}

.service-card-clean::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(8, 145, 178, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

.service-card-clean:active::after {
    width: 500px;
    height: 500px;
    opacity: 1;
    transition: width 0.8s ease, height 0.8s ease, opacity 0.8s ease;
}


.contact-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(8, 145, 178, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 145, 178, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMoveContact 30s linear infinite;
}

@keyframes gridMoveContact {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.contact-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 12px rgba(8, 145, 178, 0.6);
    animation: contactParticleFloat 14s ease-in-out infinite;
}

.cp-1 { left: 12%; animation-delay: 0s; }
.cp-2 { left: 28%; animation-delay: 2s; }
.cp-3 { left: 44%; animation-delay: 4s; }
.cp-4 { left: 60%; animation-delay: 1s; }
.cp-5 { left: 76%; animation-delay: 3s; }
.cp-6 { left: 88%; animation-delay: 5s; }

@keyframes contactParticleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0;
    }
}

.connection-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.connect-line {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: lineReveal 4s ease-in-out infinite;
}

.line-1 {
    animation-delay: 0s;
}

.line-2 {
    animation-delay: 2s;
}

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

/* Contact Container */
.contact .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}


/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-blue);
    width: fit-content;
    position: relative;
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.contact-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border-radius: 100px;
    z-index: -1;
}

.contact-badge svg {
    color: var(--accent-blue);
    animation: bounce 2s ease-in-out infinite;
}

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

.contact-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--primary-blue);
    margin: 20px 0;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.gradient-text-contact {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.contact-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(8, 145, 178, 0.15);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-blue), var(--light-blue));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

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

.info-card:hover {
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 12px 32px rgba(8, 145, 178, 0.2);
    border-color: var(--accent-blue);
}

.info-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #f0f9ff, #cffafe);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.info-card:hover .info-icon {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    transform: scale(1.1) rotate(10deg);
}

.info-icon svg {
    color: var(--accent-blue);
    transition: color 0.4s ease;
}

.info-card:hover .info-icon svg {
    color: white;
}

.info-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-blue);
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-content p {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}


/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(8, 145, 178, 0.15);
    border-radius: 12px;
    color: var(--accent-blue);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 24px rgba(8, 145, 178, 0.3);
}

.social-link:hover svg {
    color: white;
    transform: rotate(360deg);
}

/* Contact Form Section */
.contact-form-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(8, 145, 178, 0.15);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(8, 145, 178, 0.1);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.form-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--text-gray);
    transition: all 0.3s ease;
    pointer-events: none;
}

.textarea-icon {
    top: 16px;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    font-size: 16px;
    font-family: inherit;
    color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(8, 145, 178, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-input:focus {
    background: rgba(255, 255, 255, 1);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.15);
}

.form-input:focus + .input-border {
    transform: scaleX(1);
}

.form-input:focus ~ .input-icon,
.input-wrapper:hover .input-icon {
    color: var(--accent-blue);
    transform: scale(1.1);
}

.form-group:focus-within .form-label {
    color: var(--accent-blue);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 0 0 12px 12px;
}

/* Submit Button */
.submit-button {
    position: relative;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 32px rgba(8, 145, 178, 0.3);
}

.button-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.button-icon {
    transition: transform 0.4s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(4px) rotate(45deg);
}

.button-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s ease;
}

.submit-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(8, 145, 178, 0.4);
}

.submit-button:hover .button-glow {
    opacity: 0.8;
}

.submit-button:active {
    transform: translateY(-2px) scale(0.98);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 20px;
    }
    
    .contact-form-section {
        padding: 32px 24px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .social-links {
        justify-content: center;
    }
}


/* ============================================
   REDESIGNED ABOUT SECTION - MODERN LAYOUT
   ============================================ */

/* New Grid Layout */
.about-content-grid-new {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
}

.about-feature-cards-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

/* Redesigned Feature Cards */
.feature-card-redesign {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(8, 145, 178, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-redesign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0891b2, #22d3ee);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card-redesign:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(8, 145, 178, 0.15),
        0 0 0 1px rgba(8, 145, 178, 0.2);
}

/* Icon Styling */
.feature-icon-redesign {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0891b2, #22d3ee);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.25);
    transition: transform 0.3s ease;
}

.feature-card-redesign:hover .feature-icon-redesign {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-redesign svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Text Styling */
.feature-card-redesign h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0f1e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-card-redesign p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
}

/* Stats Redesign */
.feature-stats-redesign {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #0891b2, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #d1d5db, transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-feature-cards-new {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card-redesign {
        padding: 32px 24px;
    }
    
    .feature-icon-redesign {
        width: 70px;
        height: 70px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}
