/* ==========================================================
   WEB DEVELOPMENT PAGE
========================================================== */

/* HERO */

.web-hero{

    background:linear-gradient(135deg,#07131f,#10283d);

    color:#fff;

    padding:90px 20px;

}

.web-hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.hero-badge{

    display:inline-block;

    background:#16c47f;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:25px;

    font-size:14px;

    font-weight:bold;

}

.web-hero h1{

    font-size:58px;

    margin-bottom:25px;

    line-height:1.15;

}

.web-hero p{

    font-size:22px;

    line-height:1.8;

    color:#d7d7d7;

    margin-bottom:40px;

}

.web-hero img{

    width:100%;

    max-width:650px;

    display:block;

    margin:auto;

}


/* ==========================================================
   TECHNOLOGY GRID
========================================================== */

.technology-grid{

    padding:90px 20px;

    background:#f8fafc;

}

.technology-grid .container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

}

.technology-card{

    background:#fff;

    border-radius:14px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.technology-card:hover{

    transform:translateY(-8px);

}

.technology-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.technology-card h3{

    font-size:28px;

    padding:25px 25px 15px;

    color:#10283d;

}

.technology-card p{

    padding:0 25px 25px;

    color:#555;

    line-height:1.8;

}

.technology-card a{

    display:block;

    padding:0 25px 30px;

    text-decoration:none;

    color:#16c47f;

    font-weight:bold;

}


/* ==========================================================
   FEATURED TUTORIALS
========================================================== */

.featured-tutorials{

    padding:90px 20px;

}

.featured-tutorials h2{

    text-align:center;

    margin-bottom:20px;

}

.featured-intro{

    max-width:800px;

    margin:0 auto 60px;

    text-align:center;

    color:#666;

    font-size:18px;

}

.tutorial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}

.tutorial-card{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.tutorial-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.tutorial-card h3{

    padding:25px 25px 15px;

}

.tutorial-card p{

    padding:0 25px 20px;

    line-height:1.8;

}

.tutorial-card a{

    display:block;

    padding:0 25px 25px;

    color:#16c47f;

    font-weight:bold;

    text-decoration:none;

}


/* ==========================================================
   LEARNING PATH
========================================================== */

.learning-path{

    padding:90px 20px;

    background:#eef5fb;

}

.learning-path h2{

    text-align:center;

    margin-bottom:60px;

}

.path-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:30px;

}

.path-card{

    background:#fff;

    border-radius:12px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.path-number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#16c47f;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    font-weight:bold;

    margin:0 auto 25px;

}

.path-card h3{

    margin-bottom:20px;

}


/* ==========================================================
   TOOLS
========================================================== */

.dev-tools{

    padding:90px 20px;

}

.tools-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.tool-card{

    background:#fff;

    padding:35px;

    border-radius:12px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.tool-card:hover{

    transform:translateY(-6px);

}

.tool-icon{

    font-size:50px;

    margin-bottom:20px;

}

.tool-card h3{

    margin-bottom:15px;

}


/* ==========================================================
   CTA
========================================================== */

.web-cta{

    background:linear-gradient(135deg,#07131f,#10283d);

    color:#fff;

    text-align:center;

    padding:90px 20px;

}

.web-cta h2{

    font-size:46px;

    margin-bottom:20px;

}

.web-cta p{

    max-width:750px;

    margin:0 auto 40px;

    color:#ddd;

    font-size:20px;

}

.web-cta .btn-primary{

    display:inline-block;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:900px){

.web-hero-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.web-hero h1{

    font-size:42px;

}

.web-hero p{

    font-size:19px;

}

}

@media(max-width:768px){

.technology-grid .container{

    grid-template-columns:1fr;

}

.tutorial-grid{

    grid-template-columns:1fr;

}

.path-grid{

    grid-template-columns:1fr;

}

.tools-grid{

    grid-template-columns:1fr;

}

.web-cta h2{

    font-size:34px;

}

}
