/* ============================================
   Theme Override — main_1.css visual style
   Applied on top of existing styles.css
   ============================================ */

/* --- Global --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f8f9fa;
}

/* --- Buttons --- */
.btn-primary {
    background: #3b82f6;
    border-radius: 8px;
    box-shadow: none;
    padding: 13px 28px;
    font-size: 15px;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}
.btn-secondary {
    border-color: #3b82f6;
    color: #3b82f6;
    border-radius: 8px;
}
.btn-secondary:hover {
    background: #3b82f6;
    color: white;
}
.btn-submit {
    background: #3b82f6;
    border-radius: 8px;
}
.btn-submit:hover {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.btn-large {
    border-radius: 8px;
    background: #3b82f6;
    box-shadow: none;
}

/* --- Navbar --- */
.navbar {
    background: #1f2937;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-center a {
    color: rgba(255, 255, 255, 0.8);
}
.nav-center a:hover {
    color: #ffffff;
}
.dropdown span {
    color: rgba(255, 255, 255, 0.8);
}
.logo span {
    color: #3b82f6;
}
.login-btn {
    background: #3b82f6;
    border-radius: 6px;
}
.login-btn:hover {
    background: #2563eb;
}
.logo img {
    filter: brightness(0) invert(1);
}

/* --- Hero --- */
.hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.hero::before {
    background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    opacity: 1;
}
.hero h1 {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    color: white;
    font-size: 3.2rem;
    line-height: 1.1;
}
.hero h2 {
    color: rgba(255, 255, 255, 0.9);
}
.hero p {
    color: rgba(255, 255, 255, 0.85);
}
.deadline-banner {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
}
.hero-form {
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: none;
}
.hero-form h3 {
    color: #1f2937;
}
.interest-form input,
.interest-form select {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
}
.interest-form input:focus,
.interest-form select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* --- Program Features --- */
.program-features {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.program-features .feature {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}
.program-features .feature:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}

/* --- About / Why Choose Section --- */
.about-emc {
    background: #f8f9fa;
    padding: 5rem 0;
}
.about-emc h2 {
    font-size: 2.5rem;
}
.about-emc h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    margin: 1rem auto 0;
    border-radius: 2px;
}
.about-item {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}
.about-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.1);
}
.about-item .icon {
    background: rgba(59, 130, 246, 0.15);
    width: 70px;
    height: 70px;
    color: #3b82f6;
}
.about-item .icon i {
    color: #3b82f6;
}

/* --- Bootcamp Overview --- */
.bootcamp-overview {
    padding: 5rem 0;
}
.bootcamp-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.bootcamp-overview h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    margin: 1rem auto 0;
    border-radius: 2px;
}
.overview-item {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: white;
}
.overview-item:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    transform: translateX(5px);
}
.overview-item .icon {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}
.overview-item .icon i {
    color: #3b82f6;
}

/* --- Video Testimonials --- */
.video-testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 4rem 0;
}
.video-testimonials h2 {
    font-size: 2.5rem;
}
.video-testimonials h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    margin: 1rem auto 0;
    border-radius: 2px;
}
.video-testimonials .video-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.video-info .company {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border-radius: 8px;
}

/* --- Research Papers --- */
.research-papers {
    padding: 5rem 0;
}
.research-papers h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    margin: 1rem auto 0;
    border-radius: 2px;
}
.paper-card {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}
.paper-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

/* --- Curriculum --- */
.curriculum {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    color: #1a202c !important;
}
.curriculum h2 {
    color: #1a202c !important;
    font-size: 2.5rem;
}
.curriculum h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    margin: 1rem auto 0;
    border-radius: 2px;
}
.module {
    background: white !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    backdrop-filter: none;
}
.module:hover {
    border-color: #3b82f6 !important;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
}
.module-header {
    color: #1a202c !important;
}
.module-number {
    background: rgba(59, 130, 246, 0.15) !important;
    color: #3b82f6 !important;
}
.curriculum .module-number {
    background: rgba(59, 130, 246, 0.15) !important;
    color: #3b82f6 !important;
}
.module h3 {
    color: #1f2937 !important;
}
.module-content {
    color: #6b7280 !important;
}
.module-content p {
    color: #6b7280 !important;
}

/* --- Program Designer --- */
.program-designer {
    padding: 5rem 0;
}
.program-designer h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.designer-info h4 {
    color: #3b82f6;
}

/* --- Stats Section --- */
.stats-section .stat-icon {
    background: rgba(59, 130, 246, 0.15);
}
.stats-section .stat-icon i {
    color: #3b82f6;
}
.stats-section .stat-number {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #3b82f6;
    background-clip: unset;
    color: #3b82f6;
}
.stats-section .stat-box:hover {
    border-color: #3b82f6;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.12);
}
.stats-section .stat-box::before {
    background: #3b82f6;
}

