/* =========================================
   FINESSE INSTITUTE — PREMIUM DESIGN SYSTEM
   ========================================= */

:root {
    --brand-blue: #192451;
    --brand-blue-light: #1e2d66;
    --brand-gold: #ffbe4a;
    --brand-gold-hover: #e5aa42;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-cream: #fdf8f0;
    --white: #ffffff;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ====== RESET ====== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--brand-blue); line-height: 1.2; }

/* ====== SCROLL ANIMATIONS ====== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== BUTTONS ====== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background-color: var(--brand-gold);
    color: var(--brand-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: none; cursor: pointer; text-align: center;
    font-size: 1rem;
}
.btn-primary:hover {
    background-color: var(--brand-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 190, 74, 0.4);
}
.btn-primary.large { padding: 16px 36px; font-size: 1.1rem; }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    background-color: #25D366; color: var(--white);
    font-family: var(--font-heading); font-weight: 700;
    padding: 16px 36px; border-radius: 50px;
    text-decoration: none; transition: var(--transition); font-size: 1.1rem;
}
.btn-whatsapp:hover { background-color: #128C7E; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--brand-blue);
    font-family: var(--font-heading); font-weight: 600;
    padding: 10px 24px; border-radius: 50px;
    text-decoration: none; border: 2px solid var(--brand-blue);
    transition: var(--transition);
}
.btn-outline:hover { background: var(--brand-blue); color: var(--brand-gold); }

/* ====== TOP BAR ====== */
.top-bar { background: var(--brand-blue); color: var(--white); padding: 10px 0; font-size: 0.85rem; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.contact-info a { color: var(--white); text-decoration: none; margin-right: 20px; transition: color 0.2s; }
.contact-info a:hover { color: var(--brand-gold); }
.contact-info i, .trust-badge i { color: var(--brand-gold); margin-right: 5px; }

/* ====== HEADER ====== */
.header {
    background: var(--white); padding: 12px 0;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 55px; }
.desktop-nav ul { list-style: none; display: flex; gap: 30px; }
.desktop-nav a {
    text-decoration: none; color: var(--brand-blue);
    font-weight: 600; font-family: var(--font-heading);
    transition: var(--transition); position: relative;
}
.desktop-nav a::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 2px; background: var(--brand-gold);
    transition: width 0.3s;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 100%; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--brand-gold); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--brand-blue); cursor: pointer; }

/* ====== MOBILE NAV ====== */
.mobile-nav-overlay {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 400px;
    height: 100vh; background: linear-gradient(180deg, #0a1628 0%, #1a2d50 100%);
    z-index: 2000;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex; align-items: center; justify-content: center;
}
.mobile-nav-overlay.active { right: 0; }
.mobile-nav-content { width: 100%; padding: 50px 40px; text-align: center; }
.close-btn {
    position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15); font-size: 1.4rem; color: #fff;
    cursor: pointer; width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.close-btn:hover { background: rgba(255,255,255,0.2); }
.mobile-nav-content ul { list-style: none; margin-bottom: 30px; }
.mobile-nav-content li {
    margin-bottom: 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-content li:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-content a {
    text-decoration: none; color: rgba(255,255,255,0.85); font-size: 1.1rem;
    font-family: var(--font-heading); font-weight: 600;
    display: block; padding: 18px 0;
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-content a:hover { color: #FFBE4A; padding-left: 8px; }
.mobile-apply-btn {
    display: block !important; width: 100%; text-align: center;
    padding: 16px !important; border-radius: 50px !important;
    font-size: 1.05rem !important; margin-top: 10px;
    box-shadow: 0 4px 20px rgba(255,190,74,0.3);
}

/* ====== HERO ====== */
.hero {
    position: relative; padding: 100px 0;
    background-color: var(--bg-light); overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1542665952-66b1dd6f6690?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover; background-position: center;
    opacity: 0.15; z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-text-box { max-width: 700px; }

.hero-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 190, 74, 0.15);
    color: var(--brand-blue);
    padding: 8px 20px; border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600; font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 190, 74, 0.3);
}
.hero-chip i { color: var(--brand-gold); }

.hero .subtitle {
    font-size: 1.1rem; color: var(--brand-blue);
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 10px;
}
.hero .main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800; margin-bottom: 20px; color: var(--brand-blue);
}
.hero .main-title .highlight { color: var(--brand-gold); }
.hero .hero-desc { font-size: 1.15rem; color: var(--text-light); margin-bottom: 40px; max-width: 550px; line-height: 1.8; }
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }

