/* ============================================================
 HOME PAGE - PREMIUM STYLES (CLEAN REBUILD)
 Color Theme: Deep Navy #0A2540 + Industrial Amber #E8820C
 ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
 --primary: #0A2540;
 --primary2: #0F3460;
 --accent: #E8820C;
 --accent2: #F59E0B;
 --green: #22C55E;
 --white: #ffffff;
 --bg: #F1F5F9;
 --text: #1E293B;
 --muted: #64748B;
 --font-h: 'Outfit', sans-serif;
 --font-b: 'Plus Jakarta Sans', sans-serif;
}

body { font-family: var(--font-b); color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); font-weight: 700; color: var(--primary); }
a { transition: all .25s; }

/* ---- TEXT / BG UTILITIES ---- */
.text-accent { color: var(--accent) !important; }
.btn-accent {
 background: linear-gradient(135deg, var(--accent2), var(--accent));
 color: #fff; border: none; font-weight: 700;
 box-shadow: 0 8px 24px rgba(232,130,12,.35);
 transition: all .3s;
}
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(232,130,12,.45); color: #fff; }
.btn-outline-accent {
 color: var(--accent); border: 2px solid var(--accent);
 background: transparent; font-weight: 600;
 transition: all .3s;
}
.btn-outline-accent:hover { background: var(--accent); color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; border: none; font-weight: 600; }
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; }
.btn-primary {
 background: linear-gradient(135deg, var(--primary), var(--primary2));
 border: none; font-weight: 600;
 box-shadow: 0 6px 18px rgba(10,37,64,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(10,37,64,.35); }
.btn-outline-primary { color: var(--primary); border: 2px solid var(--primary); font-weight: 600; }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }

/* ---- SECTION BADGES ---- */
.section-badge {
 display: inline-block;
 background: rgba(232,130,12,.1);
 color: var(--accent);
 border: 1.5px solid rgba(232,130,12,.3);
 border-radius: 50px;
 padding: 4px 16px;
 font-size: .75rem; font-weight: 700;
 text-transform: uppercase; letter-spacing: 2px;
}
.section-badge.light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.9); }
.section-title { font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 800; letter-spacing: -.5px; line-height: 1.2; }
.section-desc { color: var(--muted); font-size: 1.02rem; }

/* =====================================================================
 TOP BAR
===================================================================== */
.top-bar {
 background: var(--primary);
 border-bottom: 3px solid var(--accent);
 padding: 6px 0;
 font-size: .82rem;
}
.notice-label {
 background: var(--accent);
 color: #fff; font-weight: 800;
 font-size: .76rem; letter-spacing: 2px;
 padding: 7px 18px; text-transform: uppercase;
}
.top-bar marquee { color: rgba(255,255,255,.8); }

