/* ===========================
   RESET
=========================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

body{

    font-family:'Poppins',sans-serif;

    background:#f6f9fc;

    color:#1f2937;

}

.web-page{

    width:92%;

    max-width:1400px;

    margin:35px auto;

}

/* ===========================
   WEB HERO
=========================== */

.web-hero{

    position:relative;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

    overflow:hidden;

    padding:55px;

    border-radius:30px;

    background:linear-gradient(135deg,#0f172a,#1d4ed8,#06b6d4);

    box-shadow:0 20px 45px rgba(30,64,175,.25);

}

/* Background Glow */

.web-hero::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-170px;

    right:-120px;

}

/* ===========================
   BACK BUTTON
=========================== */

.back-btn{

    position:absolute;

    top:15px;

    left:15px;

    width:40px;

    height:40px;

    border:none;

    border-radius:15px;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:18px;

    cursor:pointer;

    transition:.35s;

    z-index:10;

}

.back-btn:hover{

    background:#fff;

    color:#2563eb;

    transform:translateY(-3px);

}

/* ===========================
   LEFT CONTENT
=========================== */

.web-hero-content{

    width:55%;

    position:relative;

    z-index:2;

}

.hero-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:30px;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:13px;

    font-weight:600;

    backdrop-filter:blur(10px);

}

.web-hero-content h1{

    margin-top:20px;

    color:#fff;

    font-size:48px;

    line-height:1.2;

}

.web-hero-content p{

    margin-top:18px;

    color:rgba(255,255,255,.90);

    font-size:16px;

    line-height:1.8;

}

/* ===========================
   HERO STATS
=========================== */

.hero-stats{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:25px;

}

.hero-stats span{

    padding:10px 18px;

    border-radius:14px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    color:#fff;

    font-size:14px;

    backdrop-filter:blur(10px);

}

/* ===========================
   BUTTONS
=========================== */

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:30px;

}

.start-btn,

.preview-btn{

    padding:15px 28px;

    border:none;

    border-radius:14px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.start-btn{

    background:#fff;

    color:#2563eb;

}

.start-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(0,0,0,.18);

}

.preview-btn{

    background:rgba(255,255,255,.14);

    color:#fff;

    border:1px solid rgba(255,255,255,.20);

}

.preview-btn:hover{

    background:rgba(255,255,255,.22);

}

/* ===========================
   HERO IMAGE
=========================== */

.web-hero-image{

    width:45%;

    position:relative;

    z-index:2;

}

.web-hero-image img{

    width:100%;

    max-width:430px;

    display:block;

    margin:auto;

    filter:drop-shadow(0 20px 35px rgba(0,0,0,.30));

    animation:webFloat 4.5s ease-in-out infinite;

}

@keyframes webFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ===========================
   WEB TECHNOLOGIES
=========================== */

.technologies-section{

    margin-top:70px;

}

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:28px;

}

.section-header h2{

    font-size:34px;

    font-weight:700;

    color:#1f2937;

}

.section-header a{

    text-decoration:none;

    color:#2563eb;

    font-weight:600;

    transition:.3s;

}

.section-header a:hover{

    color:#1d4ed8;

}

/* Grid */

.technologies-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

/* Card */

.technology-card{

    background:#fff;

    border:1px solid #e8edf7;

    border-radius:22px;

    padding:32px;

    text-align:center;

    text-decoration:none;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.technology-card:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:0 18px 40px rgba(37,99,235,.15);

}

/* Icon */

.technology-icon{

    width:82px;

    height:82px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    color:#fff;

    transition:.35s;

}

.technology-card:hover .technology-icon{

    transform:scale(1.12) rotate(8deg);

}

/* Colors */

