/* ===========================
   Google Reset
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Poppins",sans-serif;
    /* border: 1px solid red; */
}

body{
    background:#edf3fb;
    display:flex;
    justify-content:center;
    padding:40px 20px;
}

.container{
    width:100%;
    max-width:470px;
}

.hero-card-bg img{
    /* position:absolute; */
    /* top:0;
    left:0; */
    width:100px;
    height:100px;
    z-index:-1;
}



/* ===========================
   HERO CARD
=========================== */

.hero-card{
    background:#ffffff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}


/* ===========================
   TOP BADGE
=========================== */

.top-badge{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid #ececec;
}

.company{
    font-size:18px;
    font-weight:700;
    color:#174b93;
}

.active-badge{
    background:#edf6ff;
    color:#174b93;
    font-size:12px;
    font-weight:600;
    padding:8px 15px;
    border-radius:50px;
}


/* ===========================
   HERO CONTENT
=========================== */

.hero-content{
    padding:35px 30px;
    text-align:center;
}

.hero-content h1{
    font-size:60px;
    line-height:1.05;
    font-weight:800;
    color:#173d72;
    margin-bottom:25px;
}

.hero-content p{
    color:#6a6a6a;
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}


/* ===========================
   TELEGRAM BUTTON
=========================== */

.telegram-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;

    width:100%;
    background:#2c84df;
    color:white;

    text-decoration:none;

    padding:22px;

    border-radius:20px;

    font-size:22px;
    font-weight:600;

    transition:.3s;
}

.telegram-btn:hover{

    background:#176ed1;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(44,132,223,.35);

}

.telegram-btn i{

    font-size:28px;

}


/* ===========================
   BOOKS
=========================== */

.books{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:35px 0;

}

.book{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.book img{

    width:100%;

    display:block;

    object-fit:cover;

    transition:.4s;

}

.book:hover img{

    transform:scale(1.05);

}
/* ===========================
   PROJECTS SECTION
=========================== */

.projects{

    margin-top:20px;

}

.projects h2{

    text-align:center;

    font-size:38px;

    color:#1b3e72;

    font-weight:700;

    margin-bottom:30px;

}


/* ===========================
   PROJECT CARD
=========================== */

.project-card{

    background:#fff;

    border:2px solid #ebebeb;

    border-radius:24px;

    padding:22px 24px;

    margin-bottom:18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.project-card:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(0,0,0,.12);

}


/* ===========================
   ACTIVE CARD
=========================== */

.project-card.active{

    border:3px solid #2f86df;

    background:#f4f9ff;

}


/* ===========================
   LEFT CONTENT
=========================== */

.project-card .left h3{

    font-size:25px;

    color:#1f3b68;

    margin-bottom:8px;

    font-weight:700;

}

.project-card .left p{

    font-size:18px;

    color:#757575;

}


/* ===========================
   RIGHT CONTENT
=========================== */

.project-card .right{

    text-align:right;

}

.project-card .right h3{

    color:#2f86df;

    font-size:34px;

    font-weight:700;

    margin-bottom:6px;

}

.project-card .right span{

    color:#777;

    font-size:17px;

}


/* ===========================
   CLICK EFFECT
=========================== */

.project-card:active{

    transform:scale(.98);

}

/* ===========================
   READY TO START
=========================== */

.cta{

    margin-top:40px;

    background:#1f3c68;

    padding:45px 30px;

    border-radius:28px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

}

.cta h2{

    color:#fff;

    font-size:42px;

    font-weight:700;

    margin-bottom:18px;

}

.cta p{

    color:#dbe5f2;

    font-size:19px;

    line-height:1.7;

    margin-bottom:35px;

}

.cta-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:14px;

    width:100%;

    background:#fff;

    color:#1f3c68;

    text-decoration:none;

    padding:20px;

    border-radius:18px;

    font-size:21px;

    font-weight:700;

    transition:.35s;

}

.cta-btn i{

    font-size:28px;

    color:#2AABEE;

}

.cta-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(255,255,255,.18);

}



/* ===========================
   FOOTER
=========================== */

footer{

    margin-top:35px;

    text-align:center;

    padding:25px 10px;

}

footer p{

    color:#666;

    font-size:15px;

    line-height:1.6;

}



/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:768px){

.hero-content h1{

    font-size:50px;

}

.hero-content p{

    font-size:18px;

}

.projects h2{

    font-size:32px;

}

.project-card{

    padding:18px;

}

.project-card .left h3{

    font-size:21px;

}

.project-card .left p{

    font-size:16px;

}

.project-card .right h3{

    font-size:30px;

}

.project-card .right span{

    font-size:15px;

}

.cta h2{

    font-size:34px;

}

.cta p{

    font-size:17px;

}

}



/* ===========================
   MOBILE
=========================== */

@media(max-width:480px){

.container{

    max-width:100%;

}

.top-badge{

    flex-direction:column;

    gap:12px;

}

.company{

    font-size:16px;

}

.hero-content{

    padding:30px 22px;

}

.hero-content h1{

    font-size:38px;

}

.hero-content p{

    font-size:16px;

}

.telegram-btn{

    font-size:18px;

    padding:18px;

}

.telegram-btn i{

    font-size:24px;

}

.books{

    grid-template-columns:1fr;

}

.project-card{

    flex-direction:column;

    gap:15px;

    text-align:center;

}

.project-card .right{

    text-align:center;

}

.project-card .left h3{

    font-size:20px;

}

.project-card .left p{

    font-size:15px;

}

.project-card .right h3{

    font-size:28px;

}

.project-card .right span{

    font-size:14px;

}

.cta{

    padding:35px 22px;

}

.cta h2{

    font-size:28px;

}

.cta p{

    font-size:15px;

}

.cta-btn{

    font-size:17px;

    padding:18px;

}

.cta-btn i{

    font-size:22px;

}

footer p{

    font-size:13px;

}
.hero-card-bg img{
    /* position:absolute; */
    /* top:0;
    left:0; */
    width:100px;
    height:100px;
    z-index:-1;
}

.hero-card-bg img{
    /* position:absolute; */
    /* top:0;
    left:0; */
    width:100px;
    height:100px;
   
}


}