.elementor-kit-8{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#F5F5F5;--e-global-color-accent:#61CE70;--e-global-color-d55d5b2:#002839;--e-global-color-dfad82b:#F5F5F5;--e-global-color-d08a17b:#E8923A;--e-global-color-1fc4d82:#009949;--e-global-color-1785bfb:#FF0000;--e-global-color-a4f0fdd:#FFD475;--e-global-color-621fa0a:#003F5A;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:400;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-size:1rem;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:#002839;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #002839; /* Dark Blue */
    color: #F5F5F5; /* White */
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #E8923A; /* Yellow Highlight */
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: #E8923A; /* Yellow Highlight */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* Highlight Color */
.highlight {
    color: #E8923A; /* Yellow Highlight */
}

/* Layout & Spacing */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    padding: 60px 20px;
}

.highlight-section {
    background-color: #003f5a; /* Slightly Lighter Blue for contrast */
}

/* Header & Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 40, 57, 0.8), rgba(0, 40, 57, 0.8)), url('/images/hero.png') no-repeat center center/cover;
    color: #F5F5F5;
    padding: 40px 20px 60px;
    text-align: center;
    min-height: 70vh; /* Ensure hero takes significant height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

nav {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: flex-start; /* Align logo to the left */
    margin-bottom: 40px;
    padding-left: 20px; /* Add some padding so it's not stuck to the edge */
}

.logo {
    max-height: 80px; /* Increased max-height */
}

.hero-content h1 {
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 1.4rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center; /* Ensure subtitle is centered */
    line-height: 1.5;
}

.hero-image {
    display: none; /* Hide the separate hero image if using background */
    /* If not using background image, style this: */
    /* max-width: 500px; */
    /* margin-top: 2rem; */
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #E8923A; /* Yellow Highlight */
    color: #002839; /* Dark Blue Text */
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #f5a14a; /* Lighter Yellow */
    transform: translateY(-2px);
    text-decoration: none;
}

.primary-cta {
    font-size: 1.4rem;
    padding: 18px 45px;
}

/* Section Specific Styles */
#why-now h2 {
    color: #F5F5F5; /* Ensure title is visible on darker bg */
}

/* Learning Grid */
.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.learning-item {
    background-color: #003f5a; /* Slightly Lighter Blue */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.learning-item ul {
    list-style: none;
    padding-left: 0;
}

.learning-item li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 25px;
}

.learning-item li::before {
    content: '\2714'; /* Checkmark */
    color: #009949; /* Green */
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Target Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.audience-item {
    background-color: #002839;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #E8923A;
}

.audience-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Course Details List */
#course-details ul {
    list-style: none;
    padding-left: 0;
    max-width: 600px;
    margin: 2rem auto;
}

#course-details li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
}

#course-details li::before {
    content: '\27A4'; /* Arrow symbol */
    color: #E8923A; /* Yellow */
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: 2px;
}

/* Instructors */
.instructor-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
    background-color: #002839;
    padding: 20px;
    border-radius: 8px;
}

.instructor-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E8923A;
}

/* Testimonials */
.testimonial {
    background-color: #003f5a;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-left: 5px solid #E8923A;
}

.testimonial blockquote {
    margin: 0 0 1rem 0;
    font-style: italic;
    font-size: 1.2rem;
}

.testimonial cite {
    font-weight: 600;
    color: #F5F5F5;
}

/* FAQ */
.faq-item {
    background-color: #003f5a;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.faq-item h3 {
    margin-bottom: 0.5rem;
}

/* Final CTA Section */
.cta-section {
    background-color: #E8923A; /* Yellow Highlight */
    color: #002839; /* Dark Blue */
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    color: #002839;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    background-color: #002839;
    color: #F5F5F5;
}

.cta-section .cta-button:hover {
    background-color: #001f2b;
}

/* Footer */
footer {
    background-color: #001f2b; /* Darker Blue */
    color: #aaa; /* Lighter Gray */
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Optional: WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    text-decoration: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .hero-content h2 {
        font-size: 1.2rem;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .primary-cta {
        font-size: 1.2rem;
        padding: 15px 35px;
    }
    .learning-grid {
        grid-template-columns: 1fr;
    }
    .audience-grid {
        grid-template-columns: 1fr;
    }
    .instructor-profile {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .hero-section {
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .content-section {
        padding: 40px 15px;
    }
    .cta-section {
        padding: 40px 15px;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
}/* End custom CSS */