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

/* --- Design System Variables --- */
:root {
    --bg-dark: #020307;
    --bg-grid: rgba(255, 255, 255, 0.012);
    --glass-bg: rgba(5, 8, 22, 0.8);
    --glass-card: rgba(8, 12, 34, 0.9);
    
    /* Neon Colors */
    --neon-blue: #00d2ff;
    --neon-purple: #9d4edd;
    --neon-pink: #ff007f;
    
    /* Glow shadows */
    --glow-blue: 0 0 15px rgba(0, 210, 255, 0.5), 0 0 30px rgba(0, 210, 255, 0.25);
    --glow-purple: 0 0 15px rgba(157, 78, 221, 0.5), 0 0 30px rgba(157, 78, 221, 0.25);
    --glow-pink: 0 0 15px rgba(255, 0, 127, 0.5), 0 0 30px rgba(255, 0, 127, 0.25);
    
    /* Typography */
    --font-cyber: 'Orbitron', monospace;
    --font-body: 'Space Grotesk', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: var(--font-cyber);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

/* Glowing Background Gradients */
.glow-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow-bg::before {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.1) 0%, transparent 70%);
    top: -15%;
    left: -10%;
    border-radius: 50%;
    filter: blur(140px);
}

.glow-bg::after {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    border-radius: 50%;
    filter: blur(140px);
}

/* Grid overlay */
.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(to right, var(--bg-grid) 1px, transparent 1px),
        linear-gradient(to bottom, var(--bg-grid) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

/* Top Circuit Lines Deco */
.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.85;
}

/* Container */
.container {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    padding: 2.5rem 2.5rem 2.5rem 2.5rem;
    position: relative;
    z-index: 3;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* --- Header Styles --- */
header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    padding-top: 1rem;
}

/* Brand Logo positioned absolutely in the left corner of the container */
.logo-container {
    position: absolute;
    top: 1rem;
    left: 0;
    z-index: 20;
}

.logo-svg {
    width: 70px;
    height: 58px;
    filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.28));
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s;
    background: transparent;
    opacity: 0.9;
}

.logo-svg:hover {
    transform: scale(1.08) rotate(4deg);
    filter: drop-shadow(0 0 14px rgba(0, 210, 255, 0.55));
    opacity: 1;
}

@media (max-width: 768px) {
    header {
        padding-top: 5.5rem;
    }
    .logo-container {
        position: relative;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
}

.brand-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.chevron-svg {
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.7));
    animation: chevronGlow 3s infinite alternate;
}

.brand-title {
    font-family: var(--font-cyber);
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: 12px;
    background: linear-gradient(to right, #00d2ff 20%, #bd00ff 60%, #ff007f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.3));
}

.program-title {
    font-family: var(--font-cyber);
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
}

.program-title span.cyan-text {
    color: var(--neon-blue);
    font-weight: 700;
    text-shadow: 0 0 12px rgba(0, 210, 255, 0.5);
}

.program-title span.purple-text {
    color: var(--neon-purple);
    font-weight: 700;
    text-shadow: 0 0 12px rgba(189, 0, 255, 0.5);
}

.program-subtitle {
    font-family: var(--font-cyber);
    font-size: 1.15rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.program-subtitle::before {
    content: '';
    display: inline-block;
    width: 120px;
    height: 2px;
    background: linear-gradient(to left, var(--neon-blue), transparent);
    border-right: 5px solid var(--neon-blue);
}

.program-subtitle::after {
    content: '';
    display: inline-block;
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, var(--neon-blue), transparent);
    border-left: 5px solid var(--neon-blue);
}

/* --- Main Layout Grid --- */
.main-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.25fr 1.1fr;
    gap: 2.5rem;
    align-items: stretch;
    margin-bottom: 4.5rem;
    position: relative;
}

@media (max-width: 1280px) {
    .main-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
}

/* --- Panels (Left and Right) --- */
.glass-panel {
    background: var(--glass-bg);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
}

/* Glowing circuit borders */
.left-panel {
    border: 1.5px solid rgba(0, 210, 255, 0.3);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.7), 
        0 0 30px rgba(0, 210, 255, 0.1),
        inset 0 0 15px rgba(0, 210, 255, 0.03);
}

.right-panel {
    border: 1.5px solid rgba(189, 0, 255, 0.3);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.7), 
        0 0 30px rgba(189, 0, 255, 0.1),
        inset 0 0 15px rgba(189, 0, 255, 0.03);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.25rem;
}

.panel-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.left-panel .panel-icon-wrap {
    background: rgba(0, 210, 255, 0.12);
    border: 1.5px solid rgba(0, 210, 255, 0.5);
    color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.right-panel .panel-icon-wrap {
    background: rgba(189, 0, 255, 0.12);
    border: 1.5px solid rgba(189, 0, 255, 0.5);
    color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.panel-title {
    font-family: var(--font-cyber);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
}

/* --- Features List --- */
.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.features-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.95rem;
    position: relative;
}

/* Dotted/line guide running below list items */
.features-list li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 15px);
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.03), rgba(0, 210, 255, 0.15) 85%, transparent);
}

