
*{margin:0;padding:0;box-sizing:border-box;font-family:'Open Sans',sans-serif;}
body{background:#f5f8fc;color:#222;line-height:1.6;scroll-behavior:smooth;}

:root{
--blue:#0d3b66;
--blueDark:#06223b;
--green:#25d366;
--white:#fff;
}

/* ================= HEADER ================= */
header{
position:sticky;
top:0;
z-index:1000;
}

/* TOPBAR */
.topbar{
background:var(--blueDark);
color:white;
font-size:13px;
}

.topbar .wrap{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
padding:8px 20px;
flex-wrap:wrap;
}

.topbar a{
color:#fff;
text-decoration:none;
margin-right:15px;
opacity:.85;
}

/* NAVBAR */
.navbar{
background:var(--blue);
}

.navwrap{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:12px 20px;
}

/* LOGO */
.logo{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
}

.logo img{
width:50px;
height:50px;
background:#fff;
border-radius:8px;
padding:3px;
}

.logo h1{
font-size:16px;
color:white;
}

.logo span{
font-size:12px;
color:#cfe3ff;
display:block;
}

/* MENU */
nav ul{
display:flex;
gap:20px;
list-style:none;
}

nav ul li a{
color:white;
text-decoration:none;
font-size:14px;
padding:8px 10px;
border-radius:6px;
transition:.3s;
}

nav ul li a:hover{
background:rgba(255,255,255,.15);
}

/* BUTTON */
.btn{
background:var(--green);
color:white;
padding:10px 18px;
border-radius:25px;
text-decoration:none;
font-weight:600;
}

/* ================= HERO SECTION ================= */

.hero-section{
    position:relative;
    background:linear-gradient(135deg,#0d3b66,#061a33);
    color:#fff;
    padding:90px 20px;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url('files/pattern.png');
    opacity:0.05;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* TEXT SIDE */
.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:44px;
    line-height:1.2;
    margin-bottom:15px;
}

.hero-text h1 span{
    color:#25d366;
}

.hero-text p{
    font-size:16px;
    line-height:1.7;
    opacity:0.9;
    margin-bottom:20px;
    max-width:600px;
}

.hero-image img{
    width:100%;
    max-width:520px;
    height:auto;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(0,0,0,0.25);

    /* IMPORTANT FIX */
    object-fit:cover;
    display:block;
}.hero-image img{
    transition:0.4s ease;
}

.hero-image img:hover{
    transform:scale(1.02);
}
/* BULLETS */
.hero-points{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.hero-points li{
    margin-bottom:10px;
    font-size:15px;
    display:flex;
    align-items:center;
    gap:10px;
}

.hero-points i{
    color:#25d366;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#25d366;
    color:#fff;
    padding:12px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
}

.btn-primary:hover{
    background:#1fb85a;
    transform:translateY(-2px);
}

.btn-secondary{
    background:transparent;
    border:1px solid #fff;
    color:#fff;
    padding:12px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
}

.btn-secondary:hover{
    background:#fff;
    color:#0d3b66;
}

/* IMAGE */
.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    max-width:100%;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media(max-width:991px){
    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .hero-text h1{
        font-size:32px;
    }

    .hero-points{
        display:inline-block;
        text-align:left;
    }
}



/* ================= SECTIONS ================= */
section{
padding:70px 20px;
}

.container{
max-width:1100px;
margin:auto;
}

/* TITLE */
h3.section-title{
text-align:center;
font-size:28px;
margin-bottom:40px;
color:var(--blue);
position:relative;
}

h3.section-title::after{
content:'';
width:80px;
height:3px;
background:var(--green);
display:block;
margin:10px auto;
border-radius:10px;
}

/* ================= COURSES ================= */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,.06);
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card h4{
color:var(--blue);
margin-bottom:10px;
}

/* ================= ABOUT ================= */
.about{
background:white;
text-align:center;
}

/* ================= WHY ================= */
.why{
background:var(--blue);
color:white;
border-radius:12px;
}

.why ul{
list-style:none;
max-width:800px;
margin:auto;
}

.why li{
padding:12px 0;
border-bottom:1px solid rgba(255,255,255,.1);
}

/* ================= TESTIMONIALS ================= */
.testimonial{
background:white;
padding:20px;
border-radius:10px;
margin-bottom:15px;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

/* ================= CTA ================= */
.cta{
background:var(--green);
color:white;
text-align:center;
border-radius:12px;
}



/* ================= ANIMATION ================= */
.fade{
opacity:0;
transform:translateY(30px);
transition:all .6s ease;
}

.fade.show{
opacity:1;
transform:translateY(0);
}

/* MOBILE */
@media(max-width:900px){
nav ul{display:none;}
}
/* =========================
   FAQ SECTION - PROFESSIONAL UI
========================= */

.faq-section{
    background:#f6f8fb;
    padding:80px 20px;
    font-family:'Open Sans',sans-serif;
}

/* SECTION HEADER */
.faq-section .section-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
}

.faq-section .section-header h2{
    font-size:34px;
    color:#0d3b66;
    font-weight:700;
    margin-bottom:10px;
}

.faq-section .section-header p{
    font-size:15px;
    color:#666;
    line-height:1.7;
}

/* WRAPPER */
.faq-wrapper{
    max-width:900px;
    margin:auto;
}

/* CATEGORY HEADER (IMPORTANT IMPROVEMENT) */
.faq-category{
    margin:35px 0 15px;
    padding:10px 15px;
    background:linear-gradient(90deg,#0d3b66,#145da0);
    color:#fff;
    font-weight:600;
    font-size:14px;
    letter-spacing:.5px;
    border-radius:8px;
    text-transform:uppercase;
    box-shadow:0 6px 15px rgba(13,59,102,0.2);
}

/* FAQ ITEM */
.faq-item{
    background:#fff;
    border-radius:10px;
    margin-bottom:12px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
    transition:0.3s ease;
    border:1px solid rgba(0,0,0,0.04);
}

.faq-item:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(0,0,0,0.08);
}

/* QUESTION BUTTON */
.faq-question{
    width:100%;
    text-align:left;
    padding:16px 18px;
    background:#fff;
    border:none;
    font-size:15px;
    font-weight:600;
    color:#222;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:0.3s;
}

.faq-question:hover{
    color:#0d3b66;
}

/* ICON */
.faq-question i{
    color:#0d3b66;
    transition:0.3s;
}

/* ACTIVE STATE */
.faq-item.active .faq-question{
    color:#0d3b66;
}

.faq-item.active .faq-question i{
    transform:rotate(180deg);
}


/* =========================
   FAQ ANSWER FIX (PROPER TEXT + NO CUTTING)
========================= */

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease, padding 0.3s ease;
    background:#fafafa;
}

/* FIXED TEXT ALIGNMENT */
.faq-answer p{
    padding:0 20px 18px 20px; /* top right bottom left */
    font-size:14px;
    color:#555;
    line-height:1.7;
    margin:0;
    text-align:left;
}

/* OPEN STATE (IMPORTANT FIX) */
.faq-item.active .faq-answer{
    padding-top:12px;
}
/* OPEN STATE */
.faq-item.active .faq-answer{
    padding:14px 0 18px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width:768px){

    .faq-section{
        padding:60px 15px;
    }

    .faq-section .section-header h2{
        font-size:26px;
    }

    .faq-category{
        font-size:13px;
        padding:8px 12px;
    }

    .faq-question{
        font-size:14px;
    }
}
/* =========================
COURSES SECTION - PROFESSIONAL UI
========================= */

.courses-section{
    padding:80px 20px;
    background:#f6f8fb;
}

.courses-section .section-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
}

