/* ===================================
THE CONCEPT ENGINE
STYLE.CSS
=================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#ffffff;
color:#222;
line-height:1.7;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* ===========================
NAVBAR
=========================== */

header{
position:sticky;
top:0;
z-index:1000;
background:#081C3A;
box-shadow:0 2px 10px rgba(0,0,0,.2);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-size:28px;
font-weight:700;
color:#fff;
}

.nav-menu{
display:flex;
list-style:none;
gap:30px;
}

.nav-menu a{
text-decoration:none;
color:white;
font-weight:500;
transition:.3s;
}

.nav-menu a:hover{
color:#F4B400;
}

.nav-btn{
text-decoration:none;
background:#F4B400;
padding:12px 24px;
border-radius:8px;
font-weight:600;
color:#081C3A;
transition:.3s;
}

.nav-btn:hover{
transform:translateY(-2px);
}

/* ===========================
HERO
=========================== */

.hero{
padding:90px 0;
background:linear-gradient(135deg,#081C3A,#11468F);
color:white;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.hero-left h1{
font-size:56px;
line-height:1.2;
margin-bottom:25px;
}

.hero-left p{
font-size:20px;
margin-bottom:35px;
opacity:.95;
}

.hero-buttons{
display:flex;
gap:20px;
margin-bottom:40px;
}

.btn-primary{
display:inline-block;
background:#F4B400;
color:#081C3A;
padding:15px 30px;
border-radius:10px;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.btn-primary:hover{
transform:translateY(-4px);
}

.btn-secondary{
display:inline-block;
border:2px solid white;
color:white;
padding:15px 30px;
border-radius:10px;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.btn-secondary:hover{
background:white;
color:#081C3A;
}

.hero-features{
display:flex;
flex-wrap:wrap;
gap:20px;
font-weight:600;
}

.hero-features div{
display:flex;
align-items:center;
gap:8px;
}

.hero-right{
display:flex;
justify-content:center;
align-items:center;
}

.hero-icon{
font-size:260px;
color:#F4B400;
animation:float 3s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-20px);
}

100%{
transform:translateY(0);
}

}
/* ===========================
COMMON SECTIONS
=========================== */

section{

padding:90px 0;

}

section h2{

font-size:40px;

text-align:center;

margin-bottom:20px;

color:#081C3A;

}

.section-text{

text-align:center;

max-width:800px;

margin:0 auto 50px;

font-size:18px;

color:#555;

}

/* ===========================
ABOUT
=========================== */

.about-home{

background:#f8f9fc;

}

.about-home p{

max-width:900px;

margin:auto;

font-size:20px;

text-align:center;

color:#555;

line-height:1.9;

}

/* ===========================
CARDS
=========================== */

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

margin-top:50px;

}

.card{

background:#fff;

padding:35px;

border-radius:15px;

box-shadow:0 12px 25px rgba(0,0,0,.08);

text-align:center;

transition:.35s;

}

.card:hover{

transform:translateY(-10px);

box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.card i{

font-size:55px;

color:#F4B400;

margin-bottom:20px;

}

.card h3{

margin-bottom:15px;

color:#081C3A;

font-size:24px;

}

.card p{

color:#666;

}

/* ===========================
FEATURES
=========================== */

.features{

background:#eef5ff;

}

/* ===========================
BRIDGE COURSE
=========================== */

.bridge-overview{

background:#ffffff;

}

/* ===========================
JOURNEY
=========================== */

.journey{

background:#081C3A;

color:white;

}

.journey h2{

color:white;

}

.timeline{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

margin-top:50px;

}

.step{

background:white;

color:#222;

padding:35px;

border-radius:15px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.1);

}

.circle{

width:70px;

height:70px;

border-radius:50%;

background:#F4B400;

color:#081C3A;

font-size:28px;

font-weight:700;

display:flex;

justify-content:center;

align-items:center;

margin:0 auto 20px;

}

.step h3{

margin-bottom:12px;

color:#081C3A;

}
/* ===========================
STATISTICS
=========================== */

.stats{

background:#11468F;

color:white;

}

.stats h2{

color:white;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

margin-top:50px;

}

.stat{

background:white;

color:#081C3A;

padding:40px;

border-radius:15px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.15);

transition:.3s;

}

.stat:hover{

transform:translateY(-8px);

}

.stat h3{

font-size:48px;

color:#F4B400;

margin-bottom:10px;

}

/* ===========================
CTA
=========================== */

.cta{

background:linear-gradient(135deg,#081C3A,#11468F);

color:white;

text-align:center;

}

.cta h2{

color:white;

font-size:42px;

margin-bottom:20px;

}

.cta p{

font-size:20px;

margin-bottom:40px;

}

/* ===========================
FAQ
=========================== */

.faq{

background:#f8f9fc;

}

.faq-item{

background:white;

padding:25px;

border-radius:12px;

margin-bottom:20px;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.faq-item h3{

color:#081C3A;

margin-bottom:10px;

}

/* ===========================
FOOTER
=========================== */

footer{

background:#061428;

color:white;

padding:70px 0 20px;

}

.footer-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:40px;

margin-bottom:40px;

}

footer h3{

margin-bottom:20px;

}

footer ul{

list-style:none;

}

footer ul li{

margin-bottom:12px;

}

footer a{

color:white;

text-decoration:none;

transition:.3s;

}

footer a:hover{

color:#F4B400;

}

footer hr{

border:none;

height:1px;

background:#2d4773;

margin:30px 0;

}

.copyright{

text-align:center;

opacity:.8;

font-size:15px;

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-left h1{

font-size:42px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero-features{

justify-content:center;

}

.hero-icon{

font-size:180px;

}

.navbar{

flex-direction:column;

gap:20px;

}

.nav-menu{

flex-wrap:wrap;

justify-content:center;

}

}

@media(max-width:768px){

section{

padding:70px 0;

}

section h2{

font-size:32px;

}

.hero-left h1{

font-size:36px;

}

.hero-left p{

font-size:18px;

}

.btn-primary,

.btn-secondary{

display:block;

width:100%;

text-align:center;

}

.hero-buttons{

flex-direction:column;

}

.hero-icon{

font-size:140px;

}

.cards,

.timeline,

.stats-grid,

.footer-grid{

grid-template-columns:1fr;

}

}

@media(max-width:480px){

.logo{

font-size:22px;

}

.nav-menu{

gap:15px;

font-size:14px;

}

.hero-left h1{

font-size:30px;

}

.hero-left p{

font-size:16px;

}

.cta h2{

font-size:30px;

}

}