@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* 027c68 */
/* cae4c5 */


:root{
    --primary:#027c68;
    --primary-dark:#002222;
    --secondary:#cae4c5;
    --accent:#ebbda5;

    --background:#f4f8f6;
    --card:#ffffff;
    --text:#233238;
    --text-light:#5d6b70;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--background);
    color:var(--text);
    line-height:1.6;
}

/* NAVIGATION */

nav{
    position:sticky;
    top:0;

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

    padding:20px 8%;

    /* background:rgba(255,255,255,.9); */
    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    z-index:1000;

    border-bottom:1px solid #e2e8f0;
}

.logo{
    font-size:1.4rem;
    font-weight:700;
    color:var(--primary-dark) ;
    /* color:var(--secondary); */
}

nav ul{
    display:flex;
    gap:24px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:var(--text);
    font-weight:500;
}

nav a:hover{
    color:var(--primary);
}

/* HERO */

.hero{
    min-height:100vh;

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

    text-align:left;
    padding: 120px 8%;
    /* 40px; */

    background:
    linear-gradient(
        135deg,
        #003333,
        #027c68
        /* #2563eb,
        #7c3aed */
    );

    color:white;
}

.hero-content{
    /* max-width:900px; */
    /* max-width:1400px;
    padding: 0 5%;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px; */
     display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;
}

.hero h1{
    font-size:clamp(3rem,7vw,5.5rem);
    margin-bottom:20px;
}

.hero p{
    font-size:1.25rem;
    margin-bottom:30px;
    max-width: 600px;
}

.button{
    display:inline-block;

    padding:14px 30px;

    /* background:white;
    color:var(--primary); */

    background:var(--accent);
    color:var(--primary-dark);

    border-radius:999px;

    text-decoration:none;

    font-weight:600;

    box-shadow:
        0 8px 20px rgba(0,0,0,.15);
}

.button:hover {
    transform: translateY(-3px);
    background: #f2ccb8;
}

/* SECTIONS */

.section{
    padding:100px 10%;
}

.section-title{
    color: var(--primary-dark);
    text-align:center;
    margin-bottom:60px;
    font-size:2.5rem;
}

/* do not know if i want */
.section-title::after{

    content:"";

    display:block;

    width:70px;

    height:4px;

    margin:18px auto 0;

    background:var(--accent);

    border-radius:20px;
}

/* CARDS */

.card-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.card{
    /* background:white; */
    background: var(--secondary);

    padding:30px;

    border-radius:18px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.3s;
}

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

.card h3{
    color: var(--primary-dark);
    margin-bottom:15px;
}

/* CONTENT PAGES */

.page-header{
    background:
    linear-gradient(
    135deg,
    #003333,
        #027c68
    /* #2563eb,
    #7c3aed */
    );

    color:white;

    text-align:center;

    padding:100px 20px;
}

.page-header h1{
    font-size:3rem;
}

.content{
    max-width:1100px;
    margin:auto;
    padding:80px 20px;
}

/*  .section-heading{
    font-size:2rem;
    color:var(--secondary);
    margin-bottom:20px;
    margin-top:50px;
}

.intro-text{
    font-size:1.1rem;
    margin-bottom:40px;
    max-width:800px;
}

.card h3{
    color:var(--primary);
    font-size:1.15rem;
    margin-bottom:15px;
}

.card p{
    color:var(--text);
}*/ 

/* FOOTER */

footer{
    /* background:var(--secondary); */
    background:var(--primary-dark);

    color:white;

    text-align:center;

    padding:40px;
}

/* MOBILE */