/* ====== TRUST SECTION ====== */
.trust-section { padding: 60px 0; background: var(--white); margin-top: -40px; position: relative; z-index: 2; }
.trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    background: var(--white); border-radius: 20px;
    box-shadow: var(--box-shadow); padding: 40px;
}
.trust-card { text-align: center; }
.trust-card .icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(255,190,74,0.1), rgba(255,190,74,0.2));
    color: var(--brand-gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 15px;
}
.trust-card h3 { font-size: 1.5rem; margin-bottom: 5px; }
.trust-card p { color: var(--text-light); font-size: 0.9rem; }

/* ====== ABOUT SECTION ====== */
.about-section { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; border-radius: 20px; overflow: hidden; }
.about-img img { width: 100%; height: 400px; object-fit: cover; border-radius: 20px; }
.experience-badge {
    position: absolute; bottom: 20px; right: 20px;
    background: var(--brand-gold); color: var(--brand-blue);
    padding: 15px 25px; border-radius: 15px;
    text-align: center; font-family: var(--font-heading);
}
.experience-badge .big-num { font-size: 2.5rem; font-weight: 800; display: block; line-height: 1; }
.experience-badge span { font-weight: 600; font-size: 0.85rem; }
.about-text .sub-heading { margin-bottom: 10px; }
.about-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 30px; font-size: 1.05rem; line-height: 1.8; }
.about-highlights { margin-bottom: 30px; }
.about-highlight-item {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 15px; font-weight: 500; font-size: 1.05rem;
}
.about-highlight-item i { color: var(--brand-gold); font-size: 1.2rem; }

/* ====== SECTION HEADER ====== */
.section-header { text-align: center; margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }
.sub-heading {
    color: var(--brand-gold); font-family: var(--font-heading);
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; display: block; margin-bottom: 10px; font-size: 0.9rem;
}
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ====== COURSES SECTION ====== */
.courses-section { padding: 100px 0; background: var(--bg-light); }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.course-card {
    background: var(--white); border-radius: 20px;
    overflow: hidden; box-shadow: var(--box-shadow);
    transition: var(--transition);
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--box-shadow-hover); }
.course-img { position: relative; height: 250px; overflow: hidden; }
.course-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.course-card:hover .course-img img { transform: scale(1.05); }
.badge {
    position: absolute; bottom: 15px; left: 20px;
    background: var(--brand-gold); color: var(--brand-blue);
    font-family: var(--font-heading); font-weight: 700;
    padding: 6px 18px; border-radius: 20px; font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.course-content { padding: 30px; }
.course-content h3 { font-size: 1.5rem; margin-bottom: 10px; }
.course-content p { color: var(--text-light); margin-bottom: 20px; }
.course-meta {
    display: flex; gap: 20px; margin-bottom: 25px;
    font-size: 0.9rem; color: var(--text-light);
}
.course-meta span { display: flex; align-items: center; gap: 6px; }
.course-meta i { color: var(--brand-gold); }

/* ====== WHY CHOOSE US ====== */
.why-section { padding: 100px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card {
    padding: 35px; border-radius: 20px;
    background: var(--bg-light);
    transition: var(--transition); text-align: center;
    border: 1px solid transparent;
}
.why-card:hover {
    background: var(--white);
    border-color: rgba(255,190,74,0.3);
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}
.why-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
    color: var(--brand-gold); border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 20px;
}
.why-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.why-card p { color: var(--text-light); font-size: 0.95rem; }

/* ====== TESTIMONIALS ====== */
.testimonials-section { padding: 100px 0; background: var(--bg-cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
    background: var(--white); padding: 35px;
    border-radius: 20px; box-shadow: var(--box-shadow);
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); }
.stars { color: var(--brand-gold); margin-bottom: 15px; font-size: 1rem; }
.stars i { margin-right: 2px; }
.testimonial-text { color: var(--text-main); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
    color: var(--brand-gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem;
}
.testimonial-author strong { display: block; font-family: var(--font-heading); color: var(--brand-blue); }
.testimonial-author span { font-size: 0.85rem; color: var(--text-light); }

/* ====== CURRICULUM SECTION ====== */
.curriculum-section { padding: 100px 0; background: var(--white); }
.curriculum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.curriculum-card {
    padding: 30px; border-radius: 15px;
    border: 1px solid #eee; transition: var(--transition);
    position: relative;
}
.curriculum-card:hover { border-color: var(--brand-gold); box-shadow: var(--box-shadow); transform: translateY(-3px); }
.curriculum-num {
    font-family: var(--font-heading); font-size: 2.5rem;
    font-weight: 800; color: rgba(255,190,74,0.6);
    line-height: 1; margin-bottom: 10px;
}
.curriculum-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.curriculum-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; }

/* ====== CAREERS SECTION ====== */
.careers-section { padding: 100px 0; background: var(--bg-light); }
.careers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.career-item {
    background: var(--white); padding: 20px 25px;
    border-radius: 12px; font-family: var(--font-heading);
    font-weight: 600; font-size: 1rem;
    display: flex; align-items: center; gap: 12px;
    transition: var(--transition); color: var(--brand-blue);
}
.career-item:hover { background: var(--brand-blue); color: var(--brand-gold); transform: translateX(5px); }
.career-item i { font-size: 1.2rem; color: var(--brand-gold); }
.career-item:hover i { color: var(--brand-gold); }

.logos-row {
    display: flex; justify-content: center; gap: 30px;
    flex-wrap: wrap; margin-top: 15px;
}
.partner-name {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 1.2rem; color: rgba(25,36,81,0.25);
    letter-spacing: 2px; text-transform: uppercase;
}

/* ====== EARNING HIGHLIGHT ====== */
.earning-highlight { margin-top: 40px; }
.earning-card {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
    padding: 40px; border-radius: 20px; color: var(--white);
    text-align: center;
}
.earning-card h3 { color: var(--brand-gold); font-size: 1.5rem; margin-bottom: 25px; }
.earning-card h3 i { margin-right: 8px; }
.earning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.earning-amount { display: block; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--brand-gold); }
.earning-label { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 5px; }

