/* Reset and Base Styles */
*

 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --purple: #6B46C1;
    --orange: #F97316;
    --blue: #3B82F6;
    --red: #EF4444;
    --green: #10B981;
    --yellow: #F59E0B;
    --dark: #1F2937;
    --light: #F9FAFB;
}

/* Gradient Classes */
.gradient-text {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-purple {
    background: linear-gradient(135deg, var(--purple), #8B5CF6);
}

.gradient-orange {
    background: linear-gradient(135deg, var(--orange), #FB923C);
}

.gradient-blue {
    background: linear-gradient(135deg, var(--blue), #60A5FA);
}

.gradient-red {
    background: linear-gradient(135deg, var(--red), #F87

171);
}

.gradient-green {
    background: linear-gradient(135deg, var(--green), #34D399);
}

.gradient-yellow {
    background: linear-gradient(135deg, var(--yellow), #FBBF24);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 50%, var(--red) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight-text {
    color: var(--yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.

3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.card-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    t

op: 0:
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform

: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 2px;
}

.section-title.white {
    color: white;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.about-card.purple::before {
    background: var(--purple);
}

.about-card.orange::before {
    background: var(--orange);
}

.about-card.blue::before {
    background: var(--blue);
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card.purple i {
    color: var(--purple);
}

.about-card.orange i {
    color: var(--orange);
}

.about-card.blue i {
    color: var(--blue);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Courses Section */
.courses {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, #374151 100%);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.course-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--yellow);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--yellow);
    color: var(--dark);
    padding: 0.5rem 2rem;
    font-weight: 600;


    transform: rotate(45deg);
    font-size: 0.9rem;
    z-index: 10;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.course-header {
    padding: 2rem;
    color: white;
    text-align: center;
    position: relative;
}

.course-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
}

.course-content {
    padding: 2rem;
}

.course-features {
    list-style: none;
    margin-bottom: 2rem;
}

.course-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-features i {
    color: var(--green);
    font-size: 1.2rem;
}

.btn-course {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 1.2rem;
}

.btn-course.purple {
    background: linear-gradient(135deg, var(--purple), #8B5CF6);
    color: white;
}

.btn-course.orange {
    background: linear-gradient(135deg

, var(--orange), #FB923C);
    color: white;
}

.btn-course.blue {
    background: linear-gradient(135deg, var(--blue), #60A5FA);
    color: white;
}

/* Resources Section */
.resources {
    padding: 5rem 0;
    background: var(--light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-10px);
}

.resource-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.btn-resource {
    background: linear-gradient(135deg, var(--purpl

e), var(--blue));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--purple) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-link.instagram {
    background: linear-gradient(135deg, #E4405F, #F77737);
}

.social-link.facebook {
    background: #1877F2;
}

.socia

l-link.twitter {
    background: #1DA1F2;
}

.social-link.linkedin {
    background: #0A66C2;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.3);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-content {


        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .courses-grid,
    .resources-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}