/*=========================================
Google Font
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f8fbff;
    color:#1f2937;
    overflow-x:hidden;
    line-height:1.7;

}

a{
    text-decoration:none;
    transition:.3s;
}

img{
    max-width:100%;
    display:block;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

section{
    position:relative;
}

.container{

    max-width:1320px;

}

/*=========================================
Typography
=========================================*/

.section-tag{

    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#eaf2ff;
    color:#2563eb;
    font-weight:600;
    font-size:14px;

}

.section-title{

    font-size:42px;
    font-weight:700;
    color:#0f172a;
    margin-top:15px;

}

.section-subtitle{

    max-width:650px;
    margin:15px auto 0;
    color:#6b7280;

}

/*=========================================
Navbar
=========================================*/

.navbar{

    background:#fff;
    box-shadow:0 8px 30px rgba(0,0,0,.05);

}

.logo-title{

    color:#2563eb;
    font-size:28px;
    font-weight:700;
    line-height:1;

}

.site-logo{

    width:70px;
    height:70px;
    object-fit:cover;

}

.site-logo-icon{

    width:48px;
    height:48px;

    border-radius:12px;
    background:#2563eb;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    flex-shrink:0;

}

.navbar-brand small{

    color:#6b7280;
    font-size:12px;

}

.navbar-nav{

    gap:18px;

}

.navbar-nav .nav-link{

    color:#1f2937;
    font-weight:500;
    position:relative;
    padding:10px 5px;

}

.navbar-nav .nav-link:hover{

    color:#2563eb;

}

.navbar-nav .nav-link.active{

    color:#2563eb;

}

.navbar-nav .nav-link.active::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:3px;
    border-radius:20px;
    background:#2563eb;

}

.icon-btn{

    width:44px;
    height:44px;
    border-radius:50%;
    background:#f4f7fc;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1f2937;
    font-size:20px;

}

.icon-btn:hover{

    background:#2563eb;
    color:#fff;

}

.cart-count{

    position:absolute;
    top:-4px;
    right:-4px;

    width:20px;
    height:20px;

    border-radius:50%;
    background:#2563eb;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:11px;
    font-weight:600;

}

/*=========================================
Buttons
=========================================*/

.btn{

    border-radius:10px;
    padding:12px 28px;
    font-weight:600;
    transition:.35s;

}

.btn-primary{

    background:#2563eb;
    border-color:#2563eb;

}

.btn-primary:hover{

    background:#1d4ed8;
    border-color:#1d4ed8;
    transform:translateY(-2px);

}

.btn-outline-primary{

    border:2px solid #2563eb;
    color:#2563eb;

}

.btn-outline-primary:hover{

    background:#2563eb;
    color:#fff;

}

.hero-btn{

    margin-top:45px;
    padding:16px 35px;

}

/*=========================================
Hero Section
=========================================*/

