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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #4A6CF7 0%, #667EEA 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
    position: relative;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: 300px;
    background: url('./assets/1.png') center/cover;
    border-radius: 20px;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 40px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #666;
}

.cta-button {
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.4);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section.blue {
    background: linear-gradient(135deg, #4A6CF7 0%, #667EEA 100%);
    color: white;
}

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

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-image {
    width: 100%;
    height: 300px;
    background: url('./assets/2.png') center/cover;
    border-radius: 20px;
}

/* Features Grid */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
    text-transform: uppercase;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #4FACFE;
}

.feature-icon {
    width: 100%;
    height: 120px;
  
    border-radius: 15px;
    margin-bottom: 20px;
}
.feature-icon1{
    background: url('./assets/1.1.png') center/cover;
}
.feature-icon2{
    background: url('./assets/1.2.png') center/cover;
}
.feature-icon3{
    background: url('./assets/1.3.png') center/cover;
}
.feature-icon4{
    background: url('./assets/1.4.png') center/cover;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4A6CF7 0%, #667EEA 100%);
    color: white;
}

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

.philosophy-image {
    width: 100%;
    height: 400px;
    background: url('./assets/3.png') center/cover;
    border-radius: 20px;
}

.philosophy-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.philosophy-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Learning Section */
.learning-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.learning-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
    text-transform: uppercase;
}

.learning-image {
    width: 100%;
    max-width: 800px;
    height: 200px;
    background: url('./assets/4.png') center/cover;
    border-radius: 20px;
    margin: 0 auto 40px;
}

.learning-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.learning-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Portfolios Section */
.portfolios-section {
    padding: 80px 0;
}

.portfolios-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
    text-transform: uppercase;
}

.portfolios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(79, 172, 254, 0.3);
}

.portfolio-icon {
    width: 60px;
    height: 60px;
    background: url('./assets/5.png') center/cover;
    margin: 0 auto 20px;
    border-radius: 10px;
}

.portfolio-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.portfolio-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Form */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('./assets/contact-bg.jpg') center/cover;
    color: white;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.form-group input::placeholder {
    color: #666;
}

.submit-button {
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4A6CF7 0%, #667EEA 100%);
    color: white;
    text-align: center;
    padding: 30px 0;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-popup h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cookie-popup p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.cookie-button {
    background: white;
    color: #333;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s ease;
}

.cookie-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

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

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

    .philosophy-image {
        height: 250px;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .features-section h2,
    .learning-section h2,
    .portfolios-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .portfolios-grid {
        grid-template-columns: 1fr;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        margin: 15px;
        padding: 25px 15px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .philosophy-text h2 {
        font-size: 1.5rem;
    }
}
