/* ================= INTERNSHIP PAGE CSS ================= */

/* Container utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.internship-main h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.internship-main h2 span {
    color: #ff0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

/* ================= HERO ================= */
.internship-hero {
    text-align: center;
    padding: 100px 5% 80px;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
}

.internship-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.internship-hero-content h1 span {
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.internship-hero-content p {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ================= SPLIT INFO ================= */
.internship-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 5%;
    justify-content: center;
}

.internship-box {
    flex: 1;
    min-width: 300px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.internship-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.15);
    border-color: #ff0000;
}

.internship-box i {
    font-size: 3.5rem;
    color: #ff0000;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.internship-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.internship-box p {
    color: #bbb;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* ================= DOMAINS ================= */
.internship-domains {
    padding: 80px 5%;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.domain-card {
    display: block;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.domain-card:hover {
    background: rgba(255, 0, 0, 0.05);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.1);
}

.domain-card i {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.domain-card:hover i {
    transform: scale(1.1);
}

.domain-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.domain-card p {
    color: #aaa;
    line-height: 1.5;
    font-size: 1rem;
}

/* ================= TRACKS ================= */
.internship-tracks {
    padding: 80px 5%;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.track-box {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.track-box:hover {
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-5px);
}

.track-time {
    display: inline-block;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.track-box h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
}

.track-box p {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.track-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.track-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.track-link.highlight {
    background: rgba(255, 0, 0, 0.1);
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.track-box:hover .track-link.highlight {
    background: linear-gradient(45deg, #cc0000, #ff0000);
    color: #fff;
}

.highlight-track {
    background: linear-gradient(145deg, rgba(255,0,0,0.05), rgba(0,0,0,0.8));
    border-color: rgba(255,0,0,0.3);
    box-shadow: 0 0 30px rgba(255,0,0,0.1);
}

/* ================= CTA ================= */
.internship-cta {
    text-align: center;
    padding: 100px 5%;
    background: linear-gradient(to top, rgba(255, 0, 0, 0.05), transparent);
    border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.internship-cta p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.btn-solid {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #cc0000, #ff0000);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #ff0000;
}

.btn-solid:hover {
    background: transparent;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transform: translateY(-3px);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .internship-hero-content h1 { font-size: 2.8rem; }
    .internship-main h2 { font-size: 2.2rem; }
    .internship-split { flex-direction: column; }
}
