/* ===== PROJECT OPERATIONS HERO SECTION - COMPLETELY REDESIGNED ===== */

.project-operations-hero-section {
    min-height: 85vh;
    position: relative;
    background: #0A1F44;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    color: white;
}

/* Microsoft-Style Professional Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Clean Gradient Overlays */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.primary-gradient {
    background: linear-gradient(135deg, 
        rgba(0, 120, 212, 0.03) 0%, 
        rgba(106, 90, 205, 0.02) 25%,
        rgba(59, 130, 246, 0.015) 50%,
        rgba(0, 120, 212, 0.02) 75%,
        rgba(106, 90, 205, 0.03) 100%);
    animation: gradientShift 20s ease-in-out infinite;
}

.secondary-gradient {
    background: radial-gradient(ellipse at 20% 30%, 
        rgba(0, 120, 212, 0.04) 0%,
        transparent 60%),
        radial-gradient(ellipse at 80% 70%, 
        rgba(106, 90, 205, 0.03) 0%,
        transparent 60%);
    animation: gradientPulse 25s ease-in-out infinite;
}

/* Subtle Geometric Pattern */
.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.02) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
    animation: patternShift 30s linear infinite;
}

/* Animation Keyframes */
@keyframes gradientShift {
    0%, 100% { transform: translateX(0%) translateY(0%); }
    25% { transform: translateX(1%) translateY(-1%); }
    50% { transform: translateX(-1%) translateY(1%); }
    75% { transform: translateX(1%) translateY(1%); }
}

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

@keyframes patternShift {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* Microsoft-Style Geometric Shapes */
.project-operations-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.project-ops-shape {
    position: absolute;
    border-radius: 50%;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    opacity: 0.6;
}

.project-ops-shape-1 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(29, 78, 216, 0.08));
    top: 15%;
    left: -5%;
    animation: projectFloatShape1 25s ease-in-out infinite;
    animation-delay: 0s;
}

.project-ops-shape-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.06));
    top: 60%;
    left: 10%;
    animation: projectFloatShape2 20s ease-in-out infinite;
    animation-delay: 3s;
}

.project-ops-shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(147, 51, 234, 0.05));
    top: 25%;
    right: -8%;
    animation: projectFloatShape3 30s ease-in-out infinite;
    animation-delay: 1s;
}

.project-ops-shape-4 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(217, 119, 6, 0.06));
    bottom: 20%;
    right: 15%;
    animation: projectFloatShape4 22s ease-in-out infinite;
    animation-delay: 5s;
}

.project-ops-shape-5 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    bottom: 40%;
    left: 20%;
    animation: projectFloatShape5 18s ease-in-out infinite;
    animation-delay: 2s;
}

/* Microsoft Squares */
.microsoft-squares {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.ms-square {
    position: absolute;
    width: 16px;
    height: 16px;
    opacity: 0.7;
    animation: msSquareFloat 15s ease-in-out infinite;
}

.ms-square-red {
    background: #F25022;
    top: 30%;
    right: 25%;
    animation-delay: 0s;
}

.ms-square-green {
    background: #7FBA00;
    top: 70%;
    left: 30%;
    animation-delay: 4s;
}

.ms-square-blue {
    background: #00BCF2;
    bottom: 35%;
    right: 40%;
    animation-delay: 2s;
}

.ms-square-yellow {
    background: #FFB900;
    top: 45%;
    left: 15%;
    animation-delay: 6s;
}

/* Animation Keyframes */
@keyframes projectFloatShape1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.6; }
    25% { transform: translate(20px, -30px) rotate(90deg) scale(1.1); opacity: 0.4; }
    50% { transform: translate(-15px, -20px) rotate(180deg) scale(0.9); opacity: 0.7; }
    75% { transform: translate(25px, 10px) rotate(270deg) scale(1.05); opacity: 0.5; }
}

@keyframes projectFloatShape2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.5; }
    33% { transform: translate(-25px, 20px) rotate(120deg) scale(1.2); opacity: 0.7; }
    66% { transform: translate(30px, -15px) rotate(240deg) scale(0.8); opacity: 0.6; }
}

@keyframes projectFloatShape3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.4; }
    20% { transform: translate(-30px, 25px) rotate(72deg) scale(1.1); opacity: 0.6; }
    40% { transform: translate(20px, -35px) rotate(144deg) scale(0.9); opacity: 0.5; }
    60% { transform: translate(-10px, 30px) rotate(216deg) scale(1.15); opacity: 0.7; }
    80% { transform: translate(35px, -20px) rotate(288deg) scale(0.85); opacity: 0.3; }
}