.html{

    background:linear-gradient(135deg,#ff6a00,#ff4500);

}

.css{

    background:linear-gradient(135deg,#2563eb,#06b6d4);

}

.js{

    background:linear-gradient(135deg,#facc15,#f59e0b);

}

.react{

    background:linear-gradient(135deg,#06b6d4,#3b82f6);

}

.node{

    background:linear-gradient(135deg,#16a34a,#22c55e);

}

.github{

    background:linear-gradient(135deg,#111827,#334155);

}

/* Text */

.technology-card h3{

    font-size:24px;

    color:#1f2937;

    margin-bottom:10px;

}

.technology-card p{

    font-size:14px;

    color:#64748b;

    line-height:1.6;

}




/* ===========================
   FULL STACK ROADMAP
=========================== */

.roadmap-section{

    margin-top:70px;

}

.roadmap-container{

    margin-top:30px;

    background:#fff;

    border:1px solid #e8edf7;

    border-radius:24px;

    padding:35px 25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    overflow-x:auto;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    scrollbar-width:none;

}

.roadmap-container::-webkit-scrollbar{

    display:none;

}

/* Step */

.roadmap-step{

    min-width:110px;

    text-align:center;

    position:relative;

    z-index:2;

}

.step-icon{

    width:72px;

    height:72px;

    margin:0 auto 15px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    color:#fff;

    transition:.35s;

}

.roadmap-step:hover .step-icon{

    transform:translateY(-6px) scale(1.08);

}

.roadmap-step h3{

    font-size:17px;

    color:#1f2937;

    margin-bottom:6px;

}

.roadmap-step p{

    font-size:13px;

    color:#64748b;

}

/* Line */

.roadmap-line{

    flex:1;

    height:6px;

    border-radius:30px;

    margin:0 10px;

    background:linear-gradient(90deg,#06b6d4,#2563eb);

    position:relative;

    overflow:hidden;

}

.roadmap-line::after{

    content:"";

    position:absolute;

    top:0;

    left:-35%;

    width:35%;

    height:100%;

    background:rgba(255,255,255,.6);

    transform:skewX(-20deg);

    animation:roadGlow 2.8s linear infinite;

}

@keyframes roadGlow{

    from{

        left:-35%;

    }

    to{

        left:120%;

    }

}

/* Colors */

.html-bg{

    background:linear-gradient(135deg,#ff6a00,#ff4500);

}

.css-bg{

    background:linear-gradient(135deg,#2563eb,#06b6d4);

}

.js-bg{

    background:linear-gradient(135deg,#facc15,#f59e0b);

}

.github-bg{

    background:linear-gradient(135deg,#111827,#374151);

}

.react-bg{

    background:linear-gradient(135deg,#06b6d4,#3b82f6);

}

.node-bg{

    background:linear-gradient(135deg,#16a34a,#22c55e);

}

.express-bg{

    background:linear-gradient(135deg,#64748b,#334155);

}

.mongo-bg{

    background:linear-gradient(135deg,#10b981,#059669);

}

.deploy-bg{

    background:linear-gradient(135deg,#7c3aed,#4f46e5);

}



/* ===========================
   LEARNING MODULES
=========================== */

.modules-section{

    margin-top:70px;

}

.modules-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

    margin-top:30px;

}

/* Card */

.module-card{

    background:#fff;

    border:1px solid #e8edf7;

    border-radius:22px;

    padding:28px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.35s;

}

.module-card:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:0 20px 40px rgba(37,99,235,.15);

}

/* Top */

.module-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.module-number{

    font-size:13px;

    font-weight:700;

    color:#2563eb;

    letter-spacing:.5px;

}

.module-status{

    padding:6px 12px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

}

.completed{

    background:#ecfdf5;

    color:#059669;

}

.progress{

    background:#eff6ff;

    color:#2563eb;

}

.locked{

    background:#f3f4f6;

    color:#6b7280;

}

/* Title */

.module-card h3{

    font-size:23px;

    color:#1f2937;

    margin-bottom:12px;

}

.module-card p{

    font-size:14px;

    line-height:1.7;

    color:#64748b;

}

/* Info */

.module-info{

    display:flex;

    justify-content:space-between;

    margin:24px 0;

    font-size:14px;

    color:#475569;

}

.module-info span{

    display:flex;

    align-items:center;

    gap:7px;

}

.module-info i{

    color:#2563eb;

}

/* Button */

.module-btn{

    width:100%;

    height:48px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#0ea5e9,#2563eb);

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.module-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(37,99,235,.25);

}