/* --- Student Reviews --- */
.student-reviews {
    padding: 5rem 0;
}
.student-reviews h2 {
    font-size: 2.5rem;
}
.student-reviews h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    margin: 1rem auto 0;
    border-radius: 2px;
}
.testimonials-grid {
    gap: 1.5rem;
}
.testimonial-card {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* --- Contact Section --- */
.contact-section {
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

/* --- Student Companies --- */
.student-companies {
    padding: 5rem 0;
}
.student-companies h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.stat {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.stat h3 {
    color: #3b82f6;
}

/* --- LinkedIn Activity --- */
.linkedin-activity {
    padding: 5rem 0;
}
.linkedin-activity h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* --- Graduation --- */
.graduation-eligibility {
    padding: 4rem 0;
    background: white;
}
.graduation-eligibility h2 {
    font-size: 2.5rem;
}

/* --- Internship --- */
.internship-program {
    background: #f8f9fa;
    padding: 5rem 0;
}
.internship-program h2 {
    font-size: 2.5rem;
}

/* --- Program Highlights --- */
.program-highlights {
    padding: 5rem 0;
}
.program-highlights h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.highlights-grid .highlight {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}
.highlights-grid .highlight:hover {
    background: #e0e7ff;
    border-color: #3b82f6;
}

/* --- Recognition --- */
.recognition {
    background: white;
    padding: 5rem 0;
}
.recognition h2 {
    font-size: 2.5rem;
}

/* --- Journey Steps --- */
.journey-steps {
    padding: 5rem 0;
}
.journey-steps h2 {
    font-size: 2.5rem;
}
.step {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.step:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

/* --- Intern Testimonials --- */
.intern-testimonials {
    padding: 5rem 0;
    background: #f8f9fa;
}
.intern-testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.testimonial {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.testimonial:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.author {
    color: #3b82f6;
}

/* --- Certification --- */
.certification {
    padding: 5rem 0;
}
.certification h2 {
    font-size: 2.5rem;
}
.price-discounted {
    color: #3b82f6;
}
.pricing-features li::before {
    color: #3b82f6;
}

/* --- How Program Works --- */
.how-program-works {
    padding: 5rem 0;
    background: white;
}
.how-program-works h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.program-step {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.program-step::before {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

/* --- Community Section --- */
.community-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 5rem 0;
}

/* --- FAQ --- */
.faq {
    padding: 5rem 0;
}
.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.faq-question:hover {
    color: #3b82f6;
}
.faq-question:hover h3 {
    color: #3b82f6;
}

/* --- Final CTA --- */
.final-cta {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

/* --- Newsletter --- */
.newsletter-section {
    background: #f8f9fa;
    padding: 4rem 0;
}
.newsletter-section h2 {
    font-size: 2rem;
    color: #1f2937;
}
.subscribe-form .notify-btn {
    background: #3b82f6;
    border-radius: 8px;
}
.subscribe-form .notify-btn:hover {
    background: #2563eb;
}

/* --- Modal --- */
.modal-content {
    border-radius: 16px;
}
.btn-submit-modal {
    background: #3b82f6;
    border-radius: 8px;
}
.btn-submit-modal:hover {
    background: #2563eb;
}

/* --- Research CTA --- */
.research-cta .btn-primary {
    background: #3b82f6;
}

/* --- Notify Button --- */
.notify-btn {
    background: #3b82f6 !important;
}
.notify-btn:hover {
    background: #2563eb !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}

/* --- Paper card top border --- */
.paper-card::before,
.stat-box::before {
    background: #3b82f6 !important;
}

/* --- LinkedIn post top border --- */
.linkedin-post::before {
    background: #3b82f6 !important;
}

/* --- Companies Marquee --- */
.companies-marquee .company-logo img {
    border-radius: 8px;
}

/* --- Gamify Marquee --- */
.gamify-item {
    background: rgba(59, 130, 246, 0.15) !important;
    color: #3b82f6 !important;
    box-shadow: none !important;
}

/* --- Responsive tweaks --- */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
        min-height: auto;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .about-emc h2,
    .bootcamp-overview h2,
    .student-reviews h2,
    .student-companies h2,
    .linkedin-activity h2,
    .graduation-eligibility h2,
    .internship-program h2,
    .program-highlights h2,
    .recognition h2,
    .journey-steps h2,
    .intern-testimonials h2,
    .certification h2,
    .how-program-works h2,
    .community-section h2,
    .faq h2,
    .curriculum h2,
    .program-designer h2 {
        font-size: 2rem !important;
    }
}
