/* ==========================
   GLOBAL STYLES
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#fff;
    background:#f5f7fa;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ==========================
   HEADER
========================== */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(10px);
    transition:.3s;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo h2{
    color:#fff;
    font-size:28px;
    font-weight:700;
}

nav ul{
    display:flex;
    align-items:center;
    gap:25px;
    list-style:none;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#FFC72C;
}

.apply-btn{
    background:#FFC72C;
    color:#003E91;
    padding:12px 24px;
    border-radius:40px;
    font-weight:700;
}

.apply-btn:hover{
    background:white;
}

/* ==========================
   HERO
========================== */

.hero{
    position:relative;
    height:100vh;
    background:url("../images/hero.jpg") center center/cover no-repeat;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1200px;
    margin:auto;
}

.hero h3{
    color:#FFC72C;
    letter-spacing:4px;
    font-size:20px;
    margin-bottom:15px;
}

.hero h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:800;
}

.subtitle{
    font-size:28px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    max-width:700px;
    line-height:1.8;
}

/* ==========================
   BUTTONS
========================== */

.buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
}

.btn{
    background:#FFC72C;
    color:#003E91;
    padding:18px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    background:white;
}

.btn-outline{
    border:2px solid white;
    color:white;
    padding:18px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-outline:hover{
    background:white;
    color:#003E91;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:992px){

header .container{
    flex-direction:column;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

.hero h1{
    font-size:42px;
}

.subtitle{
    font-size:22px;
}

.buttons{
    flex-direction:column;
    width:260px;
}

.btn,
.btn-outline{
    text-align:center;
}

}

/* ==========================
   ABOUT
========================== */

.about{

padding:100px 0;

background:white;

color:#333;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.about-text h4{

color:#FFC72C;

font-size:18px;

letter-spacing:3px;

margin-bottom:15px;

}

.about-text h2{

font-size:42px;

color:#003E91;

margin-bottom:20px;

}

.about-text p{

font-size:18px;

line-height:1.8;

margin-bottom:20px;

}

.stats{

display:flex;

gap:40px;

margin:40px 0;

}

.stats h3{

font-size:38px;

color:#003E91;

}

.stats p{

margin-top:8px;

font-weight:500;

}

@media(max-width:992px){

.about-grid{

grid-template-columns:1fr;

}

.stats{

flex-direction:column;

gap:25px;

}

}

/*==========================
WHY CHOOSE US
==========================*/

.why-us{

padding:100px 0;

background:#f4f8fb;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h4{

color:#FFC72C;

letter-spacing:3px;

margin-bottom:15px;

}

.section-title h2{

font-size:42px;

color:#003E91;

margin-bottom:20px;

}

.section-title p{

max-width:700px;

margin:auto;

color:#666;

font-size:18px;

line-height:1.8;

}

.features{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.feature-card{

background:white;

padding:40px 30px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.feature-card:hover{

transform:translateY(-15px);

}

.icon{

font-size:60px;

margin-bottom:20px;

}

.feature-card h3{

color:#003E91;

margin-bottom:15px;

}

.feature-card p{

color:#666;

line-height:1.7;

}

@media(max-width:992px){

.features{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.features{

grid-template-columns:1fr;

}

}

/*==========================
TRAINING PROGRAMMES
==========================*/

.courses{

padding:100px 0;

background:#ffffff;

}

.course-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.course-card{

background:white;

padding:40px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

position:relative;

transition:.4s;

}

.course-card:hover{

transform:translateY(-15px);

}

.featured{

border:4px solid #FFC72C;

transform:scale(1.05);

}

.featured:hover{

transform:scale(1.08);

}

.popular{

position:absolute;

top:-15px;

left:50%;

transform:translateX(-50%);

background:#FFC72C;

padding:8px 20px;

border-radius:30px;

font-weight:700;

color:#003E91;

font-size:14px;

}

.course-card h3{

color:#003E91;

margin-bottom:20px;

text-align:center;

}

.price{

font-size:42px;

font-weight:800;

color:#FFC72C;

text-align:center;

margin-bottom:25px;

}

.course-card ul{

list-style:none;

margin-bottom:30px;

}

.course-card li{

padding:10px 0;

border-bottom:1px solid #eee;

color:#555;

}

.course-card .btn{

display:block;

text-align:center;

}

@media(max-width:1100px){

.course-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.course-grid{

grid-template-columns:1fr;

}

}

/*==========================
STUDENT SUCCESS
==========================*/

.success{

padding:100px 0;

background:#003E91;

color:white;

}

.success .section-title h2,
.success .section-title h4,
.success .section-title p{

color:white;

}

.success-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.success-box{

background:rgba(255,255,255,.08);

padding:50px 30px;

text-align:center;

border-radius:20px;

transition:.3s;

backdrop-filter:blur(8px);

}

.success-box:hover{

transform:translateY(-10px);

background:#FFC72C;

color:#003E91;

}

.success-box h1{

font-size:55px;

margin-bottom:15px;

}

.success-box p{

font-size:18px;

font-weight:600;

}

@media(max-width:992px){

.success-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.success-grid{

grid-template-columns:1fr;

}

}

/*==========================
CALL TO ACTION
==========================*/

.cta{

padding:100px 20px;

text-align:center;

background:#f4f8fb;

color:#333;

}

.cta h2{

font-size:48px;

color:#003E91;

margin-bottom:20px;

}

.cta p{

max-width:800px;

margin:auto;

font-size:20px;

line-height:1.8;

margin-bottom:40px;

}

/*==========================
FOOTER
==========================*/

footer{

background:#002855;

color:white;

padding-top:70px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:60px;

padding-bottom:50px;

}

.footer-grid h2{

margin-bottom:20px;

}

.footer-grid h3{

margin-bottom:20px;

color:#FFC72C;

}

.footer-grid p{

line-height:1.8;

margin-bottom:10px;

}

.footer-grid ul{

list-style:none;

}

.footer-grid li{

margin-bottom:12px;

}

.footer-grid a{

color:white;

text-decoration:none;

transition:.3s;

}

.footer-grid a:hover{

color:#FFC72C;

}

.socials{

display:flex;

gap:15px;

margin-top:25px;

}

.socials a{

width:45px;

height:45px;

border-radius:50%;

background:#003E91;

display:flex;

align-items:center;

justify-content:center;

font-size:18px;

transition:.3s;

}

.socials a:hover{

background:#FFC72C;

color:#003E91;

}

.copyright{

border-top:1px solid rgba(255,255,255,.15);

text-align:center;

padding:25px 0;

}

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.socials{

justify-content:center;

}

}

/*==========================
WHATSAPP
==========================*/

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

background:#25D366;

color:white;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

text-decoration:none;

box-shadow:0 10px 30px rgba(0,0,0,.3);

z-index:999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

}

/*=====================
PAGE BANNER
======================*/

.page-banner{

height:45vh;

background:url("../images/hero.jpg") center center/cover;

position:relative;

display:flex;

justify-content:center;

align-items:center;

}

.banner-content{

position:relative;

z-index:2;

text-align:center;

color:white;

}

.banner-content h1{

font-size:60px;

margin-bottom:15px;

}

.banner-content p{

font-size:22px;

}

.about-page{

padding:100px 0;

background:white;

color:#333;

}

.about-page img{

width:100%;

border-radius:20px;

}

/*==========================
COURSES PAGE
==========================*/

.courses-page{
    padding:100px 0;
    background:#f8f9fc;
}

.duration{
    text-align:center;
    color:#003E91;
    font-weight:600;
    margin-bottom:20px;
}

.course-card{
    overflow:hidden;
}

.course-card ul{
    list-style:none;
    margin:25px 0;
}

.course-card li{
    padding:12px 0;
    border-bottom:1px solid #eee;
    color:#555;
}

/*=========================
PRICING PAGE
=========================*/

.pricing-page{

padding:100px 0;

background:#ffffff;

color:#333;

}

.pricing-table{

max-width:800px;

margin:50px auto;

border-radius:15px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.1);

}

.price-row{

display:flex;

justify-content:space-between;

padding:25px 35px;

font-size:20px;

border-bottom:1px solid #ddd;

background:white;

}

.price-row:nth-child(even){

background:#f8f9fc;

}

.price-row strong{

color:#003E91;

font-size:24px;

}

/*=========================
GALLERY
=========================*/

.gallery-page{

padding:100px 0;

background:#f8f9fc;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:25px;

margin-top:50px;

}

.gallery-grid img{

width:100%;

height:300px;

object-fit:cover;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.12);

transition:.4s;

cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.05);

}