.hero-section{

    padding:90px 0;
    background:linear-gradient(135deg,#eef5ff 0%,#ffffff 100%);
    overflow:hidden;

}

.hero-section::before{

    content:"";
    position:absolute;
    width:600px;
    height:600px;
    right:-200px;
    top:-150px;

    border-radius:50%;

    background:rgba(37,99,235,.05);

}

.hero-tag{

    display:inline-block;
    background:#eaf2ff;
    color:#2563eb;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

}

.hero-title{

    font-size:68px;
    line-height:1.1;
    font-weight:800;
    color:#111827;

    margin:30px 0;

}

.hero-title span{

    color:#2563eb;

}

.hero-text{

    color:#6b7280;
    font-size:20px;
    max-width:560px;

}

/*=========================================
Hero Features
=========================================*/

.hero-features{

    margin-top:45px;
    margin-bottom:40px;

}

.feature-box{

    text-align:center;

}

.feature-box i{

    width:65px;
    height:65px;

    border-radius:50%;

    background:#ffffff;
    color:#2563eb;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto;

    font-size:28px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.feature-box h6{

    margin-top:18px;
    font-size:15px;
    font-weight:600;
    line-height:1.5;

}

/*=========================================
Hero Image
=========================================*/

.hero-image{

    max-width:500px;

    animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

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

@media(max-width:991px){

.hero-section{

    padding:70px 0;

}

.hero-title{

    font-size:48px;

}

.hero-text{

    font-size:17px;

}

.hero-image{

    margin-top:50px;

}

}

@media(max-width:576px){

.hero-title{

    font-size:38px;

}

.hero-text{

    font-size:16px;

}

.hero-btn{

    width:100%;

}

.feature-box{

    margin-bottom:25px;

}

.site-logo{

    width:55px;
    height:55px;

}

.site-logo-icon{

    width:40px;
    height:40px;
    font-size:18px;

}

.logo-title{

    font-size:22px;

}

}
/*======================================
Latest PDF Section
======================================*/

.latest-pdfs-section{

    padding:90px 0;
    background:#f8fbff;

}

.pdf-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
    display:flex;
    flex-direction:column;

}

.pdf-card:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.pdf-image{

    width:100%;
    height:280px;
    object-fit:cover;

}

.pdf-title{

    font-size:17px;
    font-weight:600;
    line-height:1.5;
    min-height:52px;
    margin-bottom:10px;

}

.rating{

    color:#f59e0b;
    font-size:14px;
    margin-bottom:12px;

}

.rating span{

    color:#6b7280;
    margin-left:5px;

}

.price{

    color:#2563eb;
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;

}

.pdf-card .btn{

    margin-top:auto;

}

.pdf-title a{

    color:inherit;
    text-decoration:none;

}

.pagination .page-link{

    color:#2563eb;
    border-radius:8px;
    margin:0 4px;
    border:1px solid #e5e7eb;

}

.pagination .page-item.active .page-link{

    background-color:#2563eb;
    border-color:#2563eb;
    color:#fff;

}

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

.cta-section{

    padding:90px 0;

}

.cta-box{

    background:linear-gradient(135deg,#2563eb,#4f8cff);
    border-radius:30px;
    padding:60px;
    overflow:hidden;
    position:relative;
    color:#fff;

}

.cta-box::before{

    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-120px;
    right:-80px;

}

.cta-image{

    border-radius:20px;
    animation:floatImage 5s ease-in-out infinite;

}

.cta-title{

    font-size:42px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;

}

.cta-text{

    color:rgba(255,255,255,.9);
    font-size:18px;
    margin-bottom:30px;

}

.cta-section .btn{

    background:#fff;
    color:#2563eb;
    border:none;

}

.cta-section .btn:hover{

    background:#f5f5f5;
    color:#2563eb;

}

/*======================================
Footer
======================================*/

.footer-section{

    background:#111827;
    color:#d1d5db;
    padding:80px 0 30px;

}

.footer-section h5{

    color:#fff;
    margin-bottom:25px;
    font-weight:600;

}

.footer-logo small{

    color:#9ca3af;

}

.footer-links{

    padding:0;
    margin:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#d1d5db;

}

.footer-links a:hover{

    color:#fff;
    padding-left:5px;

}

/*======================================
Newsletter
======================================*/

.newsletter-form .form-control{

    border:none;
    height:55px;
    border-radius:10px 0 0 10px;

}

.newsletter-form .btn{

    border-radius:0 10px 10px 0;
    padding:0 25px;

}

/*======================================
Social Icons
======================================*/

.social-icons{

    display:flex;
    gap:12px;
    margin-top:25px;

}

.social-icons a{

    width:45px;
    height:45px;

    border-radius:50%;

    background:#1f2937;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;

}

.social-icons a:hover{

    background:#2563eb;
    transform:translateY(-4px);

}

/*======================================
Footer Bottom
======================================*/

.footer-section hr{

    margin:60px 0 30px;
    border-color:rgba(255,255,255,.1);

}

.copyright{

    margin:0;
    color:#9ca3af;

}

.payment-icon{

    display:inline-block;
    max-height:35px;
    margin-left:8px;

}

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

@media (max-width:1199px){

    .cta-box{

        padding:45px;

    }

    .cta-title{

        font-size:34px;

    }

}

@media (max-width:991px){

    .latest-pdfs-section{

        padding:70px 0;

    }

    .cta-section{

        padding:70px 0;

    }

    .cta-box{

        text-align:center;
        padding:45px 30px;

    }

    .cta-image{

        margin-bottom:30px;

    }

    .footer-section{

        text-align:center;

    }

    .social-icons{

        justify-content:center;

    }

    .payment-icon{

        margin:25px 4px 0;

    }

}

@media (max-width:767px){

    .section-title{

        font-size:32px;

    }

    .pdf-image{

        height:240px;

    }

    .cta-title{

        font-size:28px;

    }

    .cta-text{

        font-size:16px;

    }

}

@media (max-width:575px){

    .latest-pdfs-section{

        padding:60px 0;

    }

    .pdf-card{

        margin-bottom:20px;

    }

    .pdf-image{

        height:220px;

    }

    .cta-box{

        padding:35px 20px;

        border-radius:20px;

    }

    .cta-title{

        font-size:24px;

    }

    .newsletter-form .input-group{

        flex-direction:column;

    }

    .newsletter-form .form-control{

        border-radius:10px;
        margin-bottom:12px;

    }

    .newsletter-form .btn{

        width:100%;
        border-radius:10px;

    }

}