/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

.hero{
    position:relative;
    height: auto;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px 20px 130px 20px;
    background:linear-gradient(135deg,#e6d5ff,#d7e3ff);
    overflow:hidden;
}

.hero-container{
    max-width:1000px;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    padding:12px 25px;
    border-radius:50px;
    background:#ffffff;
    color:#365569;
    font-size:15px;
    font-weight:500;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    margin-bottom:40px;
    box-shadow:0 5px 20px rgba(91,92,240,0.15);
    animation:pulseBadge 2s infinite;
}

@keyframes pulseBadge{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.04);
    }
    100%{
        transform:scale(1);
    }
}
.hero h1{
    font-size:3rem;
    font-weight:800;
    line-height:1.15;
    color:#222;
    margin-bottom:25px;
   
}

.hero h1 span{
    background:linear-gradient(90deg,#5b5cf0,#ff4da6);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    font-size:1rem;
    color:#444;
    line-height:1.8;
    max-width:800px;
    margin:auto;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:10px 30px;
    border-radius:12px;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    color:#fff;
    background:linear-gradient(90deg,#5b5cf0,#ff4da6);
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    background:#fff;
    color:#222;
    border:1px solid #eee;
}

.btn-secondary:hover{
    transform:translateY(-3px);
}

.wave{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    line-height:0;
}

.wave svg{
    width:100%;
    height:180px;
}

@media(max-width:768px){

    .hero h1{
        font-size:1.5rem;
        margin-bottom: 15px;
        margin-top: 10px;
    }

    .hero p{
        font-size: 11px;  
        margin-bottom:20px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:320px;
        font-size: 14px;
    }

    .hero-badge{
    display:inline-block;
    padding:6px 9px;
    border-radius:50px;
    background:#ffffff;
    color:#666;
    font-size:10px;
    font-weight:500;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    margin-bottom:10px;
}
}




/* =========================
   MERN NOTES SECTION
========================= */

.mern-notes-section{
    padding:10px 8%;
    background:#fff;
}

.mern-notes-section .container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.content-side{
    flex:1;
    max-width:600px;
}

.content-side h2{
    font-size:38px;
    font-weight:800;
    line-height:1.1;
    color:#222;
    margin-bottom:30px;
}

.content-side h2 span{
    background:linear-gradient(90deg,#5b5cf0,#e056c2);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.content-side p{
    font-size:18px;
    line-height:1.5;
    color:#555;
    margin-bottom:30px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:40px;
}

.feature-card{
    display:flex;
    align-items:center;
    gap:15px;
    padding:10px 15px;
    background:#ebe5ff;
    border-radius:14px;
}

.feature-card span{
    font-size:20px;
}

.feature-card h4{
    font-size:15px;
    font-weight:500;
    color:#444;
    line-height:1.2;
}

.main-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:380px;
    height:72px;
    background:#fff;
    color:#6b2ff7;
    text-decoration:none;
    font-size:19px;
    font-weight:700;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    transition:.3s;
}

.main-btn:hover{
    transform:translateY(-3px);
}

.image-side{
    flex:1;
    display:flex;
    justify-content:center;
}

.image-side img{
    width:120%;
    max-width:750px; /* same large image area as screenshot */
    height:auto;
    display:block;
}

/* =========================
   Responsive
========================= */

@media(max-width:1100px){

    .mern-notes-section .container{
        flex-direction:column;
        text-align:center;
        
    }

    .content-side{
        max-width:100%;
    }

    .content-side h2{
        font-size:50px;
    }

    .content-side p{
        font-size:22px;
    }

    .main-btn{
        min-width:300px;
        font-size:22px;
    }
}

@media(max-width:768px){

    .content-side h2{
        font-size:28px;
    }

    .content-side p{
        font-size:14px;
    }

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

    .feature-card h4{
        font-size:14px;
    }

    .main-btn{
        width:100%;
        min-width:auto;
        font-size:18px;
        height:60px;
    }
  
    .image-side img{
    width:110%;
   
    
}
.feature-card{
    gap:0px;
    
}
}





/* both bundle */
.section-heading{
    text-align:center;
    margin-bottom:45px;
}

.section-heading h2{
    font-size:38px;
    font-weight:700;
    color:#5b5cf0; /* Blue */
    margin-bottom:1px;
    line-height:1.2;
}

.section-heading p{
    font-size:16px;
    color:#666;
    max-width:700px;
    margin:0 auto;
    line-height:1.6;
}

@media (max-width:768px){

    .section-heading h2{
        font-size:29px;
    }

    .section-heading p{
        font-size:12px;
    }

}



.notes-bundles{
    padding:80px 20px;
    
}

.bundle-container{
    max-width:1300px;
    margin:auto;
    display:flex;
    gap:30px;
    justify-content:center;
    align-items:stretch;
    flex-wrap:wrap;
}

.bundle-card{
    width:600px;
    background:#fff;
    border-radius:24px;
    padding:25px;
    border:1px solid #ece8ff;
    box-shadow:0 10px 35px rgba(92,92,240,.08);
    transition:.3s;
}

.bundle-card:hover{
    transform:translateY(-8px);
}

.bundle-header{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
}

.bundle-header img{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:16px;
    background:#eef2ff;
}

.bundle-title h3{
    font-size:28px;
    line-height:1.2;
    font-weight:700;
  background:linear-gradient(90deg,#5b5cf0,#ff4da6);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.bundle-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:25px;
}

.bundle-tags span{
    padding:10px 18px;
    border-radius:12px;
    background:#f1ecff;
    color:#5b5cf0;
    font-weight:600;
    font-size:15px;
}

.bundle-feature{
    width:100%;
    padding:18px 20px;
    margin-bottom:15px;
    border-radius:14px;
    background:#f7f3ff;
    font-size:18px;
    font-weight:600;
    color:#333;
}

.bundle-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:25px;
    width:100%;
    height:60px;
    border-radius:16px;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(90deg,#5b5cf0,#d94fc0);
    transition:.3s;
}

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

@media(max-width:1100px){

    .bundle-card{
        width:100%;
        max-width:600px;
    }

    .bundle-title h3{
        font-size:28px;
    }
}

@media(max-width:600px){

    .section-heading{
    text-align:center;
    margin-bottom:25px;
}

    .bundle-header{
        flex-direction:column;
        text-align:center;
        margin-bottom:15px;
    }
  
    .bundle-header img{
        width:110px;
        height:110px;
    }

    .bundle-title h3{
        font-size:20px;
    }
    .bundle-tags{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin-bottom:20px;
}

.bundle-tags span{
    padding:6px 10px;
    border-radius:12px;
    background:#f1ecff;
    color:#5b5cf0;
    font-weight:600;
    font-size:12px;
}

.bundle-feature{
    width:100%;
    padding:7px 10px;
    margin-bottom:15px;
    border-radius:14px;
    background:#f7f3ff;
    font-size:13px;
    font-weight:600;
    color:#333;
}

.bundle-btn{
   
    margin-top:25px;
    width:100%;
    height:45px;
    border-radius:16px;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(90deg,#5b5cf0,#d94fc0);
    transition:.3s;
}

    
}






/* what's include bundle */

        .section-wrapper {
            max-width: 1200px;
            margin: auto;
            height: auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding: 20px;
        }

        /* Card */
        .card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 15px;
            background: #fff;
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: 0.3s ease;
            animation: fadeUp 0.6s ease forwards;
            opacity: 0;
        }

        .card:nth-child(1) {
            animation-delay: 0.1s
        }

        .card:nth-child(2) {
            animation-delay: 0.2s
        }

        .card:nth-child(3) {
            animation-delay: 0.3s
        }

        .card:nth-child(4) {
            animation-delay: 0.4s
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }

        /* Image */
        .card img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Text */
        .card h4 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }

        /* Button */
        .card a {
            margin-top: 5px;
            text-decoration: none;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            transition: 0.3s;
        }

        .card a:hover {
            background: #1e40af;
            transform: translateY(-2px);
        }

        /* Animation */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Tablet */
        @media(max-width:1024px) {
            .section-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile */
        @media(max-width:600px) {
            .section-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }

            .card img {
                width: 120px;
                height: 120px;
            }
        }
