/*
==================================
  VALUEX INNOVATIONS - INTERNSHIPS PAGE STYLES
==================================
*/

/* Variables from main style.css should be imported or redefined */
:root {
    --primary-navy: #0f172a;
    --primary-blue: #1e3a8a;
    --accent-cyan: #06b6d4;
    --accent-orange: #fb923c;
    --text-gradient: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-cyan) 100%);
}

body {
    background-color: #f8f9fa;
}

/* Hero Section */
.intern-hero-section {
    background: var(--primary-navy);
    padding: 8rem 0 6rem;
    color: white;
    text-align: center;
}

.intern-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
}

.intern-hero-title .text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intern-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.intern-hero-meta {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

/* Key Benefits Section */
.key-benefits-section {
    padding: 4rem 0;
    background: white;
    margin-top: -4rem;
    position: relative;
    border-radius: 1.5rem 1.5rem 0 0;
}

.benefit-card-intern {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.benefit-card-intern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-text {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Main Content */
.intern-main-content {
    padding: 4rem 0;
}

.intern-section {
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Domain Cards */
.domain-card {
    display: block;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}

.domain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.domain-icon {
    font-size: 2rem;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--gradient-cyan);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domain-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

.domain-text {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Application Process */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 1.25rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    background: var(--gradient-cyan);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.step-text {
    color: #6c757d;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-internship-section {
    padding: 5rem 0;
    background: white;
}

.why-intern-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    height: 100%;
}

.why-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.why-intern-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-intern-card p {
    color: #6c757d;
}

/* CTA Section */
.intern-cta-sectio {
    background: var(--primary-navy);
    padding: 5rem 0;
    color: white;
}

.btn-cta-white {
    background: white;
    color: var(--primary-blue);
    padding: 0.75rem 2rem;
    border-radius: 20px;
    font-weight: 600;
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 0.75rem 2rem;
    border-radius: 20px;
}
.btn-cta-outline:hover {
    border-color: white;
    color: white;
}
/*certification*/

.certificate-verification-section {
    padding: 70px 0;
    background: #f7f7ff;
}

.verify-box {
    max-width: 500px;
    margin: auto;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.verify-input {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.verify-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

.verify-result img {
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
}
.certificate-verification-section {
    padding: 70px 0;
    background: #f5f7ff;
}

.verify-box {
    max-width: 450px;
    margin: auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.verify-input {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #bbb;
}

.verify-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

.verify-result {
    margin-top: 20px;
    font-size: 17px;
    font-weight: 600;
}