/* ====== ELIGIBILITY SECTION ====== */
.eligibility-section { padding: 80px 0; background: var(--bg-cream); }
.eligibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.eligibility-card {
    background: var(--white); padding: 35px;
    border-radius: 20px; box-shadow: var(--box-shadow);
}
.eligibility-card h3 { font-size: 1.3rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.eligibility-card h3 i { color: var(--brand-gold); }
.eligibility-card ul { list-style: none; }
.eligibility-card li {
    padding: 10px 0; border-bottom: 1px solid #f0f0f0;
    padding-left: 25px; position: relative;
    color: var(--text-main); font-size: 0.95rem;
}
.eligibility-card li:last-child { border: none; }
.eligibility-card li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--brand-gold); font-weight: 700;
}

/* ====== CONTACT SECTION ====== */
.contact-section { padding: 100px 0; background: var(--brand-blue); color: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-text h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 20px; }
.contact-text p { color: rgba(255,255,255,0.8); margin-bottom: 40px; font-size: 1.05rem; line-height: 1.8; }
.info-item { display: flex; align-items: flex-start; margin-bottom: 25px; }
.info-item i { font-size: 1.3rem; color: var(--brand-gold); margin-right: 18px; margin-top: 5px; }
.info-item h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 3px; }
.info-item p { margin-bottom: 0; font-size: 0.95rem; }

.form-container {
    background: var(--white); padding: 40px;
    border-radius: 20px; color: var(--text-main);
}
.form-container h3 { font-size: 1.6rem; margin-bottom: 5px; }
.form-group { margin-bottom: 18px; }
.form-group input, .form-group select {
    width: 100%; padding: 14px 18px;
    border: 1px solid #e0e0e0; border-radius: 12px;
    font-family: var(--font-body); font-size: 1rem;
    outline: none; transition: var(--transition);
    background: var(--bg-light);
}
.form-group input:focus, .form-group select:focus {
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(255, 190, 74, 0.2);
    background: var(--white);
}
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-light); margin-top: 15px; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ====== FOOTER ====== */
.footer { background: #0d132d; padding: 60px 0 0; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-col p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 15px; }
.footer-col h4 { color: var(--white); font-family: var(--font-heading); margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.footer-col li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.footer-col li a:hover { color: var(--brand-gold); }
.footer-col li i { color: var(--brand-gold); font-size: 0.85rem; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); text-decoration: none;
    transition: var(--transition); font-size: 0.9rem;
}
.social-links a:hover { background: var(--brand-gold); color: var(--brand-blue); }
.footer-bottom {
    margin-top: 40px; padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center; font-size: 0.85rem;
}

/* ====== FLOATING WHATSAPP ====== */
.floating-wa {
    position: fixed; bottom: 25px; right: 25px;
    background: #25D366; color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; z-index: 100;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition); text-decoration: none;
    animation: pulse-wa 2s infinite;
}
.floating-wa:hover { transform: scale(1.1); }

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ====== FEATURES LIST (used in old pages) ====== */
.features { list-style: none; }
.features li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; color: var(--text-main); }
.features i { color: var(--brand-gold); }

