/* --- Global Styles & Variables --- */
:root { --primary-yellow: #FFD93D; --primary-blue: #3A4F8B; --accent-blue: #3B82F6; --dark-navy: #1C2036; --text-dark: #111827; --text-medium: #4B5563; --bg-grey: #F8F9FA; --border-color: #E5E7EB; --font-family: 'Inter', sans-serif; --radius: 8px; --shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); background-color: #fff; color: var(--text-dark); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; }
p { color: var(--text-medium); }
.section-title { text-align: center; font-size: 2.25rem; font-weight: 800; margin-bottom: 50px; }
.section-title-subtle { text-align: center; color: var(--primary-blue); font-weight: 500; margin-bottom: 24px; }

/* --- Buttons --- */
.btn { display: inline-block; padding: 12px 24px; border-radius: var(--radius); text-decoration: none; font-weight: 600; transition: all 0.2s ease; border: 2px solid transparent; cursor: pointer; text-align: center; }
.btn-dark { background-color: var(--dark-navy); color: #fff; }
.btn-dark:hover { background-color: #333954; }
.btn-outline { border-color: var(--dark-navy); color: var(--dark-navy); background-color: #fff; }
.btn-outline:hover { background-color: #f1f1f1; }
.btn-yellow { background-color: var(--primary-yellow); color: var(--dark-navy); font-size: 1.1rem; padding: 14px 28px; border: 2px solid #e7c030; }
.btn-yellow:hover { background-color: #ffce00; }
.btn-large { padding: 14px 28px; }

/* --- Header & Navigation --- */
.header { position: sticky; top: 0; width: 100%; z-index: 1000; background-color: #fff; box-shadow: var(--shadow); }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-link { text-decoration: none; color: var(--text-dark); font-weight: 600; }
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.mobile-nav { display: none; }

/* --- Hero Section --- */
.hero-section { background-color: var(--bg-grey); padding: 60px 0; background-image: linear-gradient(135deg, rgba(255,255,255,0) 48%, #eef2f9 48%, #eef2f9 52%, rgba(255,255,255,0) 52%); background-size: 30px 30px; }
.hero-container { display: flex; align-items: center; gap: 40px; }
.hero-content { flex: 1; }
.hero-content h1 { font-size: 3rem; font-weight: 800; line-height: 1.2; }
.hero-content p { font-size: 1.1rem; margin: 20px 0; }
.hero-stats { display: flex; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; align-items: center; }
.stat-item { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.stat-item.student-avatars { gap: 12px; }
.avatar-group { display: flex; }
.avatar-group img { height: 32px; width: 32px; border-radius: 50%; border: 2px solid white; }
.avatar-group img:not(:first-child) { margin-left: -12px; }
.stat-item i { color: var(--accent-blue); font-size: 1.5rem; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.deadline { margin-top: 16px; color: var(--text-medium); }
.hero-image { flex: 1; max-width: 50%; }
.hero-image img { width: 100%; height: auto; border-radius: var(--radius); }

/* --- Trusted By Section --- */
.trusted-by-section { padding: 60px 0 40px; }
.logos-container-desktop { display: block; text-align: center; }
.logos-container-desktop img { max-width: 100%; height: auto; }
.logos-grid-mobile { display: none; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px 25px; padding: 0 10px; }
.logos-grid-mobile img { max-height: 35px; max-width: 120px; object-fit: contain; opacity: 0.8; transition: opacity 0.3s ease; }
.logos-grid-mobile img:hover { opacity: 1; }

/* --- By The Numbers Section --- */
.numbers-section { padding: 80px 0; }
.numbers-box { background-color: var(--primary-yellow); background-image: linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px), linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px); background-size: 50px 50px; padding: 50px 60px; display: flex; align-items: center; gap: 40px; position: relative; }
.numbers-box::after { content: ''; position: absolute; bottom: -12px; left: 20px; right: 0; height: 12px; background-color: var(--primary-blue); }
.numbers-box::before { content: ''; position: absolute; top: 20px; bottom: -12px; right: -12px; width: 12px; background-color: var(--primary-blue); }
.numbers-heading { flex-basis: 35%; }
.numbers-heading h2 { font-size: 2.75rem; font-weight: 800; line-height: 1.1; color: var(--text-dark); }
.numbers-stats { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: left; }
.number-item .count { font-size: 1.75rem; font-weight: 800; display: block; color: var(--text-dark); }
.number-item .label { font-weight: 500; color: var(--text-dark); }

/* --- Grid Layout Sections --- */
.grid-container { display: flex; align-items: center; gap: 50px; }
.grid-content { flex: 1; }
.grid-content h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 16px; }
.grid-content ul { list-style: none; display: flex; flex-direction: column; gap: 16px; padding: 0; }
.grid-content ul li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.grid-content ul li img { height: 29px; }
.grid-content ul li i { color: var(--accent-blue); font-size: 1.5rem; width: 24px; text-align: center; }
.grid-image { flex: 1; }
.grid-image img { width: 100%; border-radius: var(--radius); }

/* --- Real Work Section List Styling --- */
.real-work-section .grid-content strong > p { font-size: 1.1rem; color: var(--text-dark); line-height: 1.6; margin-bottom: 24px; }
.real-work-section .grid-content ul { list-style: none; display: flex; flex-direction: column; gap: 20px; padding: 0; margin: 0; }
.real-work-section .grid-content ul li { display: flex; align-items: flex-start; gap: 15px; font-weight: 500; line-height: 1.6; color: var(--text-dark); }
.real-work-section .grid-content ul li img { height: 28px; width: 28px; object-fit: contain; flex-shrink: 0; margin-top: 3px; }

/* --- Privilege CTA Section --- */
.privilege-section { padding: 0; position: relative; overflow: visible; }
.privilege-wrapper { background-color: var(--primary-blue); color: #fff; background-image: linear-gradient(135deg, rgba(255,255,255,0) 48%, rgba(255,255,255,0.05) 48%, rgba(255,255,255,0.05) 52%, rgba(255,255,255,0) 52%); background-size: 30px 30px; position: relative; z-index: 1; }
.privilege-container { display: flex; align-items: center; position: relative; z-index: 2; }
.privilege-content { flex: 1; padding: 60px 0; }
.privilege-content h2 { font-size: 2.5rem; }
.privilege-content p { color: #e0e0e0; font-size: 1.1rem; }
.privilege-content .free-highlight { color: var(--primary-yellow); font-size: 1.2rem; font-weight: 700; margin: 16px 0 24px; }
.privilege-image { flex-shrink: 0; max-width: 380px; align-self: flex-start; margin-top: -60px; z-index: 3; }
.privilege-image img { display: block; max-width: 100%; height: auto; }
.terms-footer { background-color: var(--dark-navy); padding: 12px 0; font-size: 0.8rem; }
.terms-footer p { color: #e0e0e0; }

/* --- What You'll Get Section --- */
.get-section { padding-top: 70px; }
.get-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 25px; }
.get-card { background-color: #fff; border: 2px solid var(--dark-navy); border-radius: var(--radius); padding: 24px; text-align: center; font-weight: 600; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; box-shadow: 8px 8px 0 var(--primary-yellow); transition: transform 0.2s ease, box-shadow 0.2s ease; min-height: 140px; }
.get-card:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0 var(--primary-yellow); }
.get-card img { height: 48px; width: 48px; object-fit: contain; }
.get-card span { display: block; font-size: 15px; line-height: 1.4; }

/* --- Available Internships Section --- */
.internship-section { background-color: var(--bg-grey); }
.internship-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.internship-card { background-color: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); padding: 24px; transition: all 0.3s ease; }
.internship-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent-blue); }
.internship-card i { font-size: 2rem; color: var(--accent-blue); margin-bottom: 16px; }
.internship-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--dark-navy); }
.internship-card p { margin-bottom: 16px; }
.internship-card a { text-decoration: none; color: var(--accent-blue); font-weight: 600; }
.internship-card a i { font-size: 0.8rem; margin-left: 4px; transition: transform 0.2s ease; }
.internship-card:hover a i { transform: translateX(4px); }

/* --- Success & FAQ Sections --- */
.success-section { background-color: #fff; }
.faq-section { background-color: var(--bg-grey); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background-color: var(--bg-grey); padding: 24px; border-radius: var(--radius); text-align: center; }
.stars { color: var(--primary-yellow); font-size: 1.5rem; }
.testimonial-card p { font-size: 1.1rem; font-style: italic; margin: 12px 0; color: var(--text-dark); }
.testimonial-card span { font-weight: 500; }
.faq-accordion { max-width: 800px; margin: 0 auto; border: 1px solid var(--border-color); border-radius: var(--radius); background-color: #fff; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px; font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question i { background-color: var(--dark-navy); color: #fff; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 0.8rem; transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-answer p { padding: 0 20px 20px; }
.faq-item.active .faq-answer { max-height: 100px; }

/* --- Form Section --- */
.form-section .grid-content h2 { font-size: 2.8rem; }
.form-section .grid-content p { font-style: italic; }
.form-section .phone-btn { display: inline-flex; align-items: center; gap: 12px; margin-top: 14px; }
.form-wrapper { background-color: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; position: relative; }
.form-wrapper::before, .form-wrapper::after { content: ''; position: absolute; background-color: var(--accent-blue); }
.form-wrapper::before { right: -8px; top: 20px; bottom: 0; width: 8px; border-radius: 0 10px 0 0; }
.form-wrapper::after { height: 8px; left: 20px; right: -8px; bottom: -8px; border-radius: 0 0 10px 0; }
.form-wrapper h3 { margin-bottom: 24px; font-size: 1.5rem; }
.form-wrapper form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 16px; }
.form-wrapper input, .form-wrapper textarea { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: var(--radius); font-family: inherit; font-size: 1rem; }
.form-wrapper input:focus, .form-wrapper textarea:focus { border-color: var(--accent-blue); outline: none; box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2), inset -2px 0 0 0 var(--accent-blue); }

/* --- Footer --- */
.footer { background-color: var(--dark-navy); color: #fff; padding: 60px 0 0; }
.footer-container { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 40px; }
.footer-logo { display: none; }
.footer-about { flex: 1.8; }
.footer-about p { color: #ccc; margin-top: 16px; }
.footer-contact { flex: 1; }
.footer-contact p { color: #fff; display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact i { color: var(--primary-yellow); width: 20px; text-align: center; flex-shrink: 0; margin-top: 4px; }
.copyright { background-color: #111; text-align: center; padding: 16px 0; }
.copyright p { font-size: 0.9rem; color: #aaa; }

/* --- Reveal on Scroll Animation --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .container { padding: 0 20px; }
    .get-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .numbers-box { padding: 40px 50px; gap: 30px; }
    .numbers-heading h2 { font-size: 2.5rem; }
}

@media (max-width: 992px) {
    .nav-actions { display: none; }
    .mobile-menu-toggle { display: block; }
    .hero-container, .grid-container { flex-direction: column; }
    .hero-image { max-width: 100%; order: -1; margin-bottom: 30px; }
    .hero-content { text-align: center; }
    .hero-stats, .hero-buttons { justify-content: center; }
    .numbers-box { flex-direction: column; text-align: center; padding: 40px 30px; }
    .numbers-stats { grid-template-columns: repeat(2, 1fr); width: 100%; gap: 30px; text-align: center; }
    .grid-container { text-align: center; }
    .grid-image { order: -1; margin-bottom: 30px; }
    .grid-content ul { display: inline-flex; text-align: left; }
    .privilege-container { flex-direction: column; }
    .privilege-content { text-align: center; }
    .privilege-image { max-width: 250px; margin-top: 30px; }
    .footer-container { flex-direction: column; text-align: left; gap: 30px; }
    .footer-about { flex: none; }
    .footer-contact { flex: none; }
    .footer-contact p { justify-content: flex-start; text-align: left; }
    .get-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .get-card { padding: 20px; min-height: 120px; }
    .logos-container-desktop { display: none; }
    .logos-grid-mobile { display: flex; gap: 15px 20px; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .container { padding: 0 16px; }
    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 1.8rem !important; }
    .section-title { font-size: 1.8rem; margin-bottom: 40px; }
    .form-section .grid-content h2 { font-size: 2.2rem !important; }
    .numbers-box { padding: 30px 20px; }
    .numbers-box::after, .numbers-box::before { display: none; }
    .numbers-stats { grid-template-columns: 1fr; gap: 25px; }
    .privilege-image { display: none; }
    .form-row { flex-direction: column; }
    .form-wrapper::after { display: none; }
    .get-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .get-card { padding: 16px; font-size: 14px; min-height: 110px; box-shadow: 4px 4px 0 var(--primary-yellow); }
    .get-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--primary-yellow); }
    .get-card img { height: 40px; width: 40px; }
    .get-card span { font-size: 13px; }
.footer { padding: 40px 0 0; }
    .footer-container { gap: 25px; }
    .footer-about { text-align: left; }
    .footer-contact { text-align: left; }
    .footer-contact p { flex-direction: row; align-items: flex-start; text-align: left; }
    .footer-contact i { margin-top: 2px; }
    .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }
    .internship-grid { grid-template-columns: 1fr; gap: 20px; }
    .mobile-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #fff; z-index: 1001; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; transform: translateX(100%); transition: transform 0.3s ease-in-out; }
    body.mobile-nav-open { overflow: hidden; }
    body.mobile-nav-open .mobile-nav { transform: translateX(0); }
    .mobile-nav .nav-link, .mobile-nav .btn { font-size: 1.2rem; display: block; width: 80%; }
    .mobile-menu-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2.5rem; font-weight: 300; color: var(--text-dark); cursor: pointer; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .hero-content h1 { font-size: 1.8rem !important; }
    .hero-content p { font-size: 1rem; }
    .numbers-heading h2 { font-size: 1.8rem; }
    .get-grid { grid-template-columns: 1fr; gap: 12px; }
    .get-card { padding: 14px; min-height: 100px; }
	    .footer { padding: 30px 0 0; }
    .footer-container { gap: 20px; }
    .footer-about p { font-size: 0.9rem; line-height: 1.5; }
    .footer-contact p { font-size: 0.9rem; }
    .footer-contact i { width: 18px; font-size: 0.9rem; }
    .get-card span { font-size: 12px; line-height: 1.3; }
    .logos-grid-mobile { gap: 10px 12px; }
    .logos-grid-mobile img { max-height: 24px; max-width: 80px; }
    .btn { padding: 10px 20px; font-size: 14px; }
    .btn-large { padding: 12px 24px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
    .form-wrapper { padding: 24px; }
    .section-title { font-size: 1.6rem; }
    .privilege-content h2 { font-size: 2rem; }
    .grid-content h2 { font-size: 1.8rem; }
}