.courses-section .section-header h2{
    font-size:34px;
    color:#0d3b66;
    margin-bottom:10px;
    font-weight:700;
}

.courses-section .section-header p{
    font-size:15px;
    color:#666;
    line-height:1.7;
}

/* GRID */
.courses-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:22px;
    max-width:1100px;
    margin:auto;
}

/* CARD */
.course-card{
    background:#fff;
    border-radius:14px;
    padding:22px;
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
    transition:0.3s ease;
    border:1px solid rgba(0,0,0,0.04);
    position:relative;
    overflow:hidden;
}

.course-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.10);
}

/* ICON */
.course-icon{
    font-size:26px;
    margin-bottom:10px;
}

/* TITLE */
.course-card h3{
    font-size:18px;
    color:#0d3b66;
    margin-bottom:10px;
    font-weight:700;
}

/* TEXT */
.course-card p{
    font-size:14px;
    color:#555;
    line-height:1.7;
}

/* RESPONSIVE */
@media(max-width:768px){
    .courses-section{
        padding:60px 15px;
    }

    .courses-section .section-header h2{
        font-size:26px;
    }
}
/* =========================
WHY CHOOSE US - FONT AWESOME VERSION
========================= */
/* ================= WHY SECTION IMAGE ONLY ================= */
/* ================= FULL WIDTH WHY IMAGE ================= */

.why-section{
    width:100%;
    padding:0;
    margin:0;
    background:#fff;
}

/* FULL WIDTH IMAGE */
.why-image{
    width:100%;
    height:auto;
    display:block;   /* removes bottom gap */
    object-fit:cover;
}

/* Optional: add slight enhancement */
.why-image{
    box-shadow:0 10px 30px rgba(0,0,0,0.10);
}
.why-image:hover{
    transform:scale(1.01);
    transition:0.4s ease;
}
/* MOBILE OPTIMIZATION */
@media(max-width:768px){
    .why-image{
        box-shadow:none;
    }
}
/* ================= TESTIMONIALS ================= */

