/* ═══════════════════════════════════════════════════════════
   INNOVATIVE CORPORATE THEME
   Global CSS for site-wide design consistency
═══════════════════════════════════════════════════════════ */

:root {
    --corporate-navy: #0A2342;
    --corporate-gold: #C9A961;
    --corporate-silver: #E8E8E8;
    --accent-teal: #0A2342;
    /* Replaced Teal with Corporate Navy */
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════════════ */
body {
    cursor: none;
}

#custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--corporate-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
}

#custom-cursor.active {
    transform: scale(2);
    background: rgba(201, 169, 97, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATED GRADIENT BACKGROUND
═══════════════════════════════════════════════════════════ */
.gradient-bg {
    background: linear-gradient(135deg,
            var(--corporate-navy) 0%,
            #0d3659 25%,
            var(--accent-teal) 50%,
            var(--corporate-gold) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ═══════════════════════════════════════════════════════════
   FLOATING STATS CARDS
═══════════════════════════════════════════════════════════ */
.floating-stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.floating-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--corporate-gold), var(--accent-teal));
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--corporate-navy), var(--corporate-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ═══════════════════════════════════════════════════════════
   DIAGONAL SPLIT LAYOUT
═══════════════════════════════════════════════════════════ */
.diagonal-split {
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

/* ═══════════════════════════════════════════════════════════
   BENTO GRID
═══════════════════════════════════════════════════════════ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    grid-auto-rows: 200px;
}

.bento-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    border: 2px solid rgba(10, 35, 66, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--corporate-navy), var(--accent-teal));
    opacity: 0;
    transition: opacity 0.6s ease;
}

.bento-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 80px rgba(10, 35, 66, 0.25);
    border-color: var(--corporate-gold);
}

.bento-card:hover::before {
    opacity: 0.03;
}

.bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card.wide {
    grid-column: span 2;
}

.bento-card.tall {
    grid-row: span 2;
}

/* ═══════════════════════════════════════════════════════════
   CIRCULAR PROGRESS
═══════════════════════════════════════════════════════════ */
.progress-circle {
    width: 120px;
    height: 120px;
    position: relative;
}

.progress-circle svg {
    transform: rotate(-90deg);
}

.progress-circle circle {
    fill: none;
    stroke-width: 8;
}

.progress-circle .bg {
    stroke: #E8E8E8;
}

.progress-circle .fg {
    stroke: var(--corporate-gold);
    stroke-linecap: round;
    transition: stroke-dashoffset 2s ease;
}

.progress-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--corporate-navy);
}

/* ═══════════════════════════════════════════════════════════
   TIMELINE HORIZONTAL
═══════════════════════════════════════════════════════════ */
.timeline-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 60px 0;
}

.timeline-track {
    display: flex;
    gap: 100px;
    padding: 0 50px;
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--corporate-navy), var(--corporate-gold));
    z-index: 0;
}

.timeline-step {
    scroll-snap-align: center;
    min-width: 300px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--corporate-navy), var(--accent-teal));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: -60px auto 20px;
    box-shadow: 0 10px 30px rgba(10, 35, 66, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════════ */
.marquee {
    overflow: hidden;
    position: relative;
    background: #F8F9FA;
    padding: 40px 0;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 80px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM BUTTONS
═══════════════════════════════════════════════════════════ */
.magnetic-btn {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.premium-btn {
    background: linear-gradient(135deg, var(--corporate-navy), var(--accent-teal));
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(10, 35, 66, 0.3);
}

.premium-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--corporate-gold), var(--accent-teal));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(10, 35, 66, 0.4);
}

.premium-btn:hover::before {
    opacity: 1;
}

.premium-btn span {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   RIPPLE EFFECT
═══════════════════════════════════════════════════════════ */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    opacity: 0;
    pointer-events: none;
}

.ripple:active::after {
    animation: ripple-effect 0.6s ease-out;
}

@keyframes ripple-effect {
    from {
        opacity: 1;
        transform: scale(0);
    }

    to {
        opacity: 0;
        transform: scale(2.5);
    }
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════════ */
.section {
    padding: 120px 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Playfair Display', serif;
    color: var(--corporate-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.gradient-text {
    background: linear-gradient(135deg, var(--corporate-navy), var(--corporate-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════════════════
   BOUNCE ANIMATION
═══════════════════════════════════════════════════════════ */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-card.large,
    .bento-card.wide,
    .bento-card.tall {
        grid-column: auto;
        grid-row: auto;
    }

    body {
        cursor: auto;
    }

    #custom-cursor {
        display: none;
    }
}