/* GLOBAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f5f7fc;
color:#222;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

img{
width:100%;
display:block;
}

a{
text-decoration:none;
}

/* TOP BAR */

.top-bar{
background:#001f66;
padding:12px 0;
color:white;
font-size:14px;
}

.top-bar-content{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:15px;
}

.top-left,
.top-right{
display:flex;
gap:20px;
flex-wrap:wrap;
}

/* HEADER */

header{
background:white;
padding:18px 0;
position:sticky;
top:0;
z-index:999;
box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
}

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

.logo-img{
width:60px;
}

.logo-text h2,
.logo-text h3{
line-height:1;
color:#002b7f;
}

.logo-text h2{
font-size:30px;
font-weight:800;
}

.logo-text h3{
font-size:28px;
font-weight:800;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
color:#002b7f;
font-weight:600;
transition:0.3s;
}

.nav-links a:hover,
.nav-links .active{
color:#0a4dff;
}

.apply-btn{
background:#0a4dff;
color:white;
padding:14px 24px;
border-radius:10px;
font-weight:600;
transition:0.3s;
}

.apply-btn:hover{
background:#0034b8;
transform:translateY(-2px);
}

/* HERO SECTION */

.hero-section{
background:linear-gradient(135deg,#001f66,#003ecb);
padding:110px 0;
color:white;
position:relative;
overflow:hidden;
}

.hero-container{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
}

.hero-left h5{
font-size:18px;
margin-bottom:15px;
color:#fdb913;
}

.hero-left h1{
font-size:60px;
line-height:1.1;
margin-bottom:25px;
font-weight:800;
}

.hero-left p{
font-size:18px;
line-height:1.8;
margin-bottom:35px;
max-width:550px;
}

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn-primary{
background:#0a4dff;
color:white;
padding:15px 28px;
border-radius:10px;
font-weight:600;
display:inline-block;
transition:0.3s;
}

.btn-primary:hover{
background:#0034b8;
transform:translateY(-3px);
}

.btn-outline{
border:2px solid white;
padding:15px 28px;
border-radius:10px;
color:white;
font-weight:600;
transition:0.3s;
}

.btn-outline:hover{
background:white;
color:#002b7f;
}

.hero-right img{
max-width:500px;
margin:auto;
}

/* PAGE BANNER */

.page-banner,
.courses-hero{
background:linear-gradient(135deg,#001f66,#003ecb);
padding:100px 0;
text-align:center;
color:white;
}

.page-banner h5,
.courses-left h5{
color:#fdb913;
margin-bottom:15px;
font-size:18px;
}

.page-banner h1,
.courses-left h1{
font-size:58px;
font-weight:800;
margin-bottom:20px;
}

.page-banner p,
.courses-left p{
font-size:18px;
line-height:1.7;
}

/* SECTION */

.section{
padding:90px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h5{
color:#fdb913;
font-size:18px;
margin-bottom:10px;
}

.section-title h2{
font-size:48px;
color:#002b7f;
font-weight:800;
}

/* ABOUT */

.home-about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.home-about-image img{
border-radius:18px;
}

.home-about-content h5{
color:#fdb913;
margin-bottom:15px;
}

.home-about-content h2{
font-size:42px;
color:#002b7f;
margin-bottom:25px;
line-height:1.2;
}

.home-about-content p{
font-size:17px;
line-height:1.8;
margin-bottom:20px;
}

/* COURSES */

.course-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
}

.course-card{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.4s;
}

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

.course-card img{
height:230px;
object-fit:cover;
}

.course-content{
padding:30px;
}

.course-content h3{
font-size:28px;
color:#002b7f;
margin-bottom:15px;
}

.course-content p{
line-height:1.7;
margin-bottom:25px;
}

.course-info{
display:flex;
justify-content:space-between;
margin-bottom:25px;
font-weight:600;
color:#002b7f;
}

.course-btn{
border:2px solid #0a4dff;
padding:12px 20px;
display:inline-block;
border-radius:10px;
color:#0a4dff;
font-weight:600;
transition:0.3s;
}

.course-btn:hover{
background:#0a4dff;
color:white;
}

/* FEATURES */

.feature-grid,
.preview-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.feature-card,
.preview-card{
background:white;
padding:40px 30px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
transition:0.4s;
}

.feature-card:hover,
.preview-card:hover{
transform:translateY(-8px);
}

.feature-icon,
.preview-icon{
font-size:45px;
margin-bottom:20px;
}

.feature-card h3,
.preview-card h3{
margin-bottom:15px;
font-size:24px;
color:#002b7f;
}

.feature-card p,
.preview-card p{
line-height:1.7;
}

/* GALLERY */

.gallery-grid,
.gallery-masonry{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.gallery-grid img,
.gallery-item img{
height:280px;
object-fit:cover;
border-radius:16px;
transition:0.4s;
}

.gallery-grid img:hover,
.gallery-item img:hover{
transform:scale(1.03);
}

/* CTA */

.cta-section{
background:linear-gradient(135deg,#001f66,#003ecb);
padding:90px 0;
text-align:center;
color:white;
}

.cta-content h2{
font-size:50px;
margin-bottom:20px;
font-weight:800;
}

.cta-content p{
font-size:18px;
margin-bottom:35px;
}

/* CONTACT */

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.contact-left h5{
color:#fdb913;
margin-bottom:15px;
}

.contact-left h2{
font-size:42px;
color:#002b7f;
margin-bottom:20px;
}

.contact-left p{
line-height:1.8;
margin-bottom:20px;
}

.contact-card{
background:white;
padding:25px;
border-radius:16px;
margin-bottom:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.contact-card h3{
margin-bottom:10px;
color:#002b7f;
}

.contact-form-box{
background:white;
padding:40px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.input-group{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:20px;
}

input,
textarea{
width:100%;
padding:16px;
border:1px solid #ddd;
border-radius:10px;
font-family:'Poppins',sans-serif;
font-size:15px;
}

textarea{
resize:none;
margin-bottom:20px;
}

/* FOOTER */

footer{
background:#00194d;
color:white;
padding:80px 0 20px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.footer-logo{
display:flex;
align-items:center;
gap:15px;
margin-bottom:20px;
}

.footer-logo img{
width:60px;
}

.footer-about p{
line-height:1.8;
}

footer h3{
margin-bottom:20px;
font-size:24px;
}

footer ul{
list-style:none;
}

footer ul li{
margin-bottom:12px;
}

footer a{
color:white;
transition:0.3s;
}

footer a:hover{
color:#fdb913;
}

.social-links{
display:flex;
gap:15px;
margin-top:20px;
flex-wrap:wrap;
}

.copyright{
text-align:center;
padding-top:30px;
margin-top:50px;
border-top:1px solid rgba(255,255,255,0.15);
}

/* RESPONSIVE */

@media(max-width:992px){

.hero-container,
.home-about-grid,
.contact-wrapper{
grid-template-columns:1fr;
}

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

.page-banner h1,
.courses-left h1{
font-size:42px;
}

.section-title h2{
font-size:38px;
}

}

@media(max-width:768px){

.nav-links{
display:none;
}

.top-bar-content{
flex-direction:column;
align-items:flex-start;
}

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

.page-banner h1,
.courses-left h1{
font-size:36px;
}

.section-title h2{
font-size:32px;
}

.input-group{
grid-template-columns:1fr;
}

.hero-buttons{
flex-direction:column;
align-items:flex-start;
}

}


/* APPLY PAGE */

.apply-section{
padding:90px 0;
background:#f5f7fc;
}

.apply-wrapper{
display:grid;
grid-template-columns:1fr 1.1fr;
gap:50px;
align-items:start;
}

.apply-left h5{
color:#fdb913;
margin-bottom:15px;
font-size:18px;
}

.apply-left h2{
font-size:52px;
line-height:1.2;
color:#002b7f;
margin-bottom:25px;
font-weight:800;
}

.apply-left p{
font-size:17px;
line-height:1.8;
margin-bottom:30px;
}

.info-box{
background:white;
padding:30px;
border-radius:18px;
margin-bottom:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.info-box h3{
color:#002b7f;
margin-bottom:18px;
font-size:24px;
}

.info-box ul{
padding-left:20px;
line-height:2;
}

.apply-form-box{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
}

.input-box{
margin-bottom:25px;
}

.input-box label{
display:block;
margin-bottom:10px;
font-weight:600;
color:#002b7f;
}

.input-box input,
.input-box select,
.input-box textarea{
width:100%;
padding:16px;
border:1px solid #d8d8d8;
border-radius:12px;
font-family:'Poppins',sans-serif;
font-size:15px;
transition:0.3s;
background:#fafafa;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{
border-color:#0a4dff;
outline:none;
background:white;
}

.full-width{
grid-column:1/3;
}

.submit-btn{
width:100%;
background:#0a4dff;
color:white;
padding:18px;
border:none;
border-radius:12px;
font-size:18px;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.submit-btn:hover{
background:#0039c7;
transform:translateY(-2px);
}

#successMessage{
display:none;
margin-top:20px;
background:#d4edda;
color:#155724;
padding:18px;
border-radius:10px;
font-weight:600;
text-align:center;
}

@media(max-width:992px){

.apply-wrapper{
grid-template-columns:1fr;
}

.apply-left h2{
font-size:42px;
}

}

@media(max-width:768px){

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

.full-width{
grid-column:auto;
}

.apply-left h2{
font-size:34px;
}

}

/* APPLY PAGE */

.apply-section{
padding:90px 0;
background:#f5f7fc;
}

.apply-wrapper{
display:grid;
grid-template-columns:1fr 1.1fr;
gap:50px;
align-items:start;
}

.apply-left h5{
color:#fdb913;
margin-bottom:15px;
font-size:18px;
}

.apply-left h2{
font-size:52px;
line-height:1.2;
color:#002b7f;
margin-bottom:25px;
font-weight:800;
}

.apply-left p{
font-size:17px;
line-height:1.8;
margin-bottom:30px;
}

.info-box{
background:white;
padding:30px;
border-radius:18px;
margin-bottom:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.info-box h3{
color:#002b7f;
margin-bottom:18px;
font-size:24px;
}

.info-box ul{
padding-left:20px;
line-height:2;
}

.apply-form-box{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
}

.input-box{
margin-bottom:25px;
}

.input-box label{
display:block;
margin-bottom:10px;
font-weight:600;
color:#002b7f;
}

.input-box input,
.input-box select,
.input-box textarea{
width:100%;
padding:16px;
border:1px solid #d8d8d8;
border-radius:12px;
font-family:'Poppins',sans-serif;
font-size:15px;
transition:0.3s;
background:#fafafa;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{
border-color:#0a4dff;
outline:none;
background:white;
}

.full-width{
grid-column:1/3;
}

.submit-btn{
width:100%;
background:#0a4dff;
color:white;
padding:18px;
border:none;
border-radius:12px;
font-size:18px;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.submit-btn:hover{
background:#0039c7;
transform:translateY(-2px);
}

#successMessage{
display:none;
margin-top:20px;
background:#d4edda;
color:#155724;
padding:18px;
border-radius:10px;
font-weight:600;
text-align:center;
}

@media(max-width:992px){

.apply-wrapper{
grid-template-columns:1fr;
}

.apply-left h2{
font-size:42px;
}

}

@media(max-width:768px){

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

.full-width{
grid-column:auto;
}

.apply-left h2{
font-size:34px;
}

}