.testimonials-section{
    padding:80px 20px;
    background:#f6f8fb;
}

.section-header{
    text-align:center;
    margin-bottom:40px;
}

.section-header h2{
    font-size:32px;
    color:#0d3b66;
    margin-bottom:10px;
}

.section-header p{
    color:#666;
    font-size:14px;
}

/* GRID */
.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:20px;
}

/* CARD */
.testimonial-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    transition:0.3s;
}

.testimonial-card:hover{
    transform:translateY(-5px);
}

/* STARS */
.stars{
    color:#f7b500;
    margin-bottom:10px;
    font-size:14px;
}

.testimonial-card p{
    font-size:14px;
    color:#444;
    line-height:1.7;
    margin-bottom:15px;
}

.testimonial-card h4{
    font-size:14px;
    color:#0d3b66;
}
/* ================= CTA PREMIUM SECTION ================= */

.cta-section{
    position:relative;
    padding:90px 20px;
    background:linear-gradient(135deg,#0d3b66,#061a33);
    color:#fff;
    overflow:hidden;
}

/* soft glow overlay */
.cta-overlay{
    position:absolute;
    inset:0;
    background:url('files/pattern.png');
    opacity:0.06;
}

/* box */
.cta-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

/* heading */
.cta-content h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.3;
}

/* paragraph */
.cta-content p{
    font-size:16px;
    color:rgba(255,255,255,0.85);
    max-width:700px;
    margin:0 auto 20px;
    line-height:1.7;
}

/* bullet points */
.cta-points{
    list-style:none;
    padding:0;
    margin:20px 0 25px;
}

.cta-points li{
    font-size:15px;
    margin:10px 0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.cta-points i{
    color:#25d366;
}

/* button */
.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#25d366;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    transition:0.3s ease;
    box-shadow:0 10px 25px rgba(37,211,102,0.25);
}

.cta-btn:hover{
    transform:translateY(-3px);
    background:#1fb85a;
}

/* note */
.cta-note{
    margin-top:15px;
    font-size:13px;
    opacity:0.8;
}

/* MOBILE */
@media(max-width:768px){
    .cta-content h2{
        font-size:26px;
    }

    .cta-content p{
        font-size:14px;
    }
}
.page-hero{
background:linear-gradient(135deg,#0d3b66,#061a33);
color:#fff;
padding:80px 20px;
text-align:center;
}

.page-hero h1{
font-size:38px;
margin-bottom:10px;
}

.page-hero p{
max-width:700px;
margin:auto;
opacity:0.9;
}

/* ================= SECTION TITLE ================= */
.section-title{
text-align:center;
margin:60px 0 30px;
font-size:30px;
color:#0d3b66;
position:relative;
}

.section-title:after{
content:"";
width:70px;
height:3px;
background:#25d366;
display:block;
margin:10px auto;
border-radius:5px;
}

/* ================= INTRO ================= */
.intro{
text-align:center;
max-width:850px;
margin:40px auto;
font-size:15px;
color:#555;
}

/* ================= COURSES GRID ================= */
.courses-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
margin-top:30px;
}

.course-card{
background:#fff;
  text-align: center; /* IMPORTANT */

padding:25px;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
transition:0.3s;
border:1px solid #eee;
}

.course-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.10);
}



.course-card h3{
color:#0d3b66;
margin-bottom:10px;
font-size:18px;
}

.course-card p{
font-size:14px;
color:#555;
}
.course-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  font-size: 36px;
  color: #25d366;
  background: #eafff2;
  border-radius: 50%;
}
/* ================= CTA ================= */
.cta{
margin:80px 0;
padding:60px 20px;
background:linear-gradient(135deg,#25d366,#1fb85a);
color:#fff;
text-align:center;
border-radius:14px;
}

.cta h2{
font-size:30px;
margin-bottom:10px;
}

.cta p{
opacity:0.9;
margin-bottom:20px;
}

.cta a{
display:inline-block;
background:#fff;
color:#25d366;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

/* ================= FEATURES ================= */
.features{
display:flex;
flex-wrap:wrap;
gap:15px;
justify-content:center;
margin-top:20px;
}

.feature{
background:#fff;
padding:10px 15px;
border-radius:20px;
font-size:13px;
color:#0d3b66;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
}
/* ================= FOOTER ================= */
footer{
background:var(--blueDark);
color:white;
text-align:center;
padding:30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-box h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #facc15;
}

.footer-box p,
.footer-box a {
  font-size: 14px;
  color: #cbd5e1;
  text-decoration: none;
  line-height: 1.7;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a:hover {
  color: #facc15;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  background: #1e293b;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-links a:hover {
  background: #facc15;
  color: #000;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #1e293b;
  padding-top: 15px;
  font-size: 13px;
  color: #94a3b8;
}