/* =========================================
   RESPONSIVE — MOBILE FIRST
   ========================================= */

@media (max-width: 992px) {
    .courses-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
    .careers-grid { grid-template-columns: repeat(2, 1fr); }
    .eligibility-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .earning-grid { grid-template-columns: 1fr; gap: 15px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .desktop-nav, .desktop-btn { display: none; }
    .mobile-menu-btn { display: block; }
    .logo img { height: 42px; }

    .hero { padding: 60px 0; text-align: center; }
    .hero-text-box { max-width: 100%; }
    .hero .hero-desc { max-width: 100%; }
    .hero-actions { justify-content: center; flex-direction: column; }
    .hero-actions a { width: 100%; justify-content: center; }

    .courses-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; padding: 25px; }
    .why-grid { grid-template-columns: 1fr; }
    .curriculum-grid { grid-template-columns: 1fr; }
    .careers-grid { grid-template-columns: 1fr; }

    .form-container { padding: 25px; }
    .section-header h2 { font-size: 2rem; }
    .contact-text h2 { font-size: 2rem; }

    .about-img img { height: 280px; }

    .floating-wa { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    .hero .main-title { font-size: 2rem; }
    .logos-row { gap: 15px; }
    .partner-name { font-size: 0.9rem; }
}

/* ====== NUTRITION CUSTOM SECTIONS ====== */
.internship-banner {
    display: flex;
    background: #ffbe4a;
}
.internship-banner > div {
    flex: 1;
    text-align: center;
    padding: 20px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: white;
}
.internship-banner > div:first-child {
    background: #ffbe4a;
}
.internship-banner > div:last-child {
    background: #192451;
}
@media(max-width: 768px) {
    .internship-banner { flex-direction: column; }
}

.offered-courses-section {
    padding: 60px 0;
    background: white;
}
.offered-courses-title {
    text-align: center;
    color: var(--brand-blue);
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-family: var(--font-heading);
    font-weight: 700;
}
.offered-courses-title span { color: var(--brand-gold); }
.custom-courses-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.custom-course-card {
    width: 300px;
    border: 1px solid var(--brand-gold);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}
.custom-course-card-header {
    background: var(--brand-blue);
    color: white;
    padding: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-course-card-body {
    background: #fdfaf0;
    padding: 20px;
    font-size: 0.85rem;
    min-height: 350px;
}
.custom-course-card-body h5 {
    color: var(--brand-blue);
    margin-bottom: 5px;
    font-size: 0.9rem;
}
.custom-course-card-body p {
    margin-bottom: 15px;
    color: var(--text-main);
}

.features-benefits-section {
    padding: 60px 0;
    background: #f4f8fc;
    text-align: center;
}
.fb-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--brand-blue);
    font-weight: 700;
}
.fb-title span { color: var(--brand-gold); }
.fb-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}
.fb-box {
    background: var(--brand-blue);
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    position: relative;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fb-box::before {
    content: '"';
    color: var(--brand-gold);
    font-size: 3rem;
    position: absolute;
    top: -15px;
    left: 5px;
    font-family: serif;
    line-height: 1;
}

.key-modules-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}
.km-title {
    color: var(--brand-blue);
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-family: var(--font-heading);
}
.km-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.km-card {
    width: 180px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    background: white;
}
.km-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.km-card p {
    padding: 15px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-blue);
    margin: 0;
}

.career-opp-section {
    padding: 60px 0;
    background: white;
}
.career-opp-container {
    display: flex;
    gap: 40px;
    align-items: center;
}
.career-opp-content {
    flex: 1;
}
.career-opp-subtitle {
    font-size: 0.9rem;
    color: var(--brand-gold);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.career-opp-title {
    color: var(--brand-blue);
    font-size: 2rem;
    margin-bottom: 20px;
}
.career-opp-list {
    list-style: none;
    padding: 0;
}
.career-opp-list li {
    margin-bottom: 15px;
    font-size: 0.9rem;
    position: relative;
    padding-left: 30px;
    color: var(--text-main);
}
.career-opp-list li strong {
    color: var(--brand-blue);
}
.career-opp-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--brand-gold);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.1rem;
}
.career-opp-image {
    flex: 1;
}
.career-opp-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
@media(max-width: 768px) {
    .career-opp-container { flex-direction: column; }
}

