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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./assets/1.png') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-left h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

/* Trusted Section */
.trusted {
    background: #2a2a2a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.trusted h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.trusted-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trusted-logo {
    background: #3a3a3a;
    padding: 2rem 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all 0.3s;
}

.trusted-logo:hover {
    background: #4a4a4a;
    transform: translateY(-5px);
}

/* Courses Section */
.courses {
    padding: 100px 0;
    background: #f8f9fa;
}

.courses h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1f2937;
    text-transform: uppercase;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.course-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.course-image {
    width: 100%;
    height: 250px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #6b7280;
    
}
.course-image1{
    background-image: url(./assets/1.1.png);
    background-size: cover;
}
.course-image2{
    background-image: url(./assets/1.2.png);
    background-size: cover;
}
.course-image3{
    background-image: url(./assets/1.3.png);
    background-size: cover;
}
.course-image4{
    background-image: url(./assets/1.4.png);
    background-size: cover;
}
.course-image5{
    background-image: url(./assets/1.5.png);
    background-size: cover;
}
.course-image6{
    background-image: url(./assets/1.6.png);
    background-size: cover;
}


.course-content {
    padding: 2rem;
}

.course-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    line-height: 1.3;
}

.course-card p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

.courses-cta {
    text-align: center;
    margin-top: 3rem;
}

.courses-cta .btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Platform Section */
.platform {
    background: #2563eb;
    color: white;
    padding: 100px 0;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.platform-image {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    background-image: url(./assets/2.png);
    background-size: cover;
}

.platform-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.platform-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.platform-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* Learning Model Section */
.learning-model {
    padding: 100px 0;
    background: #f8f9fa;
}

.learning-model h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1f2937;
    text-transform: uppercase;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.learning-card {
    text-align: left;
}

.learning-image {
    width: 100%;
    height: 250px;
    background: #e5e7eb;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}
.learning-image1{
    background: url(./assets/2.1.png);
    background-size: cover;
}
.learning-image2{
    background: url(./assets/2.2.png);
    background-size: cover;
}
.learning-image3{
    background: url(./assets/2.3.png);
    background-size: cover;
}

.learning-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    line-height: 1.3;
}

.learning-card p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Final CTA Section */
.final-cta {
    background: #2a2a2a;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.final-cta-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* Form Section */
.form-section {
    background: #2a2a2a;
    padding-bottom: 80px;
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    background: white;
    color: #333;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-submit {
    text-align: right;
    margin-top: 2rem;
}

.form-submit .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Footer */
footer {
    background: #2a2a2a;
    color: white;
    padding: 2rem 0;
    border-top: 1px solid #3a3a3a;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    z-index: 10000;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-popup h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cookie-popup p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #2563eb;
    color: white;
}

.cookie-accept:hover {
    background: #1d4ed8;
}

.cookie-refuse {
    background: transparent;
    color: #6b7280;
    text-decoration: underline;
    border: none;
    font-size: 0.9rem;
}

.cookie-refuse:hover {
    color: #374151;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-left h1 {
        font-size: 3rem;
    }

    .platform-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .courses-grid,
    .learning-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trusted-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

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

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .courses-grid,
    .learning-grid {
        grid-template-columns: 1fr;
    }

    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .courses h2,
    .platform h2,
    .learning-model h2,
    .final-cta h2 {
        font-size: 2rem;
    }

    .trusted-logos {
        grid-template-columns: 1fr;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
        padding: 1.5rem;
    }
}
