/* 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;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
}

.cookie-modal.hidden {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px;
    text-align: left;
}

.cookie-content h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.cookie-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-accept:hover {
    transform: translateY(-2px);
}

.btn-learn {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 10px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background: #667eea;
    color: white;
}

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

.success-modal.show {
    display: flex;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 400px;
    margin: 20px;
    text-align: center;
}

.success-content h2 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 24px;
}

.success-content p {
    color: #666;
    margin-bottom: 25px;
}

.btn-close {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
}

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

.logo {
    color: white;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

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

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

/* Hero Section */
.hero {

    padding: 150px 0 100px;
    color: white;
    text-align: center;
    background-image: url(./img/img1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Distingue Section */
.distingue {
    padding: 100px 0;
    background: #1a1a2e;
    color: white;
    text-align: center;
}

.distingue h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.distingue-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.distingue-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #00d4ff;
}

.distingue-item p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.services > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.services-content {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.services-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.services-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.services-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.services-button:hover {
    transform: translateY(-2px);
}

/* Tech Section */
.tech-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}

.tech-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-mockup {
    width: 600px;
    height: 400px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.screen-content {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-lines {
    width: 80%;
    height: 80%;
    background: linear-gradient(45deg, #00d4ff, #ff006b, #8b5cf6);
    opacity: 0.7;
    border-radius: 10px;
    position: relative;
}

.chart-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.1) 20px,
        rgba(255, 255, 255, 0.1) 22px
    );
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.testimonials > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
    border-left: 4px solid #667eea;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #333;
    font-weight: 600;
}

/* Trust Section */
.trust {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
}

.trust h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 600;
}

.trust p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.trust-button {
    background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.trust-button:hover {
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.faq-item h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.contact-form button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-form button:hover {
    background: white;
    color: #667eea;
}

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

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

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #667eea;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .distingue h2,
    .services h2,
    .testimonials h2,
    .trust h2,
    .faq h2,
    .contact h2 {
        font-size: 28px;
    }
    
    .distingue-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        flex-direction: column;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .laptop-mockup {
        width: 90%;
        height: 300px;
    }
    
    .services-content {
        padding: 30px 20px;
    }
    
    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .distingue,
    .services,
    .testimonials,
    .trust,
    .faq,
    .contact {
        padding: 60px 0;
    }
    
    .tech-section {
        padding: 40px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.text {
padding-block: 100px;
}
.text h1 {
    color: #0A0A0A;
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.text p {
    color: #3E3E3E;
    margin-top: 40px;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
}