/* ====== HOME CUSTOM SECTIONS ====== */
.home-why-section {
    padding: 80px 0;
    background: #eef4fc;
}
.home-why-title {
    text-align: center;
    font-size: 2rem;
    color: var(--brand-blue);
    margin-bottom: 40px;
    font-family: var(--font-heading);
}
.home-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.home-why-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.home-why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #fdfaf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold);
    font-size: 1.5rem;
}
.home-why-card h4 {
    font-size: 1.05rem;
    color: var(--brand-blue);
    margin-bottom: 10px;
}
.home-why-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.home-video-gallery {
    padding: 80px 0;
    background: #eef4fc;
    text-align: center;
}
.video-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
.video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    max-width: 450px;
    width: 100%;
}
.video-item img {
    width: 100%;
    display: block;
}

.home-testimonials-dark {
    background: var(--brand-blue);
    padding: 80px 0;
    color: white;
}
.testimonial-title-area {
    text-align: center;
    margin-bottom: 40px;
}
.testimonial-title-area h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.testimonial-title-area p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 25px;
}
.btn-yellow {
    background: var(--brand-gold);
    color: var(--brand-blue);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}
.testimonial-video-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}
.t-video-card {
    width: 250px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.t-video-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.home-blogs-placements {
    padding: 80px 0;
    background: white;
    text-align: center;
}
.blogs-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}
.blog-card {
    width: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-content {
    padding: 25px;
}
.blog-card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.blog-card-content p {
    font-size: 0.85rem;
    color: var(--text-light);
}
.placement-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.placement-logos img {
    height: 50px;
    object-fit: contain;
    border: 1px solid #eee;
    padding: 5px 15px;
    border-radius: 8px;
}

@media(max-width: 992px) {
    .home-why-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { flex-direction: column; align-items: center; }
    .testimonial-video-grid { flex-wrap: wrap; justify-content: center; }
    .blogs-grid { flex-direction: column; align-items: center; }
    .t-video-card { width: calc(50% - 10px); }
}

@media(max-width: 768px) {
    .t-video-card { width: 100%; }
    .t-video-card iframe { height: auto !important; aspect-ratio: 9/16; max-height: 500px; }
    .shorts-grid { grid-template-columns: 1fr !important; max-width: 350px !important; margin: 0 auto !important; }
    .shorts-grid iframe { height: auto !important; aspect-ratio: 9/16; max-height: 500px; }
    .career-paths-grid { max-width: 100% !important; grid-template-columns: 1fr !important; }
    .how-it-works-grid { max-width: 100% !important; grid-template-columns: 1fr !important; }
    .floating-wa { bottom: 15px; right: 15px; width: 50px; height: 50px; font-size: 1.6rem; }
    .footer-bottom { padding-bottom: 70px; }
    .mobile-menu-btn:active { transform: scale(0.9); }
}

@media(max-width: 480px) {
    .footer-col h4 { margin-bottom: 12px; }
}

/* ====== AUTO-SCROLL GALLERY ====== */
.gallery-section {
    padding: 60px 0 50px;
    background: var(--bg-light);
    overflow: hidden;
}
.gallery-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 8px;
}
.gallery-section .gallery-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
}
.gallery-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}
.gallery-marquee:hover {
    animation-play-state: paused;
}
.gallery-marquee img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    margin: 0 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    will-change: transform;
}
.gallery-marquee img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}
@keyframes marquee-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
@media(max-width: 768px) {
    .gallery-marquee img {
        width: 240px;
        height: 180px;
        border-radius: 12px;
        box-shadow: none; /* Removed shadow on mobile for massive performance boost */
    }
    .gallery-section { padding: 40px 0 35px; }
    .gallery-section h2 { font-size: 1.6rem; }
    /* Hero buttons — compact on mobile */
    .course-hero .btn-primary.large,
    .course-hero .btn-whatsapp.large {
        padding: 12px 24px !important;
        font-size: 0.92rem !important;
    }
}