.feature-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.feature-check {
    color: var(--neon-blue);
    font-size: 1.25rem;
    filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.7));
}

.feature-text {
    font-family: var(--font-cyber);
    font-size: 1.05rem;
    color: #f1f5f9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Glowing dot aligned on the right of features list */
.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
    position: absolute;
    right: 5px;
    bottom: -3px;
    z-index: 2;
}

/* --- Center Visual Panel --- */
.center-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-top: 1rem;
}

.hero-image-container {
    width: 100%;
    max-width: 480px;
    position: relative;
    border-radius: 28px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.35), rgba(189, 0, 255, 0.35));
    box-shadow: 
        0 25px 55px rgba(0, 0, 0, 0.8), 
        0 0 45px rgba(0, 210, 255, 0.15),
        0 0 45px rgba(189, 0, 255, 0.15);
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 31px;
    padding: 3px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0.85;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 22px;
    display: block;
    object-fit: cover;
}

/* --- Project Documentation Container --- */
.doc-card {
    background: rgba(2, 4, 12, 0.97);
    width: 480px;
    border-radius: 24px;
    padding: 1.75rem;
    position: absolute;
    bottom: -3.5rem;
    left: -25%;
    z-index: 10;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
    animation: docFloat 6s ease-in-out infinite alternate;
}

@media (max-width: 1280px) {
    .doc-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 3.5rem;
        width: 100%;
        max-width: 500px;
    }
}

.doc-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.doc-header-icon {
    color: var(--neon-pink);
    font-size: 1.35rem;
    filter: drop-shadow(0 0 8px rgba(255, 0, 127, 0.6));
}

.doc-header-title {
    font-family: var(--font-cyber);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(189, 0, 255, 0.3);
}

.doc-links-container {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

/* Individual Doc Item Borders matching design close-up */
.doc-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    background: rgba(6, 10, 26, 0.6);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.doc-link-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.doc-link-icon-wrap {
    font-size: 1.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.doc-title {
    font-family: var(--font-cyber);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.doc-sub {
    font-family: var(--font-cyber);
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Badges on right side */
.doc-badge {
    font-family: var(--font-cyber);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 6px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

/* Theme Colors for Docs */
.doc-link-synopsis {
    border: 1.5px solid rgba(0, 210, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(0, 210, 255, 0.05);
}
.doc-link-synopsis .doc-link-icon-wrap {
    color: var(--neon-blue);
    filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.4));
}
.doc-link-synopsis .doc-badge {
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: inset 0 0 8px rgba(0, 210, 255, 0.1);
}

.doc-link-ppt {
    border: 1.5px solid rgba(157, 78, 221, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(157, 78, 221, 0.05);
}
.doc-link-ppt .doc-link-icon-wrap {
    color: var(--neon-purple);
    filter: drop-shadow(0 0 8px rgba(157, 78, 221, 0.4));
}
.doc-link-ppt .doc-badge {
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
    box-shadow: inset 0 0 8px rgba(157, 78, 221, 0.1);
}

.doc-link-report {
    border: 1.5px solid rgba(255, 0, 127, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 0, 127, 0.05);
}
.doc-link-report .doc-link-icon-wrap {
    color: var(--neon-pink);
    filter: drop-shadow(0 0 8px rgba(255, 0, 127, 0.4));
}
.doc-link-report .doc-badge {
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: inset 0 0 8px rgba(255, 0, 127, 0.1);
}

/* Link hovers */
.doc-link:hover {
    transform: translateY(-4px) scale(1.02);
}

.doc-link-synopsis:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), var(--glow-blue);
}
.doc-link-synopsis:hover .doc-badge {
    background: var(--neon-blue);
    color: #020307;
    box-shadow: var(--glow-blue);
}

.doc-link-ppt:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), var(--glow-purple);
}
.doc-link-ppt:hover .doc-badge {
    background: var(--neon-purple);
    color: #020307;
    box-shadow: var(--glow-purple);
}

.doc-link-report:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), var(--glow-pink);
}
.doc-link-report:hover .doc-badge {
    background: var(--neon-pink);
    color: #020307;
    box-shadow: var(--glow-pink);
}

/* --- Domains Grid Section --- */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    flex-grow: 1;
}

.domain-card {
    background: rgba(6, 8, 24, 0.7);
    border: 1.5px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 1.75rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    min-height: 140px;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.01), 0 5px 15px rgba(0, 0, 0, 0.3);
}

.domain-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.3s;
}

