/* themes/corporate-tech/assets/css/style.css - Corporate Tech Theme Styles */

/* Modern gradient utilities */
.tech-gradient-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, #020617 100%) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Smooth transitions */
.tech-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.06);
    background: #ffffff;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.1) !important;
    border-color: rgba(0, 86, 179, 0.2) !important;
}

.tech-card:hover .tech-icon-box {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    transform: rotate(360deg);
}

.tech-icon-box {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.5s ease;
}

/* Hero Section */
.tech-hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.tech-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.tech-hero-content {
    position: relative;
    z-index: 2;
}

/* Tech Stack items styling */
.tech-stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.04);
}

.tech-stack-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.08);
    border-color: var(--primary-color);
}

.tech-stack-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* Timelines / Accords */
.accordion-button:not(.collapsed) {
    background-color: rgba(0, 86, 179, 0.08) !important;
    color: var(--primary-color) !important;
}

/* Team members styling */
.team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
}

.team-card img {
    height: 320px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    color: #ffffff;
    text-align: center;
}

.team-info h5 {
    margin-bottom: 2px;
    font-weight: 700;
}

.team-info p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s;
}

#back-to-top:hover {
    transform: translateY(-3px);
    background: var(--accent-color);
}