@media(max-width:768px){

nav{
    flex-direction:column;
    gap:20px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

.hero h1{
    font-size:3rem;
}

}

/* questions section */
.question{
    /* background:white; */
    /* background:var(--secondary);
    margin-bottom:15px;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08); */
    background:var(--secondary);
    border-radius:18px;
    margin-bottom:18px;
    overflow:hidden;
    
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition: .3s;
}

.question:hover{
    transform: translateY(-2p);
}

.question summary{
    /* cursor:pointer;
    font-weight:600;
    color:var(--primary); */
    cursor: pointer;
    padding: 22px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.question p {
    padding: 0 28px 25px;
    line-height: 1.8;
}

/* show cards */
.show-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:25px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.show-header{

    background:var(--primary);

    color:white;

    padding:14px 24px;

    font-weight:600;

}

.show-body{

    padding:24px;

}

.show-body h3{

    color:var(--primary-dark);

    margin-bottom:18px;

    line-height:1.5;

}

.show-body p{

    background:var(--secondary);

    padding:15px 18px;

    border-radius:10px;

    margin:0;

}


/* booking - theory page */
.booking-section{

    padding:80px 10%;

}

.booking-card{

    max-width:900px;

    margin:auto;

    background: #027c68;
    /* background:linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary)
    ); */

    color:white;

    text-align:center;

    padding:60px 40px;

    border-radius:24px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.booking-card h2{

    font-size:2.2rem;

    margin-bottom:20px;

}

.booking-card p{

    max-width:650px;

    margin:0 auto 35px;

    line-height:1.8;

    font-size:1.05rem;

}

.booking-button{

    display:inline-block;

    padding:16px 36px;

    background:var(--accent);

    color:var(--primary-dark);

    text-decoration:none;

    font-weight:700;

    border-radius:999px;

    transition:.3s;

}

.booking-button:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 20px rgba(0,0,0,.2);

}

.booking-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:white;

    padding:8px 16px;

    border-radius:999px;

    font-size:.85rem;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}


/* RESOURCES */
.resource-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:50px;

}

.resource-card{

    display:flex;
    flex-direction:column;

    background:white;

    padding:35px;

    border-radius:22px;

    text-decoration:none;

    color:inherit;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:all .3s ease;

    border:2px solid transparent;

}

.resource-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.resource-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.resource-icon{

    width:70px;

    height:70px;

    background:var(--secondary);

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:2.4rem;

    margin-bottom:25px;
    color: var(--primary-dark);

}

.resource-card span{

    margin-top:auto;
    padding-top:25px;

    color:var(--primary);

    font-weight:700;

}

/* contact us */
.contact-card{

    max-width:750px;

    margin:0 auto 60px;

    background:var(--secondary);

    border-radius:24px;

    padding:50px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.contact-icon{

    width:90px;
    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--primary);

    color:white;

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

    font-size:2.5rem;

}

.contact-card h2{

    color:var(--primary-dark);

    margin-bottom:20px;

}

.contact-card p{

    margin-bottom:35px;

    line-height:1.8;

}

.contact-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.info-card{

    background:white;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.info-card i{

    font-size:2rem;

    color:var(--primary);

    margin-bottom:20px;

}

.info-card h3{

    color:var(--primary-dark);

    margin-bottom:15px;

}

/* ===================================
   PROGRESS REPORT PAGE
=================================== */

.progress-levels{
    max-width:1000px;
    margin:0 auto 80px auto;
}

.timeline{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    margin:60px 0;
}

.timeline::before{
    content:"";
    position:absolute;
    top:25px;
    left:0;
    width:100%;
    height:4px;
    background:#dbeafe;
    z-index:0;
}

.step{
    position:relative;
    z-index:1;
    text-align:center;
    cursor:pointer;
    flex:1;
}

.step-circle{
    width:50px;
    height:50px;
    margin:auto;

    border-radius:50%;

    background:white;
    border:3px solid #2563eb;

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

    font-weight:700;
}

.step-label{
    margin-top:10px;
    font-size:.9rem;
}

.info-box{
    /* background:white; */
    background:var(--secondary);

    padding:30px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    min-height:160px;
}

.info-box h3{
    margin-bottom:10px;
    color: var(--primary-dark);
}

/* Search */

.search-box{
    width:100%;
    max-width:700px;

    padding:18px;

    margin:0 auto 50px auto;

    display:block;

    border:none;

    border-radius:14px;

    box-shadow:0 4px 20px rgba(0,0,0,.08);

    font-size:1rem;
}

/* Accordion */

.accordion{
    max-width:1000px;
    margin:auto;
}

.accordion details{
    /* background:white; */
    background:var(--secondary);

    margin-bottom:20px;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.accordion summary{
    padding:24px;

    cursor:pointer;

    font-weight:600;

    font-size:1.1rem;

    list-style:none;
}

.accordion-content{
    padding:0 24px 24px 24px;
}

.accordion-content ul{
    padding-left:20px;
}

.accordion-content li{
    margin-bottom:8px;
}

@media(max-width:768px){

.timeline{
    flex-wrap:wrap;
    gap:20px;
}

.timeline::before{
    display:none;
}

}



/* .resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    padding: 20px;
    border-radius: 12px;
    background: #f5f5f5;
    text-decoration: none;
    color: black;
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    background: #eaeaea;
} */

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

/* Each feature section */
.feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
}

/* Swap image and text */
.feature.reverse {
    flex-direction: row-reverse;
}

.feature-text,
.feature-image {
    flex: 1;
}

.feature-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-image img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: auto;
    border-radius: 12px;
}