.domain-title {
    font-family: var(--font-cyber);
    font-size: 0.95rem;
    font-weight: 600;
    color: #cbd5e1;
    line-height: 1.4;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

/* Individual Domain Settings */
.domain-web {
    --domain-glow: var(--glow-blue);
    --domain-color: var(--neon-blue);
}
.domain-web .domain-icon-wrap {
    background: rgba(0, 210, 255, 0.1);
    border: 1.5px solid rgba(0, 210, 255, 0.35);
    color: var(--neon-blue);
}

.domain-mobile {
    --domain-glow: var(--glow-pink);
    --domain-color: var(--neon-pink);
}
.domain-mobile .domain-icon-wrap {
    background: rgba(255, 0, 127, 0.1);
    border: 1.5px solid rgba(255, 0, 127, 0.35);
    color: var(--neon-pink);
}

.domain-cyber {
    --domain-glow: var(--glow-blue);
    --domain-color: var(--neon-blue);
}
.domain-cyber .domain-icon-wrap {
    background: rgba(0, 210, 255, 0.1);
    border: 1.5px solid rgba(0, 210, 255, 0.35);
    color: var(--neon-blue);
}

.domain-blockchain {
    --domain-glow: var(--glow-purple);
    --domain-color: var(--neon-purple);
}
.domain-blockchain .domain-icon-wrap {
    background: rgba(189, 0, 255, 0.1);
    border: 1.5px solid rgba(189, 0, 255, 0.35);
    color: var(--neon-purple);
}

.domain-ml {
    --domain-glow: var(--glow-blue);
    --domain-color: var(--neon-blue);
}
.domain-ml .domain-icon-wrap {
    background: rgba(0, 210, 255, 0.1);
    border: 1.5px solid rgba(0, 210, 255, 0.35);
    color: var(--neon-blue);
}

.domain-ai {
    --domain-glow: var(--glow-purple);
    --domain-color: var(--neon-purple);
}
.domain-ai .domain-icon-wrap {
    background: rgba(189, 0, 255, 0.1);
    border: 1.5px solid rgba(189, 0, 255, 0.35);
    color: var(--neon-purple);
}

/* Hover effects for domain cards */
.domain-card:hover {
    transform: translateY(-8px) scale(1.04);
    border-color: var(--domain-color);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.6), var(--domain-glow);
    background: rgba(11, 15, 42, 0.85);
}

.domain-card:hover .domain-icon-wrap {
    transform: scale(1.15);
    box-shadow: var(--domain-glow);
    background: var(--domain-color);
    color: #020307;
    border-color: transparent;
}

.domain-card:hover .domain-title {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
    .domains-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Bottom Philosophy Ribbon --- */
.footer-ribbon {
    background: rgba(4, 7, 20, 0.95);
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
    border-radius: 100px;
    padding: 1.25rem 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer-ribbon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(to right, rgba(0, 210, 255, 0.3), rgba(189, 0, 255, 0.3), rgba(255, 0, 127, 0.3), rgba(0, 210, 255, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.ribbon-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    justify-content: center;
    position: relative;
    transition: all 0.3s;
}

.ribbon-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5px;
    height: 35px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.ribbon-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    font-size: 1.15rem;
    transition: all 0.3s;
}

.ribbon-text {
    display: flex;
    flex-direction: column;
}

.ribbon-title {
    font-family: var(--font-cyber);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.ribbon-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #cbd5e1;
    font-weight: 300;
}

/* Ribbon Hovers */
.ribbon-item:hover {
    transform: translateY(-3px) scale(1.02);
}

.ribbon-item:hover .ribbon-icon-wrap {
    background: rgba(0, 210, 255, 0.15);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.ribbon-item:hover .ribbon-title {
    color: var(--neon-blue);
    text-shadow: 0 0 12px rgba(0, 210, 255, 0.5);
}

@media (max-width: 992px) {
    .footer-ribbon {
        border-radius: 24px;
        padding: 2.5rem;
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .footer-ribbon::before {
        border-radius: 24px;
    }
    
    .ribbon-item {
        width: 100%;
        justify-content: flex-start;
        padding-left: 4rem;
    }
    
    .ribbon-item:not(:last-child)::after {
        display: none;
    }
}

/* --- Animations & Effects --- */
@keyframes chevronGlow {
    0% {
        filter: drop-shadow(0 0 4px rgba(0, 210, 255, 0.45));
        opacity: 0.75;
    }
    100% {
        filter: drop-shadow(0 0 14px rgba(0, 210, 255, 0.95));
        opacity: 1;
    }
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(0.3deg);
    }
}

@keyframes docFloat {
    0% {
        transform: translateY(0px);
        box-shadow: 
            0 25px 45px rgba(0, 0, 0, 0.9),
            0 0 30px rgba(0, 210, 255, 0.15);
    }
    100% {
        transform: translateY(-10px);
        box-shadow: 
            0 30px 50px rgba(0, 0, 0, 0.95),
            0 0 40px rgba(0, 210, 255, 0.3);
    }
}

/* Page loading transitions */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.9s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

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