:root {
    --navy-blue: #1A2A4A;
    --light-blue: #A9C5E8;
    --white: #FFFFFF;
    --soft-gray: #F0F4F8;
    --medium-gray: #C7D2E1;
    --dark-gray: #4A5568;
    --calm-green: #4CAF50;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--soft-gray);
    color: var(--navy-blue);
    line-height: 1.6;
}

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

/* Updated Header Styles */
header {
    background-color: var(--navy-blue);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
}

.logo img {
    height: 64px;
    margin-right: 10px;
}

.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    font-size: larger;
    transition: color 0.3s ease;
    padding: 24px 12px;
}

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

.download-btn {
    background-color: var(--calm-green);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 0px;
    height: 72px;
    margin: auto;
    align-items: center;
    text-decoration: none;
    font-weight: 900;
    transition: background-color 0.3s ease;
}

.cta-button {
    background-color: var(--calm-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #45a049;
}

.download-btn:hover {
    background-color: #45a049;
}

.hero {
    position: relative;
    background-image: url(images/hero/darrisnee-hero-illustration-1.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.hero-btn {
    display: inline-block;
    background-color: var(--calm-green);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #45a049;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features,
.courses,
.pricing,
.testimonials {
    padding: 100px 0;
}

.features,
.pricing {
    background-color: var(--soft-gray);
}

.courses,
.testimonials {
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.feature-grid,
.course-grid,
.pricing-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card,
.course-card,
.pricing-card,
.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card,
.course-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.feature-card:hover,
.course-card:hover,
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-card img,
.course-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.feature-card h3,
.course-card h3,
.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.pricing-card {
    text-align: center;
}

.pricing-card .price {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
}

.pricing-card ul {
    list-style-type: disc;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card li {
    margin-bottom: 10px;
    margin-left: 32px;
    text-align: left;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--navy-blue);
}

.footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 0;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icons a {
    color: var(--white);
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--light-blue);
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background-color: var(--calm-green);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #45a049;
}

.footer-bottom {
    text-align: center;
    margin-top: 0;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Form Styles */
.contact-section {
    padding: 60px 0;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--navy-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    height: 120px;
}

.submit-btn {
    background-color: var(--calm-green);
    color: var(--white);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #45a049;
}

#cf-turnstile {
    margin-bottom: 20px;
}

.faq-section {
    background-color: var(--white);
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--navy-blue);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--soft-gray);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-weight: 600;
    color: var(--navy-blue);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    color: var(--dark-gray);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    /* Adjust as needed */
    padding-bottom: 20px;
}

@media (max-width: 1010px) {
    .menu-toggle {
        display: block;
        padding-left: 28px;
        padding-right: 0px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--navy-blue);
        padding: 20px;
    }

    .nav-links.show {
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    padding-top: 88px;
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-btn {
    display: inline-block;
    background-color: #4CAF50;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 3s infinite;
}

.hero-btn:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.hero-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
}

@keyframes buttonPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    75% {
        transform: scale(1);
    }
}

.hero-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    20% {
        transform: scale(25, 25);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.hero-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}

.hero {
    position: relative;
    color: #FFFFFF;
    padding: 150px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-btn {
    display: inline-block;
    background-color: #4CAF50;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 3s infinite;
}

.hero-btn:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.hero-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
}

@keyframes buttonPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    75% {
        transform: scale(1);
    }
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust opacity as needed */
    z-index: 1;
}

.site-footer {
    background-color: #1A2A4A;
    color: #FFFFFF;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    margin-bottom: 20px;
    min-width: 200px;
}

.footer-section h3 {
    color: #A9C5E8;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #A9C5E8;
}

.social-icons a {
    margin-right: 10px;
    font-size: 20px;
}

.app-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.app-store-button,
.google-play-button {
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #4CAF50;
    color: #FFFFFF;
    text-decoration: none;
}

.trust-badges img {
    height: 40px;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid #A9C5E8;
    padding-top: 20px;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav a {
    margin-left: 15px;
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-nav {
        margin-top: 10px;
    }

    .footer-nav a {
        margin: 0 10px;
    }
}

.google-form-container {
    display: flex;
    justify-content: center;
}

.download-button {
    background-color: #45a049;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 30px;
    overflow: hidden;
    display: inline-block;
    position: relative;
    width: 200px;
    padding: 12px;
    text-align: center;
}

.download-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.download-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-button:hover::after {
    opacity: 1;
}

.nav-links .nav-item {
    position: relative;
}

.nav-links .nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--calm-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links .nav-item:hover::after,
.nav-links .nav-item.active::after {
    transform: scaleX(1);
}

.nav-links .nav-item:hover,
.nav-links .nav-item.active {
    color: var(--calm-green);
    background-color: aliceblue;
}