/* =========================
   RESET
========================= */

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

:root{
    --green:#009944;
    --red:#E53935;
    --yellow:#F7B733;
    --blue:#2C6E91;
    --light-green:#EAF8EE;
    --light-yellow:#FFF9E6;
    --dark:#333333;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Nunito',sans-serif;
    color:var(--dark);
    line-height:1.6;
    background:
        linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.92)),
        url("../images/abc.png") top 130px right 35px / 140px auto no-repeat,
        url("../images/hand.png") bottom center / min(1100px,90vw) auto no-repeat,
        linear-gradient(135deg,#fffdf4 0%,#eaf8ee 50%,#fff9e6 100%);
    background-attachment:fixed,fixed,fixed,scroll;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,h2,h3,h4{
    font-family:'Fredoka',sans-serif;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:var(--blue);
    margin-bottom:40px;
}

/* =========================
   LAYOUT
========================= */

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

section{
    padding:70px 20px;
}

/* =========================
   MARQUEE
========================= */

/* .announcement{
    background:#FFF200;
    overflow:hidden;
    white-space:nowrap;
    padding:12px 0;
    border-top:3px solid var(--red);
    border-bottom:3px solid var(--red);
} */
.announcement{
    background:#FFF200;

    overflow:hidden;
    white-space:nowrap;

    padding:6px 0;

    box-shadow:0 1px 3px rgba(0,0,0,.08);
}
/* .announcement-track{
    display:flex;
    width:max-content;
    animation:ticker 25s linear infinite;
    font-weight:700;
    font-size:18px;
} */
.announcement-track{
    display:flex;
    width:max-content;

    animation:ticker 25s linear infinite;

    font-weight:600;
    font-size:15px;
}
.announcement-track span{
    padding-right:80px;
}

@keyframes ticker{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* =========================
   HEADER
========================= */

header{
    background:var(--light-green);
    text-align:left;
    padding:10px 15px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.logo-container{
    text-align:left;
}

.main-logo{
    height:75px;
    width:auto;
    display:block;
    margin:0;
}
.logo{
    text-align:left;
}

.logo img{
    height:75px;
    width:auto;
    display:block;
    margin:0;
}
    /* display:block;
    margin:auto; */

/* =========================
   NAVIGATION
========================= */

nav{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
    margin-top:10px;
}

.nav-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:135px;
    text-decoration:none;
    padding:8px 16px;
    border-radius:25px;
    font-size:14px;
    font-weight:700;
    color:white;
    transition:.3s;
}

.nav-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 5px 12px rgba(0,0,0,.2);
}

.home-btn{
    background:var(--green);
}

.about-btn{
    background:var(--red);
}

.program-btn{
    background:var(--yellow);
    color:#333;
}

.contact-btn{
    background:var(--blue);
}

.pricing-btn{
    background:#7B61FF;
}

.tour-btn{
    background:#FF6B35;
}

/* =========================
   HERO / BANNER
========================= */

/* .hero{
    background:white;
    padding:5px 20px 15px;
} */
.hero{
    background:rgba(234,248,238,.88);
    padding:10px 20px 10px 20px;
}
.banner{
    display:flex;
    justify-content:center;
    align-items:center;
}

.banner img{
    width:65%;
    max-width:850px;
    height:auto;

    display:block;
    margin:auto;

    border-radius:15px;

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

/* =========================
   WELCOME
========================= */

.welcome{
    text-align:center;
    padding:50px 20px;
}

.welcome h1{
    font-size:48px;
    color:var(--blue);
    margin-bottom:20px;
}

.welcome p{
    max-width:900px;
    margin:0 auto 30px auto;
    font-size:22px;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-block;
    background:var(--red);
    color:white;
    text-decoration:none;
    padding:14px 28px;
    border-radius:8px;
    margin:5px;
    font-weight:700;
    transition:.3s;
}

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

.btn-secondary{
    background:var(--green);
}

/* =========================
   PROGRAMS
========================= */

#programs{
    background:rgba(255,249,230,.86);
}

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

.program-card{
    background:rgba(255,255,255,.94);
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 3px 12px rgba(0,0,0,.1);
    transition:.3s;
}

.program-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.program-card h3{
    color:var(--red);
    margin-bottom:10px;
}

/* =========================
   PRICING
========================= */

.pricing-hero{
    background:rgba(234,248,238,.88);
    text-align:center;
    padding:60px 20px 45px;
}

.pricing-hero h1{
    color:var(--blue);
    font-size:48px;
    margin-bottom:15px;
}

.pricing-hero p{
    max-width:760px;
    margin:0 auto;
    font-size:21px;
}

.pricing-section{
    background:rgba(255,249,230,.86);
}

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

.pricing-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    background:rgba(255,255,255,.94);
    padding:30px 24px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 3px 12px rgba(0,0,0,.1);
    transition:.3s;
}

