/* Style.css - SoftDEV Computer Education Centre */

/* ======================== VARIABLES & RESET ======================== */
:root {
    --nav-bg: #0b1a30; 
    --nav-hover: #F39C12; 
    --theme-dark: #062f22;     
    --theme-darker: #041f16;
    --theme-light: #f5f8f6;    
    --theme-green: #10b981;    
    --theme-green-hover: #059669;
    --text-dark: #1f362e;
    --text-muted: #6b867c;
    --text-light: #ffffff;
    --text-light-muted: #a4bea3;
}

body { background-color: var(--theme-light); color: var(--text-dark); overflow-x: hidden; scroll-behavior: smooth; font-family: 'Outfit', sans-serif; }
a { text-decoration: none; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--theme-light); }
::-webkit-scrollbar-thumb { background: var(--theme-green); border-radius: 5px; }

/* ======================== UTILITIES ======================== */
.site-container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 90px 0; }
.bg-dark-section { background-color: var(--theme-dark); color: var(--text-light); }
.bg-light-section { background-color: var(--theme-light); color: var(--text-dark); }
.text-green { color: var(--theme-green) !important; }

section h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; font-weight: 700; }
.subtitle { color: var(--theme-green); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }

/* ======================== BUTTONS ======================== */
.btn-custom-primary {
    background: linear-gradient(135deg, #22c55e, #10b981); color: #fff !important; padding: 12px 28px;
    border-radius: 50px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; transition: all 0.3s; border: none; box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3); text-decoration: none;
}
.btn-custom-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(16, 185, 129, 0.4); color: #fff;}