/*=========================
CONTACT PAGE
==========================*/

.contact-page{

padding:100px 0;

background:#f7f9fc;

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

}

.contact-info,
.contact-form{

background:#fff;

padding:40px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.contact-info h2,
.contact-form h2{

margin-bottom:25px;

color:#003E91;

}

.contact-info p{

margin-bottom:25px;

line-height:1.8;

}

.contact-info i{

color:#FFC72C;

margin-right:10px;

}

.contact-info a{

text-decoration:none;

color:#003E91;

font-weight:600;

}

.contact-form input,
.contact-form textarea{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:8px;

font-size:16px;

font-family:Poppins,sans-serif;

}

.contact-form textarea{

resize:vertical;

}

.contact-form button{

width:100%;

border:none;

cursor:pointer;

}

/*=========================
GOOGLE MAP
==========================*/

.map-section iframe{

width:100%;

height:500px;

border:none;

display:block;

}

/*=========================
MOBILE
==========================*/

@media(max-width:900px){

.contact-grid{

grid-template-columns:1fr;

}

}

/*=========================
ENROLMENT PAGE
=========================*/

.enrolment-page{

padding:100px 0;

background:#f4f8fb;

}

.enrolment-form{

max-width:800px;

margin:auto;

background:white;

padding:50px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.1);

}

.enrolment-form h2{

text-align:center;

color:#003E91;

margin-bottom:30px;

}

.enrolment-form input,
.enrolment-form select,
.enrolment-form textarea{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:8px;

font-size:16px;

font-family:Poppins,sans-serif;

}

.enrolment-form textarea{

resize:vertical;

}

.enrolment-form button{

width:100%;

border:none;

cursor:pointer;

}

/*=========================
TESTIMONIALS PAGE
=========================*/

.testimonials-page{

padding:100px 0;

background:#f8f9fc;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

margin-top:50px;

}

.testimonial-card{

background:white;

padding:35px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.1);

transition:.3s;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.stars{

font-size:24px;

color:#FFC72C;

margin-bottom:20px;

}

.testimonial-card p{

line-height:1.8;

margin-bottom:25px;

color:#555;

}

.testimonial-card h3{

color:#003E91;

margin-bottom:5px;

}

.testimonial-card span{

color:#777;

font-size:15px;

}