.pricing-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.pricing-card h3{
    color:var(--red);
    margin-bottom:12px;
}

.pricing-card .price{
    color:var(--green);
    font-family:'Fredoka',sans-serif;
    font-size:42px;
    font-weight:600;
    line-height:1;
    margin-bottom:22px;
}

.pricing-card .price span{
    font-size:24px;
    vertical-align:super;
}

.pricing-card .price small{
    color:var(--dark);
    font-family:'Nunito',sans-serif;
    font-size:16px;
    font-weight:700;
}

.pricing-card ul{
    flex:1;
    list-style:none;
    margin-bottom:25px;
}

.pricing-card li{
    margin-bottom:10px;
}

.featured-pricing{
    border:3px solid var(--yellow);
}

/* =========================
   SAFETY
========================= */

.safety{
    background:var(--green);
    color:white;
    text-align:center;
}

.safety .section-title{
    color:#FFE066;
}

.safety-list{
    list-style:none;
}

.safety-list li{
    margin:12px 0;
    font-size:18px;
}

/* =========================
   FEATURES
========================= */

.features{
    background:rgba(234,248,238,.86);
}

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

.feature-card{
    background:rgba(255,255,255,.94);
    padding:25px;
    border-radius:15px;
    text-align:center;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.feature-card h3{
    color:var(--blue);
    margin-bottom:10px;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials{
    background:rgba(255,255,255,.86);
}

.testimonial{
    background:rgba(247,247,247,.94);
    padding:25px;
    margin:20px auto;
    max-width:800px;
    border-left:5px solid var(--yellow);
    border-radius:8px;
}

/* =========================
   CONTACT
========================= */

#contact{
    background:rgba(234,248,238,.88);
    text-align:center;
}

#contact p{
    margin-bottom:12px;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:25px;
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .main-logo,
    .logo img{
        height:75px;
    }

    nav{
        flex-direction:column;
        align-items:center;
    }

    .nav-btn{
        width:220px;
        text-align:center;
    }

    .banner img{
        width:95%;
    }

    .welcome h1{
        font-size:34px;
    }

    .welcome p{
        font-size:18px;
    }

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

    .announcement-track{
        font-size:16px;
    }
}
.page-hero{
    background:#2C6E91;
    color:white;
    text-align:center;

    padding:50px 20px 30px;
}

/* .tour-form-section{
    background:#EAF8EE;

    padding:30px 20px 70px;
} */
 /* ==========================
   TOUR FORM
========================== */

.tour-form-section{
    background:rgba(234,248,238,.88);
    padding:50px 20px;
}

.tour-form-card{

    max-width:700px;

    margin:0 auto;

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

    padding:40px;

    border-radius:20px;

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

}

.tour-form-card .section-title{
    margin-bottom:30px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:700;

    color:#333;

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    height:50px;

    padding:12px 15px;

    border:1px solid #dcdcdc;

    border-radius:8px;

    font-size:16px;

    font-family:'Nunito',sans-serif;

}

.form-group textarea{

    height:120px;

    resize:vertical;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    outline:none;

    border-color:#009944;

    box-shadow:0 0 0 3px rgba(0,153,68,.15);

}

.tour-form-card .btn{

    width:100%;

    padding:15px;

    font-size:18px;

    border:none;

    cursor:pointer;

    border-radius:8px;

    margin-top:10px;

}
