/* ===== BUSINESS APPLICATIONS HERO SECTION - MICROSOFT STYLE ===== */

.business-applications-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.04) 0%, 
        rgba(29, 78, 216, 0.03) 25%,
        rgba(59, 130, 246, 0.025) 50%,
        rgba(0, 120, 212, 0.03) 75%,
        rgba(29, 78, 216, 0.04) 100%);
    animation: gradientShift 25s ease-in-out infinite;
}

.secondary-gradient {
    background: radial-gradient(ellipse at 30% 40%, 
        rgba(0, 120, 212, 0.05) 0%,
        transparent 70%),
        radial-gradient(ellipse at 70% 60%, 
        rgba(29, 78, 216, 0.04) 0%,
        transparent 70%);
    animation: gradientPulse 30s ease-in-out infinite;
}

/* Business Pattern */
.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0, 120, 212, 0.04) 1px, transparent 0);
    background-size: 50px 50px;
    opacity: 0.7;
    animation: patternShift 40s linear infinite;
}

/* Animation Keyframes */
@keyframes gradientShift {
    0%, 100% { transform: translateX(0%) translateY(0%) rotate(0deg); }
    25% { transform: translateX(3%) translateY(-2%) rotate(1deg); }
    50% { transform: translateX(-2%) translateY(3%) rotate(0deg); }
    75% { transform: translateX(2%) translateY(2%) rotate(-1deg); }
}

@keyframes gradientPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

@keyframes patternShift {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Microsoft-Style Geometric Shapes */
.business-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.biz-shape {
    position: absolute;
    border-radius: 50%;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    opacity: 0.8;
}

.biz-shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.1), rgba(29, 78, 216, 0.05));
    top: 15%;
    left: -5%;
    animation: bizFloatShape1 30s ease-in-out infinite;
    animation-delay: 0s;
}

.biz-shape-2 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.04));
    top: 70%;
    left: 12%;
    animation: bizFloatShape2 26s ease-in-out infinite;
    animation-delay: 5s;
}

.biz-shape-3 {
    width: 170px;
    height: 170px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.09), rgba(217, 119, 6, 0.045));
    top: 25%;
    right: -4%;
    animation: bizFloatShape3 34s ease-in-out infinite;
    animation-delay: 2s;
}

.biz-shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(220, 38, 38, 0.04));
    bottom: 30%;
    right: 18%;
    animation: bizFloatShape4 28s ease-in-out infinite;
    animation-delay: 7s;
}

.biz-shape-5 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(147, 51, 234, 0.05));
    bottom: 15%;
    left: 25%;
    animation: bizFloatShape5 24s ease-in-out infinite;
    animation-delay: 3s;
}

/* Microsoft Brand Squares */
.microsoft-squares {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.ms-square {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0.9;
    animation: msSquareFloat 20s ease-in-out infinite;
}

.ms-square-red {
    background: #F25022;
    top: 35%;
    right: 28%;
    animation-delay: 0s;
}

.ms-square-green {
    background: #7FBA00;
    top: 65%;
    left: 28%;
    animation-delay: 6s;
}

.ms-square-blue {
    background: #00BCF2;
    bottom: 45%;
    right: 32%;
    animation-delay: 3s;
}

.ms-square-yellow {
    background: #FFB900;
    top: 55%;
    left: 22%;
    animation-delay: 9s;
}

/* Shape Animation Keyframes */
@keyframes bizFloatShape1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.8; }
    25% { transform: translate(30px, -40px) rotate(90deg) scale(1.2); opacity: 0.6; }
    50% { transform: translate(-25px, -30px) rotate(180deg) scale(0.9); opacity: 0.9; }
    75% { transform: translate(35px, 20px) rotate(270deg) scale(1.15); opacity: 0.7; }
}

@keyframes bizFloatShape2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.7; }
    33% { transform: translate(-35px, 30px) rotate(120deg) scale(1.3); opacity: 0.9; }
    66% { transform: translate(40px, -25px) rotate(240deg) scale(0.8); opacity: 0.8; }
}

@keyframes bizFloatShape3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.6; }
    20% { transform: translate(-40px, 35px) rotate(72deg) scale(1.15); opacity: 0.8; }
    40% { transform: translate(30px, -45px) rotate(144deg) scale(0.85); opacity: 0.7; }
    60% { transform: translate(-20px, 40px) rotate(216deg) scale(1.25); opacity: 0.9; }
    80% { transform: translate(45px, -30px) rotate(288deg) scale(0.8); opacity: 0.5; }
}

@keyframes bizFloatShape4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.8; }
    30% { transform: translate(35px, -30px) rotate(108deg) scale(1.2); opacity: 0.6; }
    60% { transform: translate(-30px, 35px) rotate(216deg) scale(0.85); opacity: 0.95; }
}

@keyframes bizFloatShape5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.7; }
    40% { transform: translate(-25px, -35px) rotate(144deg) scale(1.25); opacity: 0.9; }
    80% { transform: translate(30px, 25px) rotate(288deg) scale(0.75); opacity: 0.6; }
}

@keyframes msSquareFloat {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); opacity: 0.9; }
    25% { transform: translateY(-20px) scale(1.2) rotate(90deg); opacity: 1; }
    50% { transform: translateY(-15px) scale(0.9) rotate(180deg); opacity: 0.7; }
    75% { transform: translateY(-25px) scale(1.1) rotate(270deg); opacity: 0.95; }
}

/* Business Applications Components Container */
.business-components-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
}

.business-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 2rem 2rem;
    align-items: center;
    flex: 1;
}

/* Left Panel Styling */
.business-left-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 0;
}

.business-title-section h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.2rem;
    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);
}

.business-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 95%;
}

/* Features List */
.business-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 120, 212, 0.4);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 120, 212, 0.15);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.25), rgba(29, 78, 216, 0.25));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.25);
}

.feature-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.feature-content h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Action Buttons */
.business-actions {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.business-btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.business-btn-primary {
    background: linear-gradient(135deg, #0078d4, #106ebe);
    color: white;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.35);
}

.business-btn-primary:hover {
    background: linear-gradient(135deg, #106ebe, #005a9e);
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(0, 120, 212, 0.45);
    color: white;
}

.business-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
}

.business-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    color: white;
}

/* Right Panel - Image */
.business-right-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.business-image-container {
    position: relative;
    width: 100%;
    max-width: 650px;
}

.business-image-container img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    animation: businessImageFloat 10s ease-in-out infinite;
}

@keyframes businessImageFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .business-applications-hero-section {
        min-height: 80vh;
    }
    
    .business-components-container {
        height: 80vh;
    }
    
    .business-main-content {
        padding: 80px 1.5rem 1.5rem;
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .business-applications-hero-section {
        min-height: 75vh;
    }
    
    .business-components-container {
        height: 75vh;
    }
    
    .business-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 1rem 1rem;
        text-align: center;
    }
    
    .business-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .business-shapes,
    .microsoft-squares {
        display: none;
    }
    
    .geometric-pattern {
        display: none;
    }
    
    .primary-gradient,
    .secondary-gradient {
        animation: none;
    }
    
    .business-applications-hero-section {
        min-height: 70vh;
    }
    
    .business-components-container {
        height: 70vh;
    }
    
    .business-main-content {
        padding: 40px 1rem 1rem;
    }
    
    .business-actions {
        flex-direction: column;
    }
    
    .business-btn {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .business-applications-hero-section {
        min-height: 65vh;
    }
    
    .business-components-container {
        height: 65vh;
    }
    
    .business-main-content {
        padding: 30px 0.75rem 0.75rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
}
