*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body{
background:#f5f5f5;
overflow-x:hidden;
}

.top-bar{
background:#1D1B50;
color:white;
padding:8px 6%;
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
}

.top-left{
display:flex;
gap:20px;
align-items:center;
}

.top-right{
display:flex;
align-items:center;
gap:18px;
color:white;
}

.top-right span{
color:white;
}

.top-right{
display:flex;
align-items:center;
gap:18px;
}

.top-right span{
color:white;
}

.top-right a{
width:20px;
height:20px;

display:flex;
align-items:center;
justify-content:center;

text-decoration:none;

color:white ;
}

.top-right a:visited{
color:white ;
}

.top-right a i{
font-size:15px ;
color:white ;
transition:0.3s;
}

.top-right a:hover i{
color:#F8AE46 ;
}
.navbar{
background:white;
padding:18px 6%;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.logo-section{
display:flex;
align-items:center;
gap:12px;
}

.logo-section img{
width:70px;
}

.logo-section h2{
font-size:24px;
font-weight:800;
color:#1D1B50;
line-height:1.1;
}

.logo-section p{
color:#F8AE46;
font-weight:700;
font-size:18px;
}

nav{
display:flex;
gap:35px;
}

nav a{
text-decoration:none;
color:black;
font-weight:700;
position:relative;
}

nav a::after{
content:'';
width:0%;
height:3px;
background:#F8AE46;
position:absolute;
left:0;
bottom:-8px;
transition:0.4s;
}

nav a:hover::after,
nav a.active::after{
width:100%;
}

.enroll-btn{
background:#F8AE46;
border:none;
padding:18px 38px;
border-radius:50px;
font-size:20px;
font-weight:700;
cursor:pointer;
transition:0.4s ease;
position:relative;
overflow:hidden;
box-shadow:0 5px 15px rgba(248,174,70,0.4);
line-height:1;
}

.enroll-btn:hover{
transform:translateY(-5px) scale(1.05);
box-shadow:0 10px 25px rgba(248,174,70,0.5);
}

.enroll-btn:active{
transform:scale(0.96);
}

.enroll-btn::before{
content:'';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:rgba(255,255,255,0.3);
transform:skewX(-25deg);
transition:0.6s;
}

.enroll-btn:hover::before{
left:120%;
}

.menu-btn{
display:none;
font-size:42px;
cursor:pointer;
}

.hero{
background:#1D1B50;
padding:70px 6%;
display:grid;
grid-template-columns:1.2fr 1fr 1fr;
gap:40px;
align-items:center;
}

.hero-left h3{
font-size:42px;
color:white;
margin-bottom:10px;
}

.hero-left h1{
font-size:64px;
color:#F8AE46;
line-height:1.1;
margin-bottom:25px;
}

.hero-left p{
color:white;
font-size:20px;
line-height:1.7;
margin-bottom:30px;
}

/* BUTTON CONTAINER */

.hero-buttons{
display:flex;
gap:20px;
align-items:center;
}

/* EXPLORE BUTTON */

.explore-btn{
display:flex;
align-items:center;
justify-content:center;

width:210px;
height:62px;

background:#F8AE46;
border:none;
border-radius:14px;

font-size:22px;
font-weight:600;

color:#1D1B50;
cursor:pointer;

text-decoration:none;
outline:none;
border:none;

transition:0.3s ease;
}

/* EXPLORE HOVER */

.explore-btn:hover{
background:#1D1B50;
color:white;
text-decoration:none;
}

/* WATCH BUTTON */

.watch-btn{
display:flex;
align-items:center;
justify-content:center;

gap:12px;

width:210px;
height:62px;

border:2px solid white;
border-radius:14px;

background:transparent;
color:white;

font-size:22px;
font-weight:600;

text-decoration:none;

transition:0.3s ease;
cursor:pointer;
}

.watch-btn:visited{
color:white;
}

.watch-btn:hover{
background:white;
color:#1D1B50;
}

.watch-btn i{
font-size:18px;
}

.hero-center img{
width:100%;
animation:float 4s ease-in-out infinite;
}

.hero-right{
display:flex;
flex-direction:column;
gap:18px;
width:100%;
}

/* FEATURE BOX */

.feature-box{
display:flex;
align-items:stretch;
justify-content:space-between;
width:100%;
height:92px; /* SAME HEIGHT FOR ALL BOXES */
border:1px solid rgba(255,255,255,0.7);
border-radius:14px;
overflow:hidden;
background:transparent;
transition:0.3s ease;
}

.feature-box:hover{
transform:translateX(-4px);
}

.feature-left{
background:#f5f5f5;
display:flex;
align-items:center;
gap:16px;
padding:0 20px;
flex:1;
height:100%;
}

.feature-left i{
font-size:32px;
color:#241D68;
min-width:38px;
text-align:center;
}

.feature-left h4{
font-size:16px;
line-height:1.25;
font-weight:700;
color:#241D68;

width:145px; /* SAME TEXT WIDTH */
min-width:145px;

word-break:break-word;
}

.feature-box span{
background:#241D68;
color:#F8AE46;

width:165px; /* SAME WIDTH FOR ALL RIGHT SECTIONS */
min-width:165px;
max-width:165px;

height:100%;

display:flex;
align-items:center;
justify-content:center;

padding:0 16px;

font-size:14px;
font-weight:700;
line-height:1.25;
text-align:left;

word-break:break-word;
}

/* MOBILE */

@media(max-width:768px){

.feature-box{
flex-direction:row;
height:76px; /* SAME MOBILE HEIGHT */
}

.feature-left{
padding:0 14px;
gap:10px;
}

.feature-left i{
font-size:24px;
min-width:30px;
}

.feature-left h4{
font-size:13px;
line-height:1.2;
font-weight:700;
color:#241D68;

width:110px;
min-width:110px;

word-break:break-word;
}

.feature-box span{
width:115px;
min-width:115px;
max-width:115px;

padding:0 12px;

font-size:12px;
line-height:1.2;
}

}

.info-strip{
width:88%;
margin:-45px auto 50px;
background:white;
border-radius:25px;
display:grid;
grid-template-columns:repeat(4,1fr);
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.info-card{
padding:30px;
text-align:center;
border-right:1px solid #ddd;
}

.courses-section,
.students-section{
width:90%;
margin:auto;
margin-bottom:60px;
background:white;
border-radius:25px;
padding:40px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* ================= SECTION TITLE ================= */

.section-title{
text-align:center;
margin-bottom:40px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}

.section-title h2{
font-size:52px;
font-weight:800;
color:#1D1B50;
margin:0;
}

.line{
width:90px;
height:5px;
background:#F8AE46;
border-radius:50px;
margin-top:18px;   /* pushes line below heading */
display:block;
}


.course-container{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
}

.course-card{
background:white;

padding:20px;

border-radius:18px;

text-align:center;

display:flex;
flex-direction:column;
align-items:center;

width:220px;

box-shadow:0 4px 15px rgba(0,0,0,0.12);

transition:0.3s ease;
}

.course-card:hover{
transform:translateY(-10px);
}

.course-card img{
width:120px;
height:120px;

object-fit:contain;
object-position:center;

display:block;

margin:0 auto 10px;

flex-shrink:0;
}

.course-card p{
margin-bottom:10px;
}

.view-btn{
width:100%;
display:flex;
justify-content:center;
margin-top:35px;
}

.view-btn button{
background:#1D1B50;
color:white;
border:none;
padding:14px 30px;
border-radius:8px;
font-size:20px;
font-weight:600;
cursor:pointer;
transition:0.4s;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.view-btn button:hover{
background:#F8AE46;
color:#1D1B50;
transform:translateY(-4px);
}

/* ================= STUDENTS SECTION ================= */

.students-section{
width:90%;
margin:auto;
margin-bottom:60px;

background:white;

border-radius:25px;

padding:40px 20px;

box-shadow:0 5px 20px rgba(0,0,0,0.1);

overflow:hidden;

position:relative;

}

/* SCROLL CONTAINER */

.students-container{
display:flex;

gap:20px;

width:fit-content;

align-items:stretch;

animation:scrollStudents 22s linear infinite;

will-change:transform;

}

.students-container:hover{
animation-play-state:paused;
}

/* STUDENT CARD */

.student-card{
width:220px;
min-width:220px;

padding:18px;

background:white;

border-radius:18px;

text-align:center;

box-shadow:0 5px 15px rgba(0,0,0,0.12);

display:flex;
flex-direction:column;
align-items:center;

flex-shrink:0;

transition:0.3s ease;
}

.student-card:hover{
transform:translateY(-6px);
}

/* STUDENT IMAGE */

.student-img{
width:75px;
height:75px;

border-radius:50%;

object-fit:cover;
object-position:center;

display:block;

margin:0 auto 12px;

border:4px solid #f1f1f1;

background:#fff;

overflow:hidden;
}

/* COMPANY LOGO */

.company-logo{
width:70px;
height:70px;

border-radius:50%;

object-fit:contain;
object-position:center;

display:block;

margin:6px auto;

background:#fff;

padding:8px;

border:3px solid #f1f1f1;

overflow:hidden;
}

/* TEXT */

.student-card h3{
font-size:20px;
font-weight:700;
color:#1D1B50;
margin-bottom:8px;
}

.student-card p{
font-size:15px;
line-height:1.4;
color:#444;
margin-bottom:10px;
}

.student-card h4{
font-size:16px;
font-weight:700;
color:#1D1B50;

margin-top:6px;
margin-bottom:0;

padding:0;
}

/* AUTO SCROLL LOOP */

@keyframes scrollStudents{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* MOBILE */

@media(max-width:768px){

.students-section{
padding:30px 15px;
}

.students-container{
gap:16px;
}

.student-card{
width:220px;
min-width:220px;

height:340px;

padding:15px;
}

.student-img{
width:80px;
height:80px;
}

.company-logo{
width:60px;
height:60px;
}

.student-card h3{
font-size:18px;
}

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

.student-card h4{
font-size:16px;
}

}
.cta{
width:90%;
margin:60px auto;
display:grid;
grid-template-columns:1fr 1fr;
border-radius:20px;
overflow:hidden;
}

.stats{
background:#1D1B50;
color:white;
display:grid;
grid-template-columns:repeat(5,1fr);
padding:35px 25px;
text-align:center;
}

.stats h3{
font-size:30px;
margin-bottom:10px;
}

.cta-right{
background:#F8AE46;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
padding:30px;
}

.cta-right img{
width:85px;
height:85px;
object-fit:contain;
}

.cta-right div{
flex:1;
}

.cta-right h2{
font-size:28px;
margin-bottom:10px;
font-weight:700;
color:black;
}

.cta-right p{
font-size:15px;
line-height:1.6;
}

.cta-right button{
background:#1D1B50;
color:white;
border:none;
padding:14px 24px;
border-radius:10px;
cursor:pointer;
font-size:16px;
font-weight:600;
transition:0.4s;
}

.cta-right button:hover{
transform:translateY(-4px);
}

/* ANIMATION */

.fade-up{
opacity:0;
transform:translateY(40px);
transition:0.8s;
}

.show{
opacity:1;
transform:translateY(0);
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0px);
}

}

@media(max-width:1200px){

.hero{
grid-template-columns:1fr;
}

.course-container{
grid-template-columns:repeat(2,1fr);
}

.cta{
grid-template-columns:1fr;
}

.stats{
grid-template-columns:repeat(2,1fr);
padding:30px;
gap:25px;
}

}

@media(max-width:768px){

nav{
position:absolute;
top:100%;
left:-100%;
width:100%;
background:white;
flex-direction:column;
padding:30px;
transition:0.4s;
}

nav.show{
left:0;
}

.menu-btn{
display:block;
}

.hero-left h1{
font-size:42px;
}

.hero-left h3{
font-size:28px;
}

.info-strip{
grid-template-columns:1fr;
}

.course-container{
grid-template-columns:1fr;
}

.feature-box{
flex-direction:row;
height:76px;
}

.feature-left{
padding:0 14px;
gap:10px;
}

.feature-left i{
font-size:24px;
min-width:30px;
}

.feature-left h4{
font-size:13px;
line-height:1.2;
font-weight:700;
color:#241D68;
max-width:110px;
word-break:break-word;
}

.feature-box span{
width:40%;
min-width:115px;
padding:0 12px;
font-size:12px;
line-height:1.2;
}

.top-bar{
display:none;
}

/* MOBILE CTA */

.cta-right{
flex-direction:column;
text-align:center;
align-items:center;
}

.cta-right button{
width:100%;
}

.stats{
grid-template-columns:1fr 1fr;
}
}