.btn-outline-custom {
    border: 2px solid var(--theme-green); color: var(--theme-green) !important; padding: 10px 26px; border-radius: 50px;
    font-weight: 600; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; text-decoration: none;
}
.btn-outline-custom:hover { background: var(--theme-green); color: #fff !important; }

.btn-white-custom {
    background: #fff; color: var(--theme-dark) !important; padding: 12px 30px; border-radius: 50px;
    font-weight: 600; transition: 0.3s; display: inline-block; text-decoration: none;
}
.btn-white-custom:hover { background: var(--theme-green); color: #fff !important; }

/* ======================== NAVIGATION & TOP BAR ======================== */
.top-info {
    background: linear-gradient(90deg, #071526, #0A1C35, #071526);
    background-size: 200% 200%;
    animation: gradientSweep 8s ease infinite;
    color: white; 
    padding: 10px 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
@keyframes gradientSweep { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.top-info::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    animation: shineSweep 4s infinite linear;
}
@keyframes shineSweep { 0% { left: -100%; } 15% { left: 200%; } 100% { left: 200%; } }

.top-info-left { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; position: relative; z-index: 1;}
.top-info-left span { display: flex; align-items: center; gap: 8px; font-weight: 500; letter-spacing: 0.5px; transition: 0.3s; cursor: pointer; color:#cbd5e1; }
.top-info-left span:hover { color: #ffffff; }
.top-info-left i { 
    color: var(--nav-hover); 
    font-size: 15px; 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    display: flex; align-items:center; justify-content:center;
}
.top-info-left span:hover i { transform: scale(1.3) rotate(15deg); color: #fff;}

.top-social { display: flex; align-items: center; gap: 10px; position: relative; z-index: 1;}
.top-social a { 
    color: white; 
    width: 32px; 
    height: 32px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.05); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
}
.top-social a:hover { 
    background: var(--nav-hover); 
    color: #fff; 
    transform: translateY(-3px) scale(1.1); 
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4); 
    border-color: var(--nav-hover);
}

.site-navbar { background-color: #ffffff; display: flex; justify-content: space-between; align-items: center; padding: 0 3%; height: 90px; position: sticky; top: -1px; z-index: 1030; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-bottom: 2px solid #eaeaea; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.site-navbar.scrolled { background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); height: 75px; border-bottom: 2px solid var(--theme-green); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.site-logo { max-height: 55px; transition: all 0.4s ease; }
.site-navbar.scrolled .site-logo { max-height: 45px; }

.nav-menu { display: flex; list-style: none; height: 100%; margin: 0; padding: 0; align-items: center; gap: 4px; }
.nav-item { position: relative; display: flex; align-items: center; height: 100%; transition: all 0.3s ease; padding: 0 2px; }
.nav-item > a {
    color: #1e293b; text-decoration: none; font-size: 13px; font-weight: 700; padding: 8px 12px; border-radius: 8px;
    display: flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.nav-item i.nav-icon { color: var(--theme-green); font-size: 14px; transition: all 0.3s ease; }
.nav-item i.arrow-icon { font-size: 10px; margin-left: 3px; transition: transform 0.3s ease; color: #64748b;}

/* Menu Hover Effect */
.nav-item:hover > a { background-color: rgba(16,185,129,0.1); color: var(--theme-green); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(16,185,129,0.05); }
.nav-item:hover i.nav-icon { color: var(--theme-green); transform: scale(1.1); }
.nav-item.dropdown-parent:hover i.arrow-icon { transform: rotate(180deg); color: var(--theme-green); }

/* Dropdowns */
.custom-dropdown-menu { 
    position: absolute; top: calc(100% + 15px); left: 0; background-color: #ffffff; 
    min-width: 250px; list-style: none; padding: 15px 10px; margin: 0; 
    opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); border-radius: 12px; border-top: 3px solid var(--theme-green); 
    border-bottom: 1px solid #f1f5f9; border-left: 1px solid #f1f5f9; border-right: 1px solid #f1f5f9;
}
.nav-item.dropdown-parent:hover .custom-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); top: 100%; }

.custom-dropdown-item a { 
    color: #334155; padding: 12px 20px; display: block; text-decoration: none; font-size: 14px; 
    border-radius: 8px; transition: all 0.3s ease; font-weight: 600; margin-bottom: 5px;
}
.custom-dropdown-item:last-child a { margin-bottom: 0; }
.custom-dropdown-item a:hover { background-color: rgba(16,185,129,0.05); padding-left: 28px; color: var(--theme-green); }

/* CTA Button Animation */
.nav-cta-btn {
    background: linear-gradient(135deg, var(--nav-hover), #e67e22); border: none; padding: 10px 22px; 
    border-radius: 50px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
    box-shadow: 0 6px 15px rgba(243, 156, 18, 0.3); transition: all 0.3s ease; position: relative; overflow: hidden; z-index: 1; text-decoration: none; display: flex; align-items: center; gap: 8px; color: #fff;
}
.nav-cta-btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; 
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: 0.5s; z-index: -1;
}
.nav-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(243, 156, 18, 0.5); color: #fff;}
.nav-cta-btn:hover::before { left: 100%; }

/* ======================== HERO SECTION ======================== */
.hero { position: relative; background: radial-gradient(circle at 80% 20%, rgba(16,185,129,0.1) 0%, transparent 40%), var(--theme-darker); color: var(--text-light); padding: 100px 0; overflow: hidden; }
.page-hero { position: relative; background: linear-gradient(rgba(4, 31, 22, 0.8), rgba(4, 31, 22, 0.9)), url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1920&q=80') center/cover; color: #fff; padding: 100px 0; text-align: left; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; }
.page-hero h1 { font-size: 4rem; margin-bottom: 10px; }
.page-hero h1 span { color: var(--theme-green); font-weight: 300;}
.breadcrumb { font-size: 1rem; color: var(--text-light-muted); display: flex; gap: 10px; align-items: center; }
.breadcrumb a { color: var(--theme-green); text-decoration: none; }

.hero-layout { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero-content { flex: 1; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 6px 16px; font-size: 0.85rem; color: var(--text-light-muted); margin-bottom: 25px; gap: 10px; }
.hero-badge span { background: var(--theme-green); color: #fff; padding: 2px 8px; border-radius: 30px; font-weight: bold; font-size: 0.75rem;}
.hero h1 { font-size: 4.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
.hero h1 span { color: var(--theme-green); }
.hero p { font-size: 1.15rem; color: var(--text-light-muted); margin-bottom: 40px; max-width: 500px; line-height: 1.6; }
.hero-image { flex: 1; position: relative; display: flex; justify-content: flex-end; }
.hero-img-box { position: relative; border-radius: 30px; overflow: hidden; width: 100%; max-width: 500px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); }
.hero-img-box img { width: 100%; height: auto; display: block; object-fit: cover;}
.hero-stat-card { position: absolute; bottom: -20px; left: -40px; background: #fff; color: var(--text-dark); padding: 20px; border-radius: 20px; display: flex; align-items: center; gap: 15px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); animation: float 4s ease-in-out infinite; }
.hero-stat-card i { background: #e6f7ef; color: var(--theme-green); padding: 15px; border-radius: 50%; font-size: 1.5rem; }
.hero-stat-card h4 { font-size: 1.2rem; font-weight: 700; margin: 0; }
.hero-stat-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }

/* ======================== LAYOUT COMPONENTS ======================== */
.split-layout { display: flex; align-items: center; gap: 60px; margin-bottom: 40px;}
.split-layout.reverse { flex-direction: row-reverse; }
.split-image { flex: 1; position: relative; }
.split-content { flex: 1; }
.split-content p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; margin-bottom: 25px; }

.collage { position: relative; height: 500px; }
.collage img { border-radius: 20px; position: absolute; box-shadow: 0 20px 40px rgba(0,0,0,0.1); object-fit: cover; }
.collage .img-1 { width: 60%; height: 350px; top: 0; right: 0; z-index: 2; }
.collage .img-2 { width: 55%; height: 300px; bottom: 0; left: 0; z-index: 3; border: 10px solid var(--theme-light); }
.collage-badge { position: absolute; top: -20px; left: 0; background: var(--theme-green); color: #fff; padding: 15px 20px; border-radius: 15px; z-index: 4; box-shadow: 0 10px 20px rgba(16,185,129,0.3); font-weight: 700; text-align: center; }
.collage-badge i { font-size: 2rem; margin-bottom: 5px; }

.check-list { list-style: none; margin: 30px 0; padding: 0;}
.check-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-size: 1.1rem; font-weight: 500; color: var(--text-dark); }
.check-list li i { color: var(--theme-green); font-size: 1.2rem; background: rgba(16,185,129,0.1); padding: 5px; border-radius: 50%; }

.single-img { border-radius: 30px; width: 100%; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* ======================== FEATURE & COURSE GRIDS ======================== */
.services-section { background-color: var(--theme-darker); border-radius: 0 0 40px 40px; padding: 80px 0; color: white; margin-bottom: 80px; box-shadow: 0 20px 50px rgba(0,0,0,0.1);}
.services-grid-layout { display: flex; gap: 50px; align-items: flex-start; }
.services-info { flex: 0.8; }
.services-info p { color: var(--text-light-muted); margin: 20px 0 40px; font-size: 1.1rem; line-height: 1.6; }
.services-cards { flex: 1.2; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 30px 25px; border-radius: 20px; transition: all 0.3s; }
.service-card:hover { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); transform: translateY(-5px); }
.icon-box { width: 50px; height: 50px; background: rgba(16,185,129,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--theme-green); font-size: 1.5rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: #fff; }
.service-card p { color: var(--text-light-muted); font-size: 0.95rem; line-height: 1.5; margin: 0; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.feature-box { display: flex; gap: 15px; align-items: flex-start; }
.feature-box i { width: 45px; height: 45px; background: rgba(16,185,129,0.1); color: var(--theme-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.feature-box h4 { font-size: 1.1rem; margin-bottom: 5px; }

/* Course Dedicated Grid */
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.course-card-alt { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eaeaea; transition: 0.3s; display: flex; flex-direction: column; }
.course-card-alt:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--theme-green); }
.course-img { height: 200px; background: #e6f7ef; display: flex; align-items: center; justify-content: center; color: var(--theme-green); font-size: 4rem; }
.course-body { padding: 30px; flex: 1; display: flex; flex-direction: column;}
.course-meta { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 15px; }
.course-body h3 { font-size: 1.4rem; margin-bottom: 15px; }
.course-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; margin-bottom: 20px; flex: 1;}
.course-benefits { list-style: none; padding: 0; margin-bottom: 20px; border-top: 1px solid #eaeaea; padding-top: 20px;}
.course-benefits li { font-size: 0.85rem; color: var(--text-dark); margin-bottom: 8px; display: flex; align-items: center; gap: 8px;}
.course-benefits li i { color: var(--theme-green); }

/* ======================== STATS & ACHIEVEMENTS ======================== */
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; margin-top: 50px; }
.stat-item { text-align: center; background: #fff; padding: 40px; border-radius: 50%; width: 220px; height: 220px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 2px dashed rgba(16,185,129,0.3); transition: 0.3s; }
.stat-item:hover { transform: scale(1.05); background: #f0fdf4; border-color: var(--theme-green); border-style: solid; box-shadow: 0 20px 40px rgba(0,0,0,0.05);}
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--theme-dark); display: block; }
.stat-text { font-size: 1rem; color: var(--text-muted); font-weight: 500; }

.dark-stats { background: var(--theme-darker); border-radius: 40px; margin: 0 2%; padding: 60px 5%; display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; color: #fff; }
.dark-stats-left { flex: 1; text-align: left; border-right: 1px solid rgba(255,255,255,0.1); padding-right: 30px; }
.dark-stats-right { flex: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-blk h3 { font-size: 2.2rem; color: var(--theme-green); margin-bottom: 5px; font-weight: 800; border: none; padding-bottom: 0; }
.stat-blk p { font-size: 0.85rem; color: var(--text-light-muted); margin-top: 5px; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }

/* ======================== 4 STEPS PROCESS ======================== */
.steps-section { padding: 90px 0 0 0; background: var(--theme-light); overflow: hidden; }
.steps-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 70px; }
.steps-header-left { text-align: left; }
.steps-header h2 { font-size: 3rem; margin: 0; font-weight: 300; line-height: 1.2; color: var(--text-dark); letter-spacing: -0.5px;}
.steps-header h2 span { font-weight: 700; color: var(--theme-green); }
.steps-grid { display: flex; justify-content: space-between; gap: 40px; position: relative; margin-bottom: 60px; }
.step-item { flex: 1; text-align: left; }
.step-icon { width: 65px; height: 65px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #fff; margin-bottom: 30px; background: linear-gradient(135deg, #10b981, #34d399); box-shadow: 0 10px 25px rgba(16,185,129,0.4); transition: 0.3s; }
.step-item:hover .step-icon { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(16,185,129,0.5); }
.step-divider { width: 100%; height: 1px; background: rgba(0,0,0,0.08); margin-bottom: 25px; }
.step-item h4 { font-size: 1.2rem; margin-bottom: 12px; font-weight: 700; color: #041f16; }
.step-item p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* ======================== MARQUEE ======================== */
.marquee-container { padding: 50px 0; background: transparent; overflow: hidden; white-space: nowrap; display: flex; opacity: 0.9; }
.marquee-text { font-size: 6rem; font-weight: 800; text-transform: capitalize; letter-spacing: 2px; color: transparent; -webkit-text-stroke: 1.5px rgba(16,185,129,0.8); display: inline-block; padding-right: 50px; animation: scroller 25s linear infinite; }
.marquee-text span { -webkit-text-stroke: 0; color: rgba(16, 185, 129, 0.4); font-size: 3rem; vertical-align: middle; margin: 0 40px;}
@keyframes scroller { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ======================== TESTIMONIALS ======================== */
.testimonials { background: var(--theme-darker); border-radius: 40px; margin: 0 2%; padding: 80px 5%; display: flex; align-items: center; gap: 50px; color: #fff; }
.testi-left { flex: 0.8; }
.testi-right { flex: 1.2; position: relative; }
.testi-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 30px; padding: 40px; display: flex; gap: 30px; align-items: center; position: relative; }
.testi-img { width: 150px; height: 150px; border-radius: 20px; object-fit: cover; }
.testi-content { flex: 1; }
.testi-content i.fa-quote-right { font-size: 2.5rem; color: rgba(16,185,129,0.2); position: absolute; top: 40px; right: 40px; }
.testi-stars { color: #f59e0b; margin: 10px 0; font-size: 0.9rem; }
.testi-content p { font-size: 1.1rem; color: var(--text-light-muted); line-height: 1.6; font-style: italic; }
.testi-client h4 { margin-top: 15px; font-size: 1.2rem; }
.testi-client span { font-size: 0.9rem; color: var(--theme-green); }

/* ======================== FAQ ======================== */
.faq-section { display: flex; gap: 60px; align-items: flex-start; }
.faq-left { flex: 1; }
.faq-illust { background: #fff; padding: 25px; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); text-align: center; margin-top: 30px; display: inline-block; border: 1px solid #eaeaea; }
.faq-right { flex: 1.2; }
details { background: #fff; border: 1px solid #eaeaea; border-radius: 15px; margin-bottom: 15px; overflow: hidden; transition: 0.3s; }
summary { padding: 20px 25px; font-weight: 600; font-size: 1.1rem; cursor: pointer; list-style: none; position: relative; color: var(--text-dark); display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--theme-green); transition: 0.3s; }
details[open] { border-color: var(--theme-green); box-shadow: 0 10px 20px rgba(16,185,129,0.1); }
details[open] summary { background: var(--theme-green); color: #fff; }
details[open] summary::after { content: '\f068'; color: #fff; transform: rotate(180deg); }
.faq-content { padding: 20px 25px; color: var(--text-muted); line-height: 1.6; border-top: 1px solid #eaeaea; }

/* ======================== FORMS ======================== */
.contact-form-section { background: #fff; border-radius: 30px; padding: 60px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.form-control-custom { width: 100%; padding: 15px 20px; border-radius: 12px; border: 1px solid #eaeaea; background: var(--theme-light); font-size: 1rem; transition: 0.3s; margin-bottom: 15px;}
.form-control-custom:focus { outline: none; border-color: var(--theme-green); box-shadow: 0 0 0 4px rgba(16,185,129,0.1); }
textarea.form-control-custom { resize: none; height: 120px; }

/* ======================== FOOTER & SCROLL TO TOP ======================== */
.footer-cta { background-color: var(--theme-dark); border-radius: 40px; margin: 0 2% 40px; padding: 60px 5%; display: flex; align-items: center; justify-content: space-between; color: #fff; }
.cta-content h2 { font-size: 2.2rem; margin-bottom: 20px; color: #fff;}
.cta-content p { color: var(--text-light-muted); margin-bottom: 0; max-width: 500px; font-size: 1.1rem; }
footer { background-color: #041a12; color: var(--text-light-muted); padding: 60px 0 20px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 40px;}
.footer-col { flex: 1; }
.footer-col h4 { color: #fff; font-size: 1.2rem; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0;}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-light-muted); transition: 0.3s; }
.footer-col ul li a:hover { color: var(--theme-green); padding-left: 5px; }
.footer-contact { padding: 0; list-style: none; }
.footer-contact li { display: flex; gap: 15px; margin-bottom: 15px; }
.footer-contact li i { color: var(--theme-green); margin-top: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; text-align: center; font-size: 0.9rem; color: rgba(255,255,255,0.5); }
#scrollTopBtn { 
    display: none; position: fixed; bottom: 30px; right: 30px; z-index: 99; 
    font-size: 20px; border: none; outline: none; background-color: var(--theme-green); color: white; 
    cursor: pointer; width: 55px; height: 55px; border-radius: 50%; 
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    display: flex; align-items: center; justify-content: center;
    animation: pulsateScroll 2s infinite;
}
#scrollTopBtn:hover { 
    background-color: var(--theme-dark); 
    transform: translateY(-8px) scale(1.1); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.2); 
}
@keyframes pulsateScroll {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ======================== STICKY SOCIAL BAR ======================== */
.sticky-social-bar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sticky-social-link {
    display: flex;
    align-items: center;
    color: #ffffff !important;
    width: 50px;
    height: 50px;
    padding: 0 15px;
    border-radius: 0 8px 8px 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    box-shadow: 3px 5px 15px rgba(0,0,0,0.2);
    position: relative;
    left: -5px;
}

.sticky-social-link i {
    font-size: 20px;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 20px;
    display: flex;
    justify-content: center;
}

.sticky-social-link span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 15px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Specific Colors */
.sticky-social-link.fb { background-color: #1877f2; }
.sticky-social-link.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.sticky-social-link.yt { background-color: #ff0000; }
.sticky-social-link.wa { background-color: #25d366; }

/* Hover Animations */
.sticky-social-link:hover {
    width: 155px;
    left: 0;
}
.sticky-social-link:hover span { opacity: 1; transition-delay: 0.1s; }
.sticky-social-link:hover i { transform: scale(1.15) rotate(360deg); }

@media (max-width: 768px) {
    .sticky-social-link { height: 45px; padding: 0 12px; width: 45px; }
    .sticky-social-link:hover { width: 145px; }
    .sticky-social-link i { font-size: 18px; }
    .sticky-social-link span { font-size: 12px; margin-left: 12px; }
}

/* ======================== CAMPUS UPDATES SECTION (ULTRA PREMIUM THEME) ======================== */
.campus-updates { 
    background: #f4f7fb;
    padding: 130px 0 100px 0; 
    font-family: 'Outfit', sans-serif; 
    position: relative; 
    overflow: visible;
}
.campus-updates::before {
    content: ''; position: absolute; top: -10%; left: -10%; width: 120%; height: 120%;
    background: radial-gradient(circle at 15% 30%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 85% 70%, rgba(244, 63, 94, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 50% 40%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
    z-index: 0; pointer-events: none;
}

.cu-header { text-align: center; margin-bottom: 70px; position: relative; z-index: 1; }
.cu-badge { 
    display: inline-flex; align-items: center; gap: 8px; 
    background: #ffffff; color: var(--theme-green); padding: 8px 20px; 
    border-radius: 50px; font-size: 14px; font-weight: 800; letter-spacing: 1.5px; 
    box-shadow: 0 10px 25px rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.1);
    margin-bottom: 20px; 
}
.cu-header h2 { color: #0f172a; font-size: 46px; font-weight: 900; margin-bottom: 12px; letter-spacing:-1px;}
.cu-header p { color: #64748b; font-size: 19px; margin-bottom: 0; font-weight: 500;}

/* Floating Cards Layout */
.cu-card { 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border-radius: 36px; height: 100%; 
    display: flex; flex-direction: column; 
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.06), inset 0 2px 5px rgba(255,255,255,0.8); 
    border: 1px solid rgba(255,255,255,1); 
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); 
    position: relative; z-index: 1;
    overflow: visible; /* CRITICAL requirement for overlapping header */
}
.cu-card:hover { transform: translateY(-12px); box-shadow: 0 40px 80px rgba(15, 23, 42, 0.1); }

/* Overlapping Floating Header Pill */
.cu-card-header { 
    margin: -30px 20px 0 20px; /* Pulls header out of the card */
    padding: 24px 25px; 
    border-radius: 24px;
    display: flex; justify-content: space-between; align-items: center; 
    color: #ffffff; font-weight: 800; font-size: 17px; letter-spacing: 0.5px; text-transform:uppercase;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative; z-index: 10;
}
.cu-card-header i { margin-right: 12px; font-size: 24px; opacity: 0.9; }

/* Rich 3D Gradients */
.bg-gradient-blue { background: linear-gradient(135deg, #3b82f6 0%, #4f46e5 100%); }
.bg-gradient-red { background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%); }
.bg-gradient-orange { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }

.cu-status { 
    background: #ffffff; color: #0f172a !important; 
    padding: 8px 16px; border-radius: 30px; 
    font-size: 11px; font-weight: 800; letter-spacing: 1px; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); border: none;
}

.cu-card-body { 
    padding: 25px 20px; height: 380px; 
    background: transparent; border-radius: 0 0 36px 36px;
    position: relative; overflow: hidden; 
}
.cu-card-body::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 50px;
    background: linear-gradient(to top, rgba(255,255,255,0.9), transparent); pointer-events: none; z-index:2;
}

.cu-scroll-container { display: flex; flex-direction: column; animation: cuVerticalScroll 35s linear infinite; }
.cu-scroll-container:hover { animation-play-state: paused; }
@keyframes cuVerticalScroll { 0% { transform: translateY(5%); } 100% { transform: translateY(-80%); } }

/* Fix HTML hr elements inside scroll */
.cu-scroll-container hr { display: none !important; }

/* Inset Box Items for Activities */
.cu-item { 
    background: #ffffff; border-radius: 20px; padding: 16px; margin-bottom: 16px; 
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.05); border: 1px solid #f1f5f9;
    display: flex; gap: 18px; align-items: center; transition: all 0.4s;
}
.cu-item:hover { transform: translateX(8px) scale(1.02); box-shadow: 0 15px 30px rgba(79, 70, 229, 0.12); border-color: #e2e8f0; }
.cu-date { 
    display: flex; flex-direction: column; align-items: center; justify-content: center; 
    width: 65px; height: 65px; border-radius: 16px; flex-shrink: 0; 
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%) !important; color: #4f46e5 !important;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.8);
}
.cu-date span { font-size: 24px; font-weight: 900; line-height: 1; }
.cu-date small { font-size: 11px; font-weight: 800; margin-top: 4px; letter-spacing:1.5px; color: #6366f1 !important;}

.cu-info h4 { font-size: 16px; font-weight: 800; color: #0f172a; margin-bottom: 6px; line-height: 1.4; transition:0.3s;}
.cu-item:hover .cu-info h4 { color: #4f46e5; }
.cu-info p { font-size: 13px; color: #64748b; margin: 0; font-weight: 600; display:flex; align-items:center; gap:6px;}

/* Inset Box Items for News */
.cu-news-item { 
    background: #ffffff; border-radius: 20px; padding: 20px; margin-bottom: 18px; 
    border-left: 6px solid #f43f5e; box-shadow: 0 6px 20px rgba(225, 29, 72, 0.05); transition:all 0.4s;
}
.cu-news-item:hover { transform: scale(1.03); box-shadow: 0 15px 30px rgba(225, 29, 72, 0.12); border-left-width: 8px;}
.cu-news-item h4 { font-size: 16px; font-weight: 800; color: #0f172a; margin-bottom: 8px; line-height: 1.4;}
.cu-news-item p { font-size: 14px; color: #475569; margin-bottom: 15px; line-height: 1.6; }
.cu-news-item span { 
    font-size: 12px; font-weight: 800; color:#e11d48 !important; display:inline-flex; align-items:center; gap:6px; 
    background: #fff1f2 !important; padding: 6px 14px; border-radius: 20px;
}

/* Performers Override */
.cu-medals { 
    padding: 15px 0 25px 0; background: transparent !important; 
    border-bottom: 2px dashed rgba(217, 119, 6, 0.1); margin: 0 20px;
}
.cu-medals .medal-item span { color: #0f172a !important; text-shadow: none !important;}
.cu-medals .medal-item span span { color: #64748b !important; }
.cu-medals i.fa-medal { filter: drop-shadow(0 6px 12px rgba(245, 158, 11, 0.25)); }

.cu-performer { 
    background: #ffffff; border-radius: 20px; padding: 16px; margin-bottom: 16px; 
    border: 1px solid #fef3c7; box-shadow: 0 6px 20px rgba(245, 158, 11, 0.05);
    display: flex; align-items: center; gap: 16px; transition:0.4s;
}
.cu-performer:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(245, 158, 11, 0.15); border-color:#fde68a; }
.cu-performer .perf-img { 
    width: 65px; height: 65px; border-radius: 20px !important; background: #fffbeb !important; border: none !important; 
    display: flex; align-items:center; justify-content:center; box-shadow:0 8px 20px rgba(245, 158, 11, 0.15); flex-shrink:0;
}
.cu-performer .perf-info h5 { font-size: 15px; font-weight: 800; color: #0f172a; margin-bottom: 5px; }
.cu-performer .perf-info p { font-size: 11px; color: #64748b; margin: 0; font-weight: 700; line-height:1.4; text-transform:none;}
.cu-performer .perf-score { 
    margin-left: auto; width: 55px; height: 55px; border-radius: 20px !important; 
    display:flex; justify-content:center; align-items:center; color:#d97706 !important; font-weight:900; font-size:16px !important; 
    flex-shrink:0; background: #fef3c7 !important; border:none !important; box-shadow: inset 0 2px 5px rgba(255,255,255,1);
}

/* Beautiful Floating Footer */
.cu-card-footer { 
    padding: 15px 5px; background: transparent; display: flex; justify-content: space-between; align-items: center; 
    border-top: 1px dashed rgba(15, 23, 42, 0.1); margin: 0 25px 10px 25px; 
}
.cu-card-footer span { font-size: 13px; color: #64748b; font-weight: 700; display:flex; align-items:center; gap:8px;}
.cu-card-footer a { 
    font-size: 13px; font-weight: 800; color: #ffffff !important; text-decoration: none; 
    display:flex; align-items:center; gap:8px; transition:all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: #0f172a; padding: 10px 20px; border-radius: 30px; box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}
.col-lg-4:nth-child(1) .cu-card-footer a { background: #4f46e5; box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3); }
.col-lg-4:nth-child(2) .cu-card-footer a { background: #e11d48; box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3); }
.col-lg-4:nth-child(3) .cu-card-footer a { background: #d97706; box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3); }

.cu-card-footer a:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 25px rgba(15, 23, 42, 0.3); }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1280px) {
    .nav-menu { 
        position: absolute; top: 100%; left: 0; width: 100%; background: #ffffff; 
        flex-direction: column; padding: 20px 5%; height: auto; box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        transform: translateY(-20px); opacity: 0; visibility: hidden; transition: all 0.4s ease; border-top: 2px solid var(--theme-green); border-bottom: 1px solid #eaeaea; text-align: left; align-items: flex-start;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-item { width: 100%; height: auto; margin-bottom: 5px; flex-direction: column; align-items: flex-start; padding: 0; }
    .nav-item > a { width: 100%; justify-content: flex-start; gap: 10px; padding: 12px; }
    .nav-item i.arrow-icon { margin-left: auto; }
    .nav-item:hover > a { transform: none; box-shadow: none; background: #f8fafc;}
    .custom-dropdown-menu { 
        position: static; visibility: visible; opacity: 1; transform: none; box-shadow: none; 
        border: none; padding: 0 0 0 20px; margin-top: 5px; display: none; width: 100%; background: transparent;
    }
    .nav-item.dropdown-parent.mobile-open .custom-dropdown-menu { display: block; }
    .nav-cta-btn { display: none !important; }
    .hero-layout, .split-layout, .services-grid-layout, .steps-header, .dark-stats, .testimonials, .faq-section { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 3.5rem; }
    .steps-header-left { text-align: center; margin-bottom: 20px; }
    .hero-image, .collage { margin-top: 50px; width: 100%; justify-content: center;}
    .collage .img-1 { width: 80%; position: relative; }
    .collage .img-2 { display: none; }
    .steps-grid { flex-direction: column; gap: 40px; }
    .services-cards { grid-template-columns: 1fr; }
    .contact-form-section { padding: 40px 20px; }
    .marquee-text { font-size: 4rem;}
    .footer-grid, .footer-cta { flex-direction: column; text-align: center; }
    .cta-content p { margin: 0 auto; }
    .footer-cta > div { margin-top: 20px; }
    .course-grid { grid-template-columns: 1fr; }
    .testi-card { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .course-grid { grid-template-columns: 1fr; }
}
