.max-width {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ✅ Fixed layout for left + right content */
.grid-focus {
    display: grid;
    grid-template-columns: 1fr 420px; /* left flexible, right fixed */
    gap: 3rem;
    align-items: flex-start;
}

/* Responsive: stack on small screens */
@media (max-width: 992px) {
    .grid-focus {
        grid-template-columns: 1fr; /* single column on tablets/mobiles */
    }
}

.icon1 {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-small {
    width: 1rem;
    height: 1rem;
}

/* Focus Section */
.focus-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}



.focus-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.focus-area {
    position: relative;
    opacity: 0;
    transform: translateY(2rem);
    transition: all 1s ease-out;
}

.focus-area.visible {
    opacity: 1;
    transform: translateY(0);
}

.focus-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.focus-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
    background: linear-gradient(135deg, #2563eb 0%, #f97316 100%);
    transform: translateY(-2px);
}

.focus-card:hover p{
    color: white;
}

.focus-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.focus-icon {
    padding: 0.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 0.75rem;
    color: white;
    transition: all 0.3s ease;
}

.focus-card:hover .focus-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.focus-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.focus-card:hover .focus-title {
    color: #2563eb;
}

.focus-description {
    color: #475569;
    line-height: 1.6;
}

/* Tooltips */
.tooltip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2563eb 0%, #f97316 100%);
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-0.5rem);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tooltip.visible {
    opacity: 1;
    visibility: visible;
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.tooltip p {
    font-size: 0.875rem;
    opacity: 0.9;
    color: white;
}

/* Team Container */
.team-container {
    position: relative;
    width: 600px;
    height: 400px;
    background: #00214f;
    border-radius: 12px;
    overflow: hidden;
}

.node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #E7C34F;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    cursor: pointer;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
}

/* Animation Cards */
.animation-card {
    background: white;
    border-radius: 1rem;
    padding: 1rem 2rem 1rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    opacity: 0;
    text-align: center;
  position: relative;
    transform: translateY(2rem);
    animation: fadeInUp 0.8s ease forwards;
}



.animation-card:nth-child(1) { animation-delay: 0.3s; }
.animation-card:nth-child(2) { animation-delay: 0.5s; }
.animation-card:nth-child(3) { animation-delay: 0.7s; }

.animation-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    /* margin-bottom: 1.5rem; */
    text-align: center;
}

/* Gears Container */


.gears-container {
  width: 100%;
  height: 400px; /* Increased height for bigger gears */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  position: relative;
}


.gears-container svg {
  width: 100%;          /* Controls size — you can tweak between 80–100% */
  height: auto;
  max-width: 500px;    /* Optional limit */
  transform: scale(1.2); /* Make it appear bigger */
  transition: transform 0.4s ease;
}


.gears-container:hover svg {
  transform: scale(1.3);
}

/* Pulse animation for central hub */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.8; r: 38; }
  50% { opacity: 1; r: 42; }
  100% { opacity: 0.8; r: 38; }
}

/* Collaboration Card */
.collaboration-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #f3e8ff 100%);
    border-color: #6366f1;
}

.network-container {
    height: 12.5rem;
    position: relative;
}

/* Progress Card */
.progress-card {
    background: white;
}

.progress-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.progress-label span:first-child {
    color: #1e293b;
    font-weight: 500;
}

.progress-label span:last-child {
    color: #64748b;
}

.progress-bar {
    width: 100%;
    height: 0.75rem;
    background: #e2e8f0;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 2s ease-out;
    width: 0%;
}

.progress-fill.animate {
    width: var(--progress-width);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.pulse-node {
    animation: pulse 2s infinite;
}

/* Small screens */
@media (max-width: 768px) {
    .animation-card {
        padding: 1.5rem;
    }
}

/* Extra small */
@media (max-width: 480px) {
    .animation-card {
        padding: 1rem;
    }
    
    .gears-container {
        height: 16rem;
    }
    
    .network-container {
        height: 10rem;
    }
}












        .header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .header h1 {
            font-size: 3rem;
            font-weight: bold;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .header p {
            font-size: 1.125rem;
            color: #475569;
            max-width: 42rem;
            margin: 0 auto;
        }

        .synergy-card {
            position: relative;
            background: linear-gradient(to bottom right, #fffbeb, #ffedd5);
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            padding: 2rem;
            border: 1px solid #fcd34d;
            transition: all 0.5s ease;
        }

        .synergy-card:hover {
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
        }

        .live-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #d97706;
        }

        .live-badge svg {
            width: 1.25rem;
            height: 1.25rem;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: .5;
            }
        }

        .svg-container {
            width: 100%;
            max-width: 42rem;
            margin: 0 auto;
            aspect-ratio: 4/3;
        }

        .svg-container svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
        }

        .hover-info {
            margin-top: 1.5rem;
            text-align: center;
            min-height: 4rem;
        }

        .info-box {
            display: inline-block;
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            padding: 0.75rem 1.5rem;
            border: 2px solid #fcd34d;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .info-box p {
            font-size: 0.875rem;
            font-weight: 500;
            color: #334155;
        }

        .legend {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .legend-item:hover {
            transform: scale(1.1);
        }

        .legend-dot {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        .legend-item span {
            font-size: 0.875rem;
            font-weight: 500;
            color: #334155;
        }

        .cards-grid {
            margin-top: 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .info-card {
            background: white;
            border-radius: 0.75rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border-top: 4px solid;
            transition: box-shadow 0.3s ease;
        }

        .info-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .info-card.leadership { border-color: #3b82f6; }
        .info-card.culture { border-color: #10b981; }
        .info-card.teams { border-color: #8b5cf6; }
        .info-card.strategy { border-color: #ef4444; }

        .card-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .leadership .card-icon { background-color: #dbeafe; }
        .culture .card-icon { background-color: #d1fae5; }
        .teams .card-icon { background-color: #ede9fe; }
        .strategy .card-icon { background-color: #fee2e2; }

        .card-icon-inner {
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 50%;
        }

        .leadership .card-icon-inner { background-color: #3b82f6; }
        .culture .card-icon-inner { background-color: #10b981; }
        .teams .card-icon-inner { background-color: #8b5cf6; }
        .strategy .card-icon-inner { background-color: #ef4444; }

        .info-card h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .info-card p {
            font-size: 0.875rem;
            color: #475569;
            line-height: 1.5;
        }

        .orbital-element {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }

            .header p {
                font-size: 1rem;
            }

            .synergy-card {
                padding: 1.5rem;
            }
        }