/* =====================================================================
 HEADER
===================================================================== */
.main-header { background: #fff; border-bottom: 2px solid #e9edf3; }
.header-logo-icon, .header-logo-emblem {
 width: 80px; height: 80px; border-radius: 14px;
 display: flex; align-items: center; justify-content: center;
 font-size: 2.2rem; color: #fff;
 box-shadow: 0 8px 22px rgba(10,37,64,.22);
}
.header-logo-icon { background: linear-gradient(135deg, var(--primary), var(--primary2)); }
.header-logo-emblem { background: linear-gradient(135deg, var(--accent), var(--accent2)); font-size: 1.9rem; width: 70px; height: 70px; }
.header-title {
 font-family: var(--font-h); font-size: 2rem; font-weight: 800;
 letter-spacing: -.5px;
 background: linear-gradient(135deg, var(--primary) 40%, var(--primary2));
 -webkit-background-clip: text; -webkit-text-fill-color: transparent;
 line-height: 1.2;
}
.header-subtitle { font-size: .82rem; font-weight: 600; letter-spacing: 1.8px; color: var(--muted); margin: 3px 0; }
.header-address { font-size: .76rem; color: #94a3b8; }

/* =====================================================================
 NAVBAR
===================================================================== */
.main-navbar { background: var(--primary) !important; padding: 0; box-shadow: 0 6px 24px rgba(10,37,64,.35); }
.main-navbar .nav-link {
 color: rgba(255,255,255,.82) !important;
 font-family: var(--font-h); font-weight: 500; font-size: .92rem;
 padding: .9rem 1.1rem !important; letter-spacing: .3px; position: relative;
}
.main-navbar .nav-link::after {
 content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
 width: 0; height: 3px; background: var(--accent);
 transition: width .3s; border-radius: 3px 3px 0 0;
}
.main-navbar .nav-link:hover,.main-navbar .nav-link.active { color: #fff !important; }
.main-navbar .nav-link:hover::after,.main-navbar .nav-link.active::after { width: 80%; }

/* Dropdown arrow icon indicator */
.main-navbar .dropdown-toggle::after {
 display: none !important;
}
.main-navbar .nav-link .fa-caret-down {
 font-size: 0.8rem;
 color: var(--accent) !important;
 transition: transform 0.25s ease;
 display: inline-block;
 vertical-align: middle;
}
.main-navbar .dropdown.show .nav-link .fa-caret-down,
.main-navbar .dropdown:hover .nav-link .fa-caret-down {
 transform: rotate(180deg);
}
.dropdown-menu {
 background: #fff; border: none; border-top: 3px solid var(--accent);
 border-radius: 0 0 14px 14px; box-shadow: 0 20px 40px rgba(0,0,0,.12);
 padding: .6rem 0; min-width: 270px;
 animation: dropFade .18s ease;
}
@keyframes dropFade { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.dropdown-item { color: var(--text); font-weight: 500; font-size: .88rem; padding: .55rem 1.4rem; border-left: 3px solid transparent; transition: all .2s; }
.dropdown-item:hover { background: var(--bg); color: var(--primary); border-left-color: var(--accent); padding-left: 1.75rem; }

/* =====================================================================
 HERO SECTION
===================================================================== */
.hero-section { position: relative; overflow: hidden; }
.hero-slide {
 height: 88vh; min-height: 580px;
 background-size: cover; background-position: center;
 background-attachment: fixed;
 position: relative;
}
.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(90deg,rgba(0,0,0,.35),rgba(0,0,0,.10));
z-index:1;
}
.hero-content{
position:relative;
z-index:3;
max-width:720px;
padding-top:100px;
}

.hero-title{
color:#fff;
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
font-feature-settings:normal;
font-style:normal;
font-size:72px;
font-weight:600;
line-height:1.08;
text-decoration:none;
letter-spacing:-1px;
text-transform:none;
margin:0 0 20px;
padding-top:0;
overflow-wrap:break-word;
word-break:break-word;
}
.hero-title{
max-width:900px;
}
.hero-highlight{
color:#fff;
font-family:'Inter',sans-serif;
font-weight:600;
display:inline;
}
.hero-highlight{
white-space:nowrap;
}
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 580px; line-height: 1.8; }
.hero-stat-item { display: flex; flex-direction: column; color: #fff; }
.hero-stat-item strong { font-family: var(--font-h); font-size: 2rem; font-weight: 800; color: var(--accent); }
.hero-stat-item span { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.18); align-self: stretch; }
 .hero-btn{transition:.4s;
}
.hero-next,.hero-prev {
 width: 46px; height: 46px;
 background: rgba(255,255,255,.1) !important; backdrop-filter: blur(8px);
 border-radius: 50%; border: 2px solid rgba(255,255,255,.2);
 color: #fff !important; font-size: .85rem; transition: all .3s;
}
.hero-next::after,.hero-prev::after { display: none; }
.hero-next:hover,.hero-prev:hover { background: var(--accent) !important; border-color: var(--accent); }
.hero-pagination { bottom: 22px !important; }
.hero-pagination .swiper-pagination-bullet { width: 28px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.4); opacity: 1; transition: all .3s; }
.hero-pagination .swiper-pagination-bullet-active { background: var(--accent); width: 50px; }

/* =====================================================================
 QUICK ACTIONS BAR
===================================================================== */
.quick-actions-bar { background: linear-gradient(135deg, var(--primary), var(--primary2)); border-top: 4px solid var(--accent); }
.qab-row {}
.qab-item a {
 display: flex; align-items: center; gap: 16px;
 padding: 20px 30px; color: rgba(255,255,255,.85); text-decoration: none;
 border-right: 1px solid rgba(255,255,255,.09); transition: background .3s;
}
.qab-item:last-child a { border-right: none; }
.qab-item a:hover { background: rgba(255,255,255,.06); color: #fff; }
.qab-icon {
 width: 48px; height: 48px; border-radius: 12px;
 background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
 font-size: 1.25rem; color: rgba(255,255,255,.8); flex-shrink: 0; transition: all .3s;
}
.qab-icon.accent { background: var(--accent); color: #fff; }
.qab-item a:hover .qab-icon { transform: scale(1.1); }
.qab-text h6 { font-family: var(--font-h); font-weight: 700; margin: 0; font-size: .97rem; color: #fff; }
.qab-text span { font-size: .78rem; color: rgba(255,255,255,.5); }
.qab-arrow { margin-left: auto; opacity: .35; transition: all .3s; }
.qab-item a:hover .qab-arrow { opacity: 1; transform: translateX(5px); }

/* =====================================================================
 ABOUT INTRO SECTION
===================================================================== */
.about-intro-section { background: #fff; }
.about-img-grid {
 position: relative; height: 440px;
}
.aig-main {
 position: absolute; top: 0; left: 0; right: 20%;
 height: 62%; border-radius: 16px;
 background-size: cover; background-position: center;
 box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.aig-thumb1 {
 position: absolute; bottom: 0; left: 5%; width: 48%;
 height: 40%; border-radius: 14px;
 background-size: cover; background-position: center;
 box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.aig-thumb2 {
 position: absolute; bottom: 0; right: 0; width: 45%;
 height: 40%; border-radius: 14px;
 background-size: cover; background-position: center;
 box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.aig-badge {
 position: absolute; top: 55%; left: 60%;
 background: linear-gradient(135deg, var(--accent), var(--accent2));
 color: #fff; border-radius: 14px; padding: 14px 18px;
 box-shadow: 0 10px 30px rgba(232,130,12,.4);
 text-align: center; min-width: 120px;
}
.aig-number { display: block; font-family: var(--font-h); font-size: 2rem; font-weight: 900; line-height: 1; }
.aig-label { font-size: .75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: .85; }

.about-feature-box {
 display: flex; gap: 14px; align-items: flex-start;
 background: var(--bg); border-radius: 14px; padding: 16px;
 border-left: 4px solid var(--accent);
}
.about-feature-box i { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.about-feature-box h6 { font-weight: 700; margin: 0 0 4px; color: var(--primary); }

/* =====================================================================
 STATS SECTION
===================================================================== */
.stats-section {
 background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
 position: relative; overflow: hidden;
}
.stats-section::before {
 content: ''; position: absolute; inset: 0;
 background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 40v-8h-2v8h-8v2h8v8h2v-8h8v-2h-8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-card {
 background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
 border-radius: 20px; padding: 2rem 1.5rem; text-align: center;
 transition: all .4s cubic-bezier(.175,.885,.32,1.275); position: relative; overflow: hidden;
}
.stat-card:hover { background: rgba(255,255,255,.12); transform: translateY(-10px); border-color: var(--accent); }
.stat-card.highlight { background: var(--accent); border-color: var(--accent); }
.stat-card.highlight .stat-icon,.stat-card.highlight h3,.stat-card.highlight p { color: #fff !important; -webkit-text-fill-color: #fff; }
.stat-card.highlight .stat-line { background: rgba(255,255,255,.4); }
.stat-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 1rem; opacity: .85; }
.stat-card.highlight .stat-icon { opacity: .7; }
.stat-card h3 {
 font-size: 3rem; font-weight: 900; color: #fff;
 -webkit-text-fill-color: #fff; line-height: 1; margin-bottom: .4rem;
}
.stat-card p { color: rgba(255,255,255,.7); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.stat-line { width: 36px; height: 3px; border-radius: 2px; background: var(--accent); margin: 1rem auto 0; }

/*=====================================================
RECRUITERS SECTION
=====================================================*/

.recruiters-section{
background:#f8fafc;
position:relative;
overflow:hidden;
}
.recruiterSwiper{
padding:15px 5px 40px;
}

.recruiterSwiper .swiper-slide{
height:auto;
}

.recruiter-card{
background:#fff;
border-radius:20px;
padding:30px 20px;
height:270px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
border:1px solid rgba(0,0,0,.06);
box-shadow:0 12px 30px rgba(0,0,0,.08);
transition:.4s ease;
}

.recruiter-card:hover{
transform:translateY(-10px);
box-shadow:0 18px 45px rgba(0,0,0,.14);
border-color:var(--accent);
}

/* Company Logo */

.rc-logo{
width:120px;
height:120px;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 18px;
padding:12px;
background:#fff;
border-radius:16px;
transition:.4s;
}

.rc-logo img{
max-width:100%;
max-height:65px;
object-fit:contain;
transition:.35s;
}

.recruiter-card:hover .rc-logo img{
transform:scale(1.08);
}

/* Short Name */

.recruiter-card h6{
margin:0;
font-size:18px;
font-weight:700;
color:#111827;
font-family:var(--font-h);
}

/* Company Name */

.recruiter-card p{
margin:8px 0 14px;
font-size:14px;
font-weight:500;
line-height:1.5;
color:#6b7280;
}

/* Placement Tag */

.rc-tag{
display:inline-block;
padding:6px 18px;
border-radius:40px;
background:rgba(245,158,11,.12);
color:var(--accent);
font-size:13px;
font-weight:700;
letter-spacing:.3px;
}

/* Swiper Pagination */

.recruiterSwiper .swiper-pagination-bullet{
width:10px;
height:10px;
background:#cbd5e1;
opacity:1;
}

.recruiterSwiper .swiper-pagination-bullet-active{
background:var(--accent);
width:28px;
border-radius:20px;
}

/* Mobile */

@media(max-width:992px){

.recruiter-card{
height:250px;
}

}

@media(max-width:768px){

.recruiter-card{
height:235px;
padding:22px 16px;
}

.rc-logo{
width:75px;
height:75px;
}

.rc-logo img{
max-height:50px;
}

.recruiter-card h6{
font-size:16px;
}

.recruiter-card p{
font-size:13px;
}

}

/* =====================================================================
 COURSES SECTION
===================================================================== */
.courses-section { background: #fff; }
.course-card {
 background: #fff; border-radius: 20px; overflow: hidden;
 box-shadow: 0 4px 18px rgba(0,0,0,.06); border: 2px solid transparent;
 transition: all .4s cubic-bezier(.175,.885,.32,1.275); height: 100%; display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(10,37,64,.14); border-color: var(--accent); }
.cc-top { background: linear-gradient(135deg, var(--primary), var(--primary2)); padding: 1.4rem; display: flex; justify-content: space-between; align-items: flex-start; }
.cc-icon { width: 52px; height: 52px; background: rgba(255,255,255,.12); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; color: var(--accent); flex-shrink: 0; }
.cc-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.cc-tag { background: var(--accent); color: #fff; font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: .8px; }
.cc-duration { color: rgba(255,255,255,.6); font-size: .78rem; }
.cc-body { padding: 1.4rem; flex-grow: 1; }
.cc-body h4 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: .65rem; }
.cc-body p { color: var(--muted); font-size: .88rem; line-height: 1.7; }
.cc-features { list-style: none; padding: 0; margin: 1rem 0 0; }
.cc-features li { font-size: .83rem; color: var(--text); padding: 3px 0; display: flex; align-items: center; gap: 8px; }
.cc-features li i { color: #22c55e; }
.cc-footer { padding: 1.1rem 1.4rem; border-top: 1px solid #f0f4f8; background: #fafbfd; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.cc-salary { font-size: .76rem; color: var(--accent); font-weight: 700; }

/* =====================================================================
 VIDEO SECTION
===================================================================== */
.video-section {
 background: linear-gradient(135deg, var(--primary) 0%, #0d2b52 100%);
 position: relative; overflow: hidden;
}
.video-features-list { list-style: none; padding: 0; }
.video-features-list li { color: rgba(255,255,255,.8); padding: 7px 0; display: flex; align-items: center; gap: 12px; font-size: .93rem; font-weight: 500; }
.video-features-list li i { color: var(--accent); font-size: 1rem; flex-shrink: 0; }

/* Main Featured Video */
.video-thumb-main {
 position: relative; border-radius: 18px; overflow: hidden;
 height: 340px; cursor: pointer;
 box-shadow: 0 24px 60px rgba(0,0,0,.45);
 border: 2px solid rgba(255,255,255,.1);
 transition: transform .3s;
}
.video-thumb-main:hover { transform: scale(1.02); }
.vtm-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.vtm-overlay { position: absolute; inset: 0; background: rgba(10,37,64,.55); }
.vtm-play {
 position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%);
 display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.play-circle {
 width: 74px; height: 74px; border-radius: 50%;
 background: var(--accent); display: flex; align-items: center; justify-content: center;
 font-size: 1.7rem; color: #fff;
 animation: ripple 2s infinite;
 box-shadow: 0 0 0 0 rgba(232,130,12,.4);
}
@keyframes ripple { 0%{box-shadow:0 0 0 0 rgba(232,130,12,.5)} 70%{box-shadow:0 0 0 22px rgba(232,130,12,0)} 100%{box-shadow:0 0 0 0 rgba(232,130,12,0)} }
.vtm-label {
 position: absolute; bottom: 16px; left: 16px; right: 16px;
 background: rgba(10,37,64,.85); backdrop-filter: blur(8px);
 color: #fff; padding: 10px 16px; border-radius: 10px; font-size: .86rem; font-weight: 600;
 border-left: 4px solid var(--accent);
}

/* Video Grid Cards */
.video-grid-card {
 position: relative; border-radius: 14px; overflow: hidden;
 cursor: pointer; height: 155px;
 box-shadow: 0 8px 22px rgba(0,0,0,.3);
 border: 2px solid rgba(255,255,255,.08);
 transition: all .3s;
}
.video-grid-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 14px 32px rgba(0,0,0,.4); }
.vgc-thumb { position: absolute; inset: 0; background-size: cover; background-position: center; }
.vgc-overlay {
 position: absolute; inset: 0;
 background: rgba(10,37,64,.55); display: flex; align-items: center; justify-content: center;
 font-size: 1.8rem; color: rgba(255,255,255,.6); transition: all .3s;
}
.video-grid-card:hover .vgc-overlay { background: rgba(232,130,12,.65); color: #fff; }
.vgc-info {
 position: absolute; bottom: 0; left: 0; right: 0;
 background: linear-gradient(to top, rgba(10,37,64,.95), transparent);
 padding: 28px 12px 10px;
}
.vgc-info span { color: #fff; font-size: .78rem; font-weight: 600; display: block; }

/* =====================================================================
 REVIEWS SECTION
===================================================================== */
.reviews-section { background: var(--bg); }
.review-card {
 background: #fff; border-radius: 20px; padding: 1.8rem;
 box-shadow: 0 4px 18px rgba(0,0,0,.06); border: 2px solid #e8eef5;
 transition: all .3s; height: 100%;
}
.review-card:hover { box-shadow: 0 14px 32px rgba(0,0,0,.1); border-color: var(--accent); }
.review-quote { font-size: 2.2rem; color: var(--accent); opacity: .22; margin-bottom: .3rem; line-height: 1; }
.review-card > p { color: var(--text); line-height: 1.8; font-style: italic; font-size: .93rem; }
.review-stars { font-size: 1rem; margin: .8rem 0; }
.review-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid #f0f4f8; padding-top: .9rem; }
.review-avatar { font-size: 2.6rem; color: #cbd5e1; }
.review-author h6 { font-weight: 700; color: var(--primary); margin: 0; font-size: .95rem; }
.review-author span { font-size: .78rem; color: var(--muted); }
.reviews-pagination { text-align: center; margin-top: 1rem; }
.reviews-pagination .swiper-pagination-bullet { background: var(--primary); opacity: .25; }
.reviews-pagination .swiper-pagination-bullet-active { background: var(--accent); opacity: 1; }

/* =====================================================================
 FOOTER
===================================================================== */
.main-footer { background: #050e1a; border-top: 4px solid var(--accent); }
.footer-top { padding: 5rem 0 3rem; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, var(--primary2), var(--primary)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; }
.footer-brand h4 { color: #fff; font-weight: 800; margin: 0; }
.footer-brand small { color: rgba(255,255,255,.4); font-size: .73rem; }
.footer-desc { color: rgba(255,255,255,.5); font-size: .86rem; line-height: 1.8; }
.footer-contact-list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 9px; }
.footer-contact-list a { color: rgba(255,255,255,.55); font-size: .86rem; text-decoration: none; display: flex; align-items: center; gap: 10px; transition: color .2s; }
.footer-contact-list a:hover { color: var(--accent); }
.footer-contact-list i { color: var(--accent); width: 16px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); font-size: .9rem; text-decoration: none; transition: all .3s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-heading { color: #fff; font-family: var(--font-h); font-size: .95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.3rem; padding-bottom: 8px; border-bottom: 2px solid var(--accent); display: inline-block; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .86rem; text-decoration: none; display: flex; align-items: center; gap: 7px; transition: all .25s; }
.footer-links a::before { content: ''; color: var(--accent); font-size: 1.1rem; }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-form { display: flex; flex-direction: column; gap: 10px; }
.footer-input { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.11); border-radius: 10px; padding: 10px 15px; color: #fff; font-size: .88rem; outline: none; transition: border-color .3s; font-family: var(--font-b); }
.footer-input option { color: #000; }
.footer-input::placeholder { color: rgba(255,255,255,.32); }
.footer-input:focus { border-color: var(--accent); }
.footer-bottom { background: rgba(0,0,0,.3); padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-bottom p { color: rgba(255,255,255,.38); font-size: .8rem; margin: 0; }
.footer-bottom strong { color: rgba(255,255,255,.65); }

/* =====================================================================
 MOBILE NAVBAR MENU - FULL OVERHAUL
===================================================================== */
.main-navbar .navbar-collapse {
 transition: all .35s ease;
}
/* Mobile menu open state */
@media (max-width: 991px) {
 /* Navbar toggler button */
 .main-navbar .navbar-toggler {
 border: 2px solid rgba(255,255,255,.35) !important;
 border-radius: 10px;
 padding: 6px 10px;
 color: #fff;
 box-shadow: none !important;
 outline: none;
 }
 .main-navbar .navbar-toggler:focus { box-shadow: none !important; }
 .main-navbar .navbar-toggler-icon {
 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 }

 /* Mobile collapsed menu panel */
 .main-navbar #mainNav {
 background: #071829;
 border-top: 3px solid var(--accent);
 margin: 8px 0 0 0 !important;
 padding: 0.75rem 1rem 1rem !important;
 width: 100% !important;
 max-width: 100% !important;
 box-sizing: border-box;
 max-height: 80vh;
 overflow-y: auto;
 border-radius: 0 0 16px 16px;
 box-shadow: 0 20px 40px rgba(0,0,0,.4);
 }

 /* Nav links inside mobile menu */
 .main-navbar .nav-link {
 padding: 0.75rem 0.5rem !important;
 border-bottom: 1px solid rgba(255,255,255,.06);
 font-size: 1rem;
 border-radius: 0;
 }
 .main-navbar .nav-link::after { display: none; }
 .main-navbar .nav-item:last-child .nav-link { border-bottom: none; }

 /* Mobile dropdown */
 .main-navbar .dropdown-menu {
 background: rgba(255,255,255,.06);
 border: none;
 border-top: 2px solid var(--accent);
 border-radius: 10px;
 box-shadow: none;
 margin: 4px 0 8px;
 padding: 0.25rem 0;
 animation: none;
 }
 .main-navbar .dropdown-item {
 color: rgba(255,255,255,.75);
 font-size: .88rem;
 padding: 0.6rem 1rem;
 border-left: none;
 }
 .main-navbar .dropdown-item:hover {
 background: rgba(255,255,255,.08);
 color: var(--accent);
 padding-left: 1.25rem;
 }

 /* Call / WA / Apply buttons inside mobile menu */
 .main-navbar .navbar-collapse .d-flex {
 flex-wrap: wrap;
 gap: 8px !important;
 padding: 12px 0.5rem 0;
 border-top: 1px solid rgba(255,255,255,.1);
 margin-top: 8px;
 }
 .main-navbar .navbar-collapse .d-flex .btn {
 flex: 1 1 auto;
 font-size: .82rem;
 padding: 8px 10px;
 min-width: 90px;
 text-align: center;
 }
}

/* =====================================================================
 RESPONSIVE - HEADER
===================================================================== */
@media (max-width: 991px) {
 .main-header .container-fluid .row { flex-wrap: nowrap; }
 .header-logo-icon { width: 60px; height: 60px; font-size: 1.6rem; }
 .header-logo-emblem { display: none !important; }
 .header-title { font-size: 1.4rem; letter-spacing: 0; }
 .header-subtitle { font-size: .72rem; letter-spacing: 1px; }
 .header-address { font-size: .7rem; }
}
@media (max-width: 575px) {
 .main-header .container-fluid { padding: .75rem 1rem !important; }
 .header-logo-icon { width: 48px; height: 48px; font-size: 1.3rem; border-radius: 10px; }
 .header-title { font-size: 1rem; letter-spacing: -.3px; }
 .header-subtitle { font-size: .65rem; }
 .header-address { display: none; }
}

/* =====================================================================
 RESPONSIVE - HERO
===================================================================== */
@media (max-width: 991px) {
 .hero-slide {
 height: 85vh;
 min-height: 520px;
 background-attachment: scroll;
 }
 .hero-title { font-size: 2.2rem; }
 .hero-desc { font-size: 1rem; }
 .hero-btn { padding: .7rem 1.6rem; font-size: .9rem; }
 .hero-next, .hero-prev { width: 38px; height: 38px; }
}
@media (max-width: 575px) {
 .hero-slide { height: 90vh; min-height: 500px; }
 .hero-title { font-size: 1.75rem; letter-spacing: -.5px; line-height: 1.15; }
 .hero-desc { font-size: .9rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
 .hero-stats { gap: .75rem !important; }
 .hero-stat-item strong { font-size: 1.5rem; }
 .hero-stat-item span { font-size: .7rem; }
 .hero-stat-divider { display: none !important; }
 .hero-badge { font-size: .72rem; padding: 4px 12px; }
 .hero-content .d-flex.gap-3 { gap: .6rem !important; }
 .hero-btn { padding: .65rem 1.2rem; font-size: .82rem; }
 .hero-next { right: 8px; }
 .hero-prev { left: 8px; }
}

/* =====================================================================
 RESPONSIVE - QUICK ACTIONS BAR
===================================================================== */
@media (max-width: 767px) {
 .qab-row { flex-direction: column; }
 .qab-item a {
 padding: 14px 20px;
 border-right: none;
 border-bottom: 1px solid rgba(255,255,255,.09);
 }
 .qab-item:last-child a { border-bottom: none; }
}

/* =====================================================================
 RESPONSIVE - ABOUT INTRO
===================================================================== */
@media (max-width: 991px) {
 .about-img-grid { height: 320px; margin-bottom: 1.5rem; }
 .aig-badge { padding: 10px 14px; min-width: 90px; }
 .aig-number { font-size: 1.6rem; }
}
@media (max-width: 575px) {
 .about-img-grid { height: 220px; margin-bottom: 1.5rem; }
 .aig-badge { display: none; }
 .about-feature-box { flex-direction: column; gap: 8px; }
 .about-feature-box i { font-size: 1.3rem; }
}

/* =====================================================================
 RESPONSIVE - STATS
===================================================================== */
@media (max-width: 575px) {
 .stat-card { padding: 1.4rem 1rem; }
 .stat-card h3 { font-size: 2.2rem; }
 .stat-icon { font-size: 2rem; }
}

/* =====================================================================
 RESPONSIVE - RECRUITERS
===================================================================== */
@media (max-width: 575px) {
 .recruiter-card { padding: 1.1rem 0.8rem; }
 .rc-icon { width: 56px; height: 56px; border-radius: 12px; }
 .recruiter-card h6 { font-size: .85rem; }
 .recruiter-card p { font-size: .72rem; }
}

/* =====================================================================
 RESPONSIVE - COURSES
===================================================================== */
@media (max-width: 767px) {
 .cc-body h4 { font-size: 1rem; }
 .cc-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
 .cc-footer .btn { width: 100%; text-align: center; }
}

/* =====================================================================
 RESPONSIVE - VIDEO SECTION
===================================================================== */
@media (max-width: 991px) {
 .video-thumb-main { height: 280px; }
 .play-circle { width: 60px; height: 60px; font-size: 1.4rem; }
 .vtm-label { font-size: .78rem; padding: 8px 12px; }
}
@media (max-width: 575px) {
 .video-thumb-main { height: 220px; }
 .video-grid-card { height: 120px; }
 .vtm-play { top: 38%; }
 .play-circle { width: 52px; height: 52px; font-size: 1.2rem; }
}

/* =====================================================================
 RESPONSIVE - REVIEWS
===================================================================== */
@media (max-width: 575px) {
 .review-card { padding: 1.3rem; }
 .review-quote { font-size: 1.8rem; }
}

/* =====================================================================
 RESPONSIVE - FOOTER
===================================================================== */
@media (max-width: 767px) {
 .footer-top { padding: 3rem 0 2rem; }
 .footer-heading { font-size: .85rem; }
 .footer-bottom .col-md-4 { text-align: center !important; margin-top: .5rem; }
}
@media (max-width: 575px) {
 .footer-top { padding: 2rem 0 1.5rem; }
 .footer-brand h4 { font-size: 1rem; }
 .footer-social a { width: 32px; height: 32px; font-size: .82rem; }
}

/* =====================================================================
 GLOBAL OVERFLOW GUARD
===================================================================== */
body { overflow-x: hidden; }
.container-fluid { max-width: 100%; }

/* Make images never overflow */
img { max-width: 100%; height: auto; }

.hero-title{

animation: heroTitle 1s ease forwards;

}

.hero-desc{
font-size:18px;
line-height:1.5;
color:#f1f5f9;
max-width:620px;
text-shadow:0 5px 15px rgba(0,0,0,.4);
margin-bottom:20px;
}

@keyframes heroTitle{

from{

opacity:0;
transform:translateY(40px);

}

to{

opacity:1;
transform:translateY(0);

}

}



@keyframes lineShow{

from{

width:0;

}

to{

width:100%;

}

}


@keyframes fadeUp{

from{

opacity:0;
transform:translateY(25px);

}

to{

opacity:1;
transform:translateY(0);

}

}