/* ═══════════════════════════════════════════════════════════
   INTERNSHIPS PAGE STYLES — RootAxis Technologies
   ═══════════════════════════════════════════════════════════ */
.in-hero { 
    padding: 90px 0 50px; 
    position: relative; 
    overflow: hidden; 
    background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 30%, #f0f0ff 60%, #ecfdf5 100%);
    min-height: clamp(45vh, 65vh, 85vh);
    display: flex;
    align-items: center;
}
.in-dot-grid { 
    position: absolute; 
    inset: 0; 
    background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px); 
    background-size: 40px 40px; 
    pointer-events: none; 
}
.in-label { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    padding: 8px 16px; 
    font-size: 0.72rem; 
    font-weight: 800; 
    letter-spacing: 0.12em; 
    text-transform: uppercase; 
    color: var(--ra-primary); 
    background: #ffffff; 
    border: 1px solid rgba(0,0,0,0.06); 
    border-radius: 100px; 
    margin-bottom: 24px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.in-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.in-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.1);
    border-color: var(--ra-primary);
}
.in-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: #f8fafc;
    color: var(--ra-primary);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.in-card:hover .in-card-icon {
    background: var(--ra-primary);
    color: #fff;
    transform: rotate(10deg);
}
.in-section-light {
    background: #fafafa;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 80px 0;
}
.in-section-white {
    background: #ffffff;
    padding: 80px 0;
}
.in-step {
    position: relative;
    padding: 32px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
}
.in-step:hover {
    border-color: var(--ra-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.in-step-num {
    position: absolute;
    top: -15px;
    left: 32px;
    background: var(--ra-primary);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(var(--ra-primary-rgb),0.4);
}
.in-benefit-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
}
.in-cta-box {
    background: linear-gradient(135deg, #0b0f19 0%, #1e293b 100%);
    border-radius: 32px;
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}
.animate-pulse-slow {
    animation: pulse-slow 4s infinite ease-in-out;
}
@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}
@keyframes float-slow {
    0% { transform: translate(0,0); }
    100% { transform: translate(-20px, -20px); }
}
@keyframes pulse-slow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
