/* Software page specific styles */

/* Hero OS Section */
.hero-os {
    padding: 4rem 0 6rem;
    text-align: center;
    background: var(--color-light);
}

.hero-os .section-title {
    margin-bottom: 3rem;
}

/* Hero Section for software.html */
.hero {
    padding: 4rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, #011f4b 0%, #011f4b 100%);
    color: var(--color-white);
}

.hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero .section-title {
    margin-bottom: 3rem;
    color: var(--color-white);
}

/* OS Tabs container */
.os-tabs {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* OS Tab styles */
.os-tab {
    background: var(--color-white);
    border-radius: 20px;
    padding: 4rem 2rem;
    width: 200px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.os-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.os-tab:hover {
    transform: translateY(-20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.os-icon {
    font-size: 8rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
    transition: all 0.4s ease;
    height: 140px;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(1, 31, 75, 0.05) 0%, rgba(3, 57, 108, 0.05) 100%);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.os-tab:hover .os-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(1, 31, 75, 0.1) 0%, rgba(3, 57, 108, 0.1) 100%);
}

.os-tab h3 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.os-tab p {
    color: var(--color-gray);
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .os-tabs {
        gap: 2rem;
    }
    
    .os-tab {
        width: 100%;
        max-width: 300px;
        padding: 2.5rem 1.5rem;
    }
    
    .os-icon {
        font-size: 5rem;
        height: 100px;
        width: 100px;
    }
    
    .os-tab h3 {
        font-size: 1.8rem;
    }
}
