/* Main CSS Styles */
/* From Uiverse.io by adamgiebl */ 

:root {
    --primary-color: #00c853; /* Green from logo */
    --secondary-color: #222222; /* Dark gray/almost black */
    --dark-color: #000000; /* Black */
    --light-color: #ffffff; /* White */
    --text-light: #ffffff; /* White text */
    --text-dark: #000000; /* Black text */
    --gray-accent: #f5f5f5; /* Light gray for subtle backgrounds */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-color);
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.8);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text h3 {
    color: var(--text-light);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: -5px;
}

.logo-text p {
    color: var(--primary-color);
    font-size: 12px;
    opacity: 0.9;
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.contact-btn {
    background-color: var(--primary-color);
    color: var(--text-light) !important;
    padding: 8px 20px;
    border-radius: 25px;
}

.menu-toggle {
    display: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section Styles */
.hero {
    background-color: var(--secondary-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-light);
    padding: 0 50px;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    margin-bottom: 30px;
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 300px;
    height: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.primary-btn:hover {
    background-color: #00a844; /* Darker green on hover */
    transform: translateY(-2px);
}

.secondary-btn {
    color: var(--text-light);
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    border: 1px solid var(--text-light);
    border-radius: 30px;
    font-size: 14px;
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-indicator p {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.arrow-down {
    animation: bounce 2s infinite;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    padding: 80px 50px;
    background-color: var(--light-color);
}

.feature {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.feature-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 40px;
}

.feature h3 {
    font-family: var(--font-primary);
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 20px;
}

.feature p {
    color: #555;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--gray-accent);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 32px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.service-card p {
    margin-bottom: 20px;
    color: #555;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s;
}

.service-link:hover {
    text-decoration: underline;
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.process .section-header h2 {
    color: var(--text-light);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 15px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    z-index: 0;
}

.step-number {
    background-color: var(--primary-color);
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background-color: var(--light-color);
}

.programs-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.program-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 40px 30px;
    max-width: 350px;
    position: relative;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.15);
}

.featured-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.program-card h3 {
    margin-bottom: 10px;
    font-family: var(--font-primary);
    font-size: 22px;
}

.program-duration {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.program-features {
    margin: 20px 0;
}

.program-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.program-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

.program-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.program-btn:hover {
    background-color: #00a844;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--gray-accent);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    text-align: center;
    padding: 30px;
}

.testimonial-content {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--light-color);
}

.testimonial-content p {
    font-style: italic;
    color: #555;
}

.author-name {
    font-weight: 600;
    font-size: 18px;
}

.author-title {
    color: var(--primary-color);
    font-size: 14px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 500;
}

.faq-toggle {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--gray-accent);
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h3 {
    font-family: var(--font-primary);
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-info p {
    margin-bottom: 30px;
    color: #555;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-form {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.success-message {
    background-color: rgba(0, 200, 83, 0.1);
    color: var(--primary-color);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.error-message {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff3333;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 30px;
    margin-right: 10px;
}

.footer-logo h3 {
    font-family: var(--font-primary);
    font-weight: 400;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-links-column h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links-column ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    header {
        padding: 15px 20px;
    }
    
    .hero {
        padding: 0 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .features {
        flex-direction: column;
        padding: 50px 20px;
    }
    
    .feature {
        margin-bottom: 40px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
}