/* Mobile */
@media (max-width: 768px) {
    .feature,
    .feature.reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature {
        gap: 30px;
    }

    .feature-text h2 {
        font-size: 1.8rem;
    }
}



/* ////// */
.category {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Responsive Grid */

/* .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
} */

/* Card */

.learning-card {
    /* background: white; */
    background:var(--secondary);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: .3s;
}

.learning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,.12);
}

.learning-card h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.card-section {
    margin-bottom: 20px;
}

.card-section h4 {
    margin-bottom: 10px;
    color: #444;
}

.card-section ul {
    padding-left: 20px;
}

.card-section li {
    margin-bottom: 6px;
}

.card-section:last-child {
    margin-bottom: 0;
}


/* ////// Ref - on home */
.about-content{
    max-width:900px;
    margin:auto;
    line-height:1.8;
}

.about-content p{
    margin-bottom:20px;
}

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

.fact-card{
    /* background:#fff; */
    background:var(--secondary);
    border-radius:10px;
    padding:25px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.fact-card h3{
    margin-bottom:15px;
    color: var(--primary-dark);
}

.references{
    margin-top:50px;
    font-size:.95rem;
}

.references ul{
    padding-left:20px;
}

.references li{
    margin-bottom:15px;
}

.download-section{
    text-align:center;
    padding:70px 20px;
    background:var(--primary);
    color: white;
}

.download-section p{
    max-width:700px;
    margin:20px auto 40px;
}

.store-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.store-btn{
    display:inline-block;
    padding:16px 28px;
    border-radius:8px;
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.store-btn:hover{
    transform:translateY(-3px);
}

.apple{
    background:white;
    color:var(--primary-dark);
}

.google{
    background:var(--accent);
    color: var(--primary-dark);
}


/* //////// */
.government-resources{

    width:100%;

    background:var(--primary);

    color:white;

    padding:80px 20px;

}

.government-content{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.government-content h2{

    font-size:2.2rem;

    margin-bottom:20px;

}

.government-content p{

    font-size:1.1rem;

    line-height:1.8;

    margin-bottom:35px;

    opacity:.95;

}

.government-button{

    display:inline-block;

    padding:16px 36px;

    background:var(--accent);

    color:var(--primary-dark);

    text-decoration:none;

    font-weight:700;

    border-radius:999px;

    transition:.3s;

}

.government-button:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}

/* ////// HOME PAGE IMAGE /////// */
.hero-text{

    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;

}

.hero-buttons{

    display:flex;
    align-items: center;

    gap:20px;

    margin-top:15px;

    flex-wrap:wrap;

}

.hero-image{

     flex:0 0 380px;

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;
    max-width:380px;
    min-width: 320px;
    height: auto;

    border-radius:25px;

    box-shadow:
        0 20px 45px rgba(0,0,0,.25);

    transition:.3s;

}

.hero-image img:hover{

    transform:translateY(-8px);

}

@media (max-width:1100px){

.hero-image{

    display:none;

}

.hero-content{

    justify-content:center;

}

.hero-text{

    max-width:700px;

    text-align:center;

}

}
/* .hero-image img{

    width:100%;
    max-width:380px;

    border-radius:25px;

    box-shadow:
        0 20px 45px rgba(0,0,0,.25);

    transition:.3s;

}

.hero-image img:hover{

    transform:translateY(-8px);

} */