@keyframes projectFloatShape4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.6; }
    30% { transform: translate(25px, -20px) rotate(108deg) scale(1.1); opacity: 0.4; }
    60% { transform: translate(-20px, 25px) rotate(216deg) scale(0.9); opacity: 0.8; }
}

@keyframes projectFloatShape5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.5; }
    40% { transform: translate(-15px, -25px) rotate(144deg) scale(1.2); opacity: 0.7; }
    80% { transform: translate(20px, 15px) rotate(288deg) scale(0.8); opacity: 0.4; }
}

@keyframes msSquareFloat {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); opacity: 0.7; }
    25% { transform: translateY(-15px) scale(1.1) rotate(90deg); opacity: 0.9; }
    50% { transform: translateY(-10px) scale(0.9) rotate(180deg); opacity: 0.5; }
    75% { transform: translateY(-20px) scale(1.05) rotate(270deg); opacity: 0.8; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .project-operations-hero-section {
        min-height: 80vh;
    }
    
    .project-operations-components-container {
        height: 80vh;
    }
    
    .project-operations-main-content {
        padding: 40px 1.5rem 1.5rem;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .project-operations-hero-section {
        min-height: 75vh;
    }
    
    .project-operations-components-container {
        height: 75vh;
    }
    
    .project-operations-main-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 1rem 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .project-operations-shapes,
    .microsoft-squares {
        display: none;
    }
    
    .geometric-pattern {
        display: none;
    }
    
    .primary-gradient,
    .secondary-gradient {
        animation: none;
    }
    
    .project-operations-hero-section {
        min-height: 70vh;
    }
    
    .project-operations-components-container {
        height: 70vh;
    }
    
    .project-operations-main-content {
        padding: 20px 1rem 1rem;
    }
}

@media (max-width: 576px) {
    .project-operations-hero-section {
        min-height: 65vh;
    }
    
    .project-operations-components-container {
        height: 65vh;
    }
    
    .project-operations-main-content {
        padding: 15px 0.75rem 0.75rem;
    }
}

/* Project Operations Components Container */
.project-operations-components-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
}

.project-operations-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 2rem 2rem;
    align-items: center;
    flex: 1;
}

/* Left Panel Styling */
.project-operations-left-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    justify-content: flex-start;
}

.project-operations-header {
    margin-bottom: 0;
}

.project-operations-title-section {
    margin-bottom: 0.8rem;
}

.project-operations-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 30px rgba(59, 130, 246, 0.4); }
    100% { text-shadow: 0 0 40px rgba(59, 130, 246, 0.6), 0 0 60px rgba(30, 58, 138, 0.3); }
}

.project-operations-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    max-width: 90%;
    margin: 0;
}

/* Features List */
.project-operations-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
}

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

@keyframes featureSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
}

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

.feature-content h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    margin: 0 0 0.2rem 0;
}

.feature-content p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.3;
}

/* Stats Row */
.project-operations-stats-row {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    justify-content: flex-start;
}

.stat-item {
    text-align: center;
    animation: statCountUp 1s ease-out 1s both;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Actions */
.project-operations-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.project-operations-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.project-operations-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.project-operations-btn:hover::before {
    left: 100%;
}

.project-operations-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.project-operations-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    color: white;
}

.project-operations-btn-secondary {
    background: transparent;
    color: #60a5fa;
    border: 2px solid #60a5fa;
}

.project-operations-btn-secondary:hover {
    background: #60a5fa;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
}

/* Right Panel Styling */
.project-operations-right-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem 0;
}

.project-operations-image-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: auto;
}

.project-operations-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .project-operations-main-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .project-operations-main-title {
        font-size: 3rem;
    }
    
    .project-operations-stats-row {
        justify-content: center;
    }
    
    .project-operations-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .project-operations-hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .project-operations-main-content {
        padding: 2rem 1rem;
        gap: 3rem;
    }
    
    .project-operations-main-title {
        font-size: 2.5rem;
    }
    
    .project-operations-subtitle {
        font-size: 1.1rem;
    }
    
    .project-operations-stats-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .project-operations-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .project-operations-btn {
        width: 100%;
        justify-content: center;
    }
}