/* ===== APPLICATIONS DEVELOPMENT HERO SECTION - MICROSOFT STYLE ===== */

.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(106, 90, 205, 0.04) 0%, 
        rgba(59, 130, 246, 0.03) 25%,
        rgba(168, 85, 247, 0.025) 50%,
        rgba(59, 130, 246, 0.03) 75%,
        rgba(106, 90, 205, 0.04) 100%);
    animation: gradientShift 22s ease-in-out infinite;
}

.secondary-gradient {
    background: radial-gradient(ellipse at 25% 35%, 
        rgba(168, 85, 247, 0.05) 0%,
        transparent 65%),
        radial-gradient(ellipse at 75% 65%, 
        rgba(59, 130, 246, 0.04) 0%,
        transparent 65%);
    animation: gradientPulse 28s ease-in-out infinite;
}

/* Subtle Code Pattern */
.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(168, 85, 247, 0.03) 1px, transparent 0);
    background-size: 45px 45px;
    opacity: 0.6;
    animation: patternShift 35s linear infinite;
}

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

@keyframes gradientPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.03); }
}

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

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

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

.app-shape-1 {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(147, 51, 234, 0.06));
    top: 20%;
    left: -3%;
    animation: appFloatShape1 28s ease-in-out infinite;
    animation-delay: 0s;
}

.app-shape-2 {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
    top: 65%;
    left: 15%;
    animation: appFloatShape2 24s ease-in-out infinite;
    animation-delay: 4s;
}

.app-shape-3 {
    width: 190px;
    height: 190px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.04));
    top: 30%;
    right: -6%;
    animation: appFloatShape3 32s ease-in-out infinite;
    animation-delay: 2s;
}

.app-shape-4 {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05));
    bottom: 25%;
    right: 20%;
    animation: appFloatShape4 26s ease-in-out infinite;
    animation-delay: 6s;
}

/* 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: 18px;
    height: 18px;
    opacity: 0.8;
    animation: msSquareFloat 18s ease-in-out infinite;
}

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

.ms-square-green {
    background: #7FBA00;
    top: 75%;
    left: 25%;
    animation-delay: 5s;
}

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

.ms-square-yellow {
    background: #FFB900;
    top: 50%;
    left: 20%;
    animation-delay: 8s;
}

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

@keyframes appFloatShape2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.6; }
    33% { transform: translate(-30px, 25px) rotate(120deg) scale(1.25); opacity: 0.8; }
    66% { transform: translate(35px, -20px) rotate(240deg) scale(0.85); opacity: 0.7; }
}

@keyframes appFloatShape3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.5; }
    20% { transform: translate(-35px, 30px) rotate(72deg) scale(1.12); opacity: 0.7; }
    40% { transform: translate(25px, -40px) rotate(144deg) scale(0.88); opacity: 0.6; }
    60% { transform: translate(-15px, 35px) rotate(216deg) scale(1.18); opacity: 0.8; }
    80% { transform: translate(40px, -25px) rotate(288deg) scale(0.82); opacity: 0.4; }
}

@keyframes appFloatShape4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.7; }
    30% { transform: translate(30px, -25px) rotate(108deg) scale(1.15); opacity: 0.5; }
    60% { transform: translate(-25px, 30px) rotate(216deg) scale(0.9); opacity: 0.9; }
}

@keyframes msSquareFloat {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); opacity: 0.8; }
    25% { transform: translateY(-18px) scale(1.15) rotate(90deg); opacity: 1; }
    50% { transform: translateY(-12px) scale(0.9) rotate(180deg); opacity: 0.6; }
    75% { transform: translateY(-25px) scale(1.08) rotate(270deg); opacity: 0.9; }
}

/* Applications Components Container */
.applications-components-container {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
}

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

/* Left Panel Styling */
.applications-left-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}

.applications-title-section h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.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);
}

.applications-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 90%;
}

/* Features List */
.applications-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.feature-icon i {
    font-size: 1.4rem;
    color: #ffffff;
}

.feature-content h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

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

/* Action Buttons */
.applications-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.applications-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.applications-btn-primary {
    background: linear-gradient(135deg, #6a5acd, #8a2be2);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.applications-btn-primary:hover {
    background: linear-gradient(135deg, #7b68ee, #9932cc);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 90, 205, 0.4);
    color: white;
}

.applications-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.applications-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

/* Right Panel - Image */
.applications-right-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.applications-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.applications-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: applicationsImageFloat 8s ease-in-out infinite;
}

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

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

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

@media (max-width: 768px) {
    .applications-shapes,
    .microsoft-squares {
        display: none;
    }
    
    .geometric-pattern {
        display: none;
    }
    
    .primary-gradient,
    .secondary-gradient {
        animation: none;
    }
    
    .applications-hero-section {
        min-height: 70vh;
    }
    
    .applications-components-container {
        height: 70vh;
    }
    
    .applications-main-content {
        padding: 30px 1rem 1rem;
    }
    
    .applications-actions {
        flex-direction: column;
    }
    
    .applications-btn {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .applications-hero-section {
        min-height: 65vh;
    }
    
    .applications-components-container {
        height: 65vh;
    }
    
    .applications-main-content {
        padding: 20px 0.75rem 0.75rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
}
