/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Buttons */
.btn-primary {
    background: #4a9b8e;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #3a7b6e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #4a9b8e;
    padding: 12px 24px;
    border: 2px solid #4a9b8e;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: #4a9b8e;
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 24px;
    max-width: 400px;
    z-index: 10000;
    display: block;
    border: 1px solid #e0e0e0;
}

.cookie-content {
    text-align: center;
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.cookie-consent h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.cookie-consent p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-link {
    color: #4a9b8e;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-buttons button {
    width: 100%;
    font-size: 12px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-header {
    position: absolute;
    top: 15px;
    right: 20px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.thank-card {
    background: #4a9b8e;
    color: white;
    padding: 60px 40px;
    text-align: center;
    border-radius: 12px;
}

.thank-card h2 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.thank-card h3 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 300;
}

.thank-card button {
    background: white;
    color: #4a9b8e;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thank-card button:hover {
    background: #f0f0f0;
}

/* Header */
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h2 {
    color: #333;
    font-size: 24px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-menu a:hover {
    color: #4a9b8e;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('./img/img1.png') center/cover;
    
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 60px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
    line-height: 1.2;
}

.hero-content .highlight {
    color: #4a9b8e;
}

.hero-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
    max-width: 600px;
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.text-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #333;
}

.subtitle {
    font-size: 20px;
    color: #4a9b8e;
    margin-bottom: 24px;
    font-weight: 400;
}

.text-content p {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.features {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.feature-icon {
    font-size: 24px;
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature span {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.image-content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Training Tracks */
.training-tracks {
    padding: 100px 0;
    background: #f8f9fa;
}

.training-tracks h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.track-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.track-card:hover {
    transform: translateY(-8px);
}

.track-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #333;
}

.track-meta {
    margin-bottom: 20px;
}

.duration {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.track-card p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.track-card h4 {
    color: #333;
    margin-bottom: 12px;
    font-size: 16px;
}

.track-card ul {
    margin-bottom: 32px;
    padding-left: 20px;
}

.track-card li {
    color: #666;
    margin-bottom: 8px;
}

/* Learning Engine */
.learning-engine {
    padding: 100px 0;
    background: white;
}

.learning-engine h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: #333;
}

.engine-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4a9b8e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #333;
}

.step p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.step blockquote {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    font-style: italic;
    color: #555;
    border-left: 4px solid #4a9b8e;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #2c3e50;
    color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
}

.testimonials .section-subtitle {
    color: #bdc3c7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: #34495e;
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.testimonial-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: white;
}

.testimonial-card .title {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
    color: #ecf0f1;
}

.metrics {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric .value {
    font-size: 24px;
    font-weight: 700;
    color: #4a9b8e;
}

.metric .label {
    font-size: 12px;
    color: #bdc3c7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Milestones */
.milestones {
    padding: 100px 0;
    background: white;
}

.milestones h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: #333;
}

.milestone-levels {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.level {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.level:nth-child(even) {
    direction: rtl;
}

.level:nth-child(even) > * {
    direction: ltr;
}

.level-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #333;
}

.level-info p {
    color: #666;
    line-height: 1.6;
}

.certification {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cert-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.cert-details h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.cert-details p {
    color: #666;
    margin-bottom: 16px;
}

.cert-details h5 {
    color: #333;
    margin-bottom: 12px;
    font-size: 16px;
}

.cert-details ul {
    padding-left: 20px;
}

.cert-details li {
    color: #666;
    margin-bottom: 8px;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

.contact-info {
    text-align: center;
}

.contact-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #333;
}

.contact-info p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9b8e;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: white;
}

.footer p {
    color: #bdc3c7;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features {
        flex-direction: column;
        gap: 24px;
    }

    .tracks-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .engine-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .level {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .level:nth-child(even) {
        direction: ltr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .modal-content {
        margin: 20px;
    }

    .thank-card {
        padding: 40px 20px;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

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

    .track-card,
    .contact-form {
        padding: 24px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .certification {
        padding: 24px;
    }

    .metrics {
        justify-content: center;
    }
}
.text h1 {
    
    color: #000;
text-align: center;
font-size: 60px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: uppercase;
padding-block: 40px;
padding-top: 150px;

}
.text p {
    color: #000;

font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;padding-bottom: 50px;
}