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

:root {
    --color-primary: #0b6969;
    --color-secondary: #ddaf08;
    --color-dark: #1E1E2E;
    --color-subtext: #7F849B;
    --color-white: #ffffff;
    --font-family: 'Poppins', sans-serif;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    margin: 0 auto;
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: var(--color-dark);
}

section{
    max-width: 1200px;
    padding: 20px 40px;
    margin: 0 auto;
}

.green {
    color: var(--color-primary);
}

.yellow {
    color: var(--color-secondary);
}

/* NAVBAR */
.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    color: white;
    flex-wrap: wrap;
}

.nav-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 500;
}

.nav-logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--color-dark);
    transition: color 0.3s ease;
}

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

.nav-cta {
    padding: 8px 18px;
    background-color: var(--color-primary);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-cta a {
    color: var(--color-white);
    font-weight: 500;
}

.nav-cta:hover {
    background-color: var(--color-secondary);
}

.hamburger {
    display: none;
    gap: 2px;
    flex-direction: column;
}

.hamburger span {
    content: '';
    height: 3px;
    width: 30px;
    background-color: var(--color-dark);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow-x: hidden;
    min-height: 80vh;
}

.hero-badge{
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-txt-wrapper {
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.hero-txt-wrapper h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1.3;
    white-space: nowrap;
    font-weight: 700;
}

.hero-txt-wrapper p {
    color: var(--color-subtext);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    width: 80%;
    margin-bottom: 40px;
}

.hero-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper img {
    width: 100%;
    max-width: 750px;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-cta{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-cta a{
    background-color: var(--color-primary);
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--color-white);
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.hero-cta a:last-child{
    background-color: var(--color-white);
    color: var(--color-dark);
    border: 1px solid #8a8a8a49;
}

.hero-cta a:hover{
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.cta-start:hover{
    background-color: #0c8d8d !important;
    box-shadow: 0 4px 10px rgba(11,105,105,0.2);
}

/* Slider Section */
.slider-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    max-width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 5%;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.splide {
    margin: 0 auto;
    padding: 0;
}

/* Hide arrows and pagination */
.splide__arrows,
.splide__pagination {
    display: none !important;
}

.splide__slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 0 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.slide-icon {
    width: 80px;
    height: 80px;
    background-color: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.slide-icon svg {
    width: 40px;
    height: 40px;
    fill: #333;
}

.slide-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.slide-desc {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-wrapper {
    width: 60%;
    margin: 0 auto;
}

h2 {
    margin-bottom: 20px;
    color: #1E1E2E;
    font-size: 2.5rem;
    text-align: center;
}

.faq-container {
    position: relative;
    background-color: white;
    color: black;
    border-radius: 20px;
    margin: 20px 0;
}

.faq-container::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #3333;
    bottom: 0;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #1E1E2E;
}

.faq-question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
    color: #0b6969;
}

.faq-question.active::after {
    transform: rotate(45deg);
    color: #ddaf08;
}

.faq-answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.faq-answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
    color: #7F849B;
}

.faq-question.active + .faq-answercont {
}

@media screen and (max-width: 790px){
    html {
        font-size: 14px;
    }
    .faq-wrapper {
        width: 80%;
    }
}

/* Responsive Media Query*/
@media screen and (min-width: 1200px) {
    .hero-img-wrapper img{
        width: 350px;
    }    
}

@media screen and (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    /* Show nav when active */
    .nav-links.nav-active,
    .nav-cta.nav-active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Optional: animate hamburger into a cross */
    .hamburger.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hamburger {
        display: flex;
    }

    .nav-links{
        min-width: 100%;
        flex-direction: column;
        border-top: 1px solid #e0e0e0;
        margin-top: 20px;
        padding-top: 20px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-txt-wrapper{
        align-items: center;
        margin: 20px;
    }

    .hero-txt-wrapper p{
        min-width: 100%;
        font-size: clamp(0.8rem, 1vw, 1rem);
    }

    .hero-txt-wrapper h1{
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .hero-img-wrapper img{
        max-width: 400px;
    }

    .hero-badge{
        padding: 10px 20px;
        font-size: 0.8rem;
        border-radius: 80px;
        margin-top: -40px;
    }
    
    .hero-cta a{
        font-size: medium;
    }
}