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

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

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

button {
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 40px;
    color: #666;
}

.text-highlight {
    color: #FF5A5F;
}
/*
section {
    padding: 60px 0;
    border-bottom: 1px dashed #e1e1e1;
}
*/

/* Navbar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /*padding: 15px 0;*/
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.cyber {
    color: #FF5A5F;
}

.square {
    color: #333;
}

.btn-enquire {
    background-color: #fff;
    color: #FF5A5F;
    border: 1px solid #FF5A5F;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-enquire:hover {
    background-color: #FF5A5F;
    color: #fff;
}

/* Hero Section Styles */
.hero {
    background-color: #FFF9F8;
    padding: 80px 0;
}

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

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #555;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.hero-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-get-started {
    background-color: #FF5A5F;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-get-started:hover {
    background-color: #e64146;
}

.btn-request-demo {
    background-color: transparent;
    color: #FF5A5F;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid #FF5A5F;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-request-demo:hover {
    background-color: #fff;
    color: #e64146;
    border-color: #e64146;
}

/* How it Works Section */
.how-it-works {
    background-color: #fff;
}

.works-content {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.video-container {
    flex: 1;
    position: relative;
}

.video-container img {
    width: 100%;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #FF5A5F;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
}

.steps-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #FFF9F8;
    padding: 20px;
    border-radius: 10px;
}

.step-icon {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FF5A5F;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
}

.enjoy-message {
    text-align: center;
    font-size: 1.2rem;
    margin: 30px 0;
}

.try-free-container {
    text-align: center;
    margin: 30px 0 10px;
}

.btn-try-free {
    background-color: #FF5A5F;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-try-free:hover {
    background-color: #e64146;
}

/* AI Generators Section */
.ai-generators {
    background-color: #FFF9F8;
}

.generators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.generator-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.generator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.generator-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.generator-icon-card {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(204, 64, 64);
}

.question-paper { background-color: #FF5A5F; }
.lesson-plan { background-color: #4ECDC4; }
.topic-note { background-color: #45B7D1; }
.exam-creator { background-color: #F8A65D; }
.presentation { background-color: #9B58B5; }
.group-task { background-color: #3498DB; }

.generator-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.generator-card p {
    font-size: 0.9rem;
    color: #666;
}

.show-more-container {
    text-align: center;
}

.btn-show-more {
    background-color: #FF5A5F;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-show-more:hover {
    background-color: #e64146;
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #FFF9F8;
    border-radius: 10px;
    padding: 30px;
    position: relative;
}

.quote-mark {
    color: #FF5A5F;
    font-size: 3rem;
    position: absolute;
    top: 10px;
    left: 20px;
    font-weight: bold;
}

.testimonial-text {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-author {
    margin-top: 15px;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
}

.author-school {
    font-size: 0.9rem;
    color: #666;
}

/* Partners Section */
.partners {
    background-color: #F9F9F9;
    padding: 40px 0;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.partner-logo {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Pricing Section */
.pricing {
    background-color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.pricing-card.highlight {
    background-color: #FFF9F8;
}

.price-image {
    margin-bottom: 20px;
}

.price-image img {
    max-width: 150px;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.price-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.feature {
    padding: 8px 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 25px;
}

.feature.included::before {
    content: "✓";
    color: #4CAF50;
    position: absolute;
    left: 0;
}

.feature.not-included::before {
    content: "✕";
    color: #F44336;
    position: absolute;
    left: 0;
}

.btn-get-started.highlight {
    background-color: #FF5A5F;
}

/* CTA Section */
.cta {
    background-color: #FFF9F8;
    text-align: center;
}

.btn-sign-up {
    background-color: #FF5A5F;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 20px;
}

.btn-sign-up:hover {
    background-color: #e64146;
}

/* Footer */
footer {
    background-color: #fff;
    /*
    padding: 60px 0 30px;
    */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.brand-tagline {
    margin-top: 15px;
    font-size: 1.2rem;
}

.brand-tagline .highlight {
    color: #FF5A5F;
    font-weight: 700;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.links-column {
    flex: 1;
    min-width: 200px;
}

.links-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.links-column ul {
    list-style: none;
}

.links-column li {
    margin-bottom: 8px;
}

.links-column a {
    color: #666;
    transition: color 0.2s ease;
}

.links-column a:hover {
    color: #FF5A5F;
}
/*
.newsletter {
    display: flex;
    margin-top: 15px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-family: 'Poppins', sans-serif;
}
*/
.btn-subscribe {
    background-color: #FF5A5F;
    color: #fff;
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
    font-weight: 500;
}

.btn-subscribe:hover {
    background-color: #e64146;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .works-content {
        flex-direction: column;
    }
    
    .generators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .generators-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}
