/* ======================================================
            GULSHAN PUBLICATION
                VERSION 3.0
====================================================== */


/* ===========================
        GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');


/* ===========================
        RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


/* ===========================
        ROOT VARIABLES
=========================== */

:root{

    --black:#000000;
    --white:#ffffff;
    --gray:#6b6b6b;
    --light:#f8f8f8;
    --border:#e8e8e8;

    --radius:18px;

    --shadow:0 12px 35px rgba(0,0,0,.08);

    --transition:.35s ease;

}


/* ===========================
        HTML
=========================== */

html{

    scroll-behavior:smooth;

    overflow-x:hidden;

}


/* ===========================
        BODY
=========================== */

body{

    font-family:'Inter',sans-serif;

    background:var(--white);

    color:var(--black);

    overflow-x:hidden;

    line-height:1.7;

}


/* ===========================
        COMMON
=========================== */

section{

    width:100%;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    font-family:'Inter',sans-serif;

    cursor:pointer;

    background:none;

    border:none;

}


/* ===========================
        CONTAINER
=========================== */

.container{

    width:90%;

    max-width:1400px;

    margin:auto;

}


/* ===========================
        BOOK FILTER
=========================== */

.book-filter{

    width:100%;

    padding:80px 20px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

}


.filter-btn{

    padding:14px 28px;

    background:var(--white);

    border:1px solid var(--border);

    border-radius:50px;

    font-size:15px;

    font-weight:500;

    transition:var(--transition);

}


.filter-btn:hover{

    background:var(--black);

    color:var(--white);

}


.filter-btn.active{

    background:var(--black);

    color:var(--white);

}


/* ===========================
        SECTION HEADING
=========================== */

.section-heading{

    text-align:center;

    margin-bottom:90px;

}

.section-heading h2{

    font-size:58px;

    font-weight:700;

    letter-spacing:-2px;

    margin-bottom:20px;

}

.section-heading p{

    max-width:700px;

    margin:auto;

    color:var(--gray);

    font-size:18px;

    line-height:1.9;

}

/* ======================================================
                BOOK SECTION
====================================================== */

.book-section{

    padding:40px 0 120px;

}


/* ======================================================
                BOOK GRID
====================================================== */

.book-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:40px;

}


/* ======================================================
                BOOK CARD
====================================================== */

.book-card{

    background:var(--white);

    border:1px solid var(--border);

    border-radius:var(--radius);

    overflow:hidden;

    transition:var(--transition);

    box-shadow:0 0 0 rgba(0,0,0,0);

}

.book-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}


/* ======================================================
                BOOK IMAGE
====================================================== */

.book-card img{

    width:100%;

    height:380px;

    object-fit:cover;

    transition:.45s ease;

}

.book-card:hover img{

    transform:scale(1.04);

}


/* ======================================================
                BOOK INFO
====================================================== */

.book-info{

    padding:25px;

}

.book-info h3{

    font-size:24px;

    font-weight:700;

    margin-bottom:8px;

    line-height:1.4;

}

.book-category{

    color:var(--gray);

    font-size:15px;

    margin-bottom:18px;

}

.book-price{

    display:block;

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;

}


/* ======================================================
                BUTTON
====================================================== */

.book-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-size:15px;

    font-weight:600;

    transition:var(--transition);

}

.book-btn::after{

    content:"→";

    transition:var(--transition);

}

.book-btn:hover{

    letter-spacing:.5px;

}

.book-btn:hover::after{

    transform:translateX(6px);

}


/* ======================================================
                BOOK LABEL
====================================================== */

.book-card{

    position:relative;

}

.book-card::before{

    content:"NEW";

    position:absolute;

    top:18px;

    left:18px;

    background:#000;

    color:#fff;

    font-size:11px;

    font-weight:600;

    padding:7px 14px;

    border-radius:30px;

    letter-spacing:1px;

}

/* ======================================================
                    FOOTER
====================================================== */

footer{

    width:100%;

    background:#000;

    color:#fff;

    padding:90px 0 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:70px;

    width:90%;

    max-width:1400px;

    margin:auto;

}

.footer-brand h2{

    font-size:36px;

    margin-bottom:18px;

    font-weight:700;

    letter-spacing:-1px;

}

.footer-brand p{

    color:#bdbdbd;

    line-height:1.8;

    max-width:360px;

}

.footer-links h3,
.footer-contact h3{

    margin-bottom:22px;

    font-size:22px;

}

.footer-links{

    display:flex;

    flex-direction:column;

}

.footer-links a{

    color:#bdbdbd;

    margin-bottom:15px;

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

    padding-left:8px;

}

.footer-contact p{

    color:#bdbdbd;

    margin-bottom:12px;

}

.footer-bottom{

    width:90%;

    max-width:1400px;

    margin:60px auto 0;

    border-top:1px solid rgba(255,255,255,.15);

    padding-top:25px;

    text-align:center;

    color:#999;

}

.footer-bottom p{

    margin-bottom:8px;

}


/* ======================================================
                CUSTOM SCROLLBAR
====================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

    background:#000;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#333;

}


/* ======================================================
                TEXT SELECTION
====================================================== */

::selection{

    background:#000;

    color:#fff;

}


/* ======================================================
                RESPONSIVE
====================================================== */

@media(max-width:992px){

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-brand p{

        margin:auto;

    }

    .footer-links{

        align-items:center;

    }

}


@media(max-width:768px){

    .section-heading h2{

        font-size:42px;

    }

    .section-heading p{

        font-size:16px;

    }

    .book-grid{

        grid-template-columns:repeat(2,1fr);

    }

}


@media(max-width:600px){

    .book-grid{

        grid-template-columns:1fr;

    }

    .book-card img{

        height:340px;

    }

    .book-filter{

        gap:12px;

        padding:50px 20px;

    }

    .filter-btn{

        padding:10px 18px;

        font-size:14px;

    }

    .footer-brand h2{

        font-size:28px;

    }

}

/* ==========================
        ABOUT SECTION
========================== */

.about-gkp{

    padding:120px 0;

    background:#fafafa;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.about-card{

    background:#fff;

    border:1px solid #e8e8e8;

    border-radius:18px;

    padding:35px;

    transition:.35s;

}

.about-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.about-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.about-card p{

    color:#666;

    line-height:1.8;

}


/* ==========================
        CTA
========================== */

.cta{

    padding:120px 0;

    text-align:center;

}

.cta h2{

    font-size:52px;

    margin-bottom:20px;

}

.cta p{

    max-width:650px;

    margin:0 auto 40px;

    color:#666;

}

.cta-btn{

    display:inline-block;

    padding:16px 40px;

    background:#000;

    color:#fff;

    border-radius:40px;

}

/* ===========================
        LEADERSHIP SECTION
=========================== */

.leadership {
    width: 100%;
    padding: 120px 8%;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.section-title p {
    max-width: 650px;
    margin: auto;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}


/* Leader Grid */

.leader-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: auto;
}


/* Card */

.leader-card {
    background: #fff;
    border-radius: 28px;
    padding: 45px 30px;
    text-align: center;

    border: 1px solid #ededed;

    transition: .4s ease;

    overflow: hidden;
}

.leader-card:hover {

    transform: translateY(-10px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

}


/* Image */

.leader-card img {

    width: 150px;
    height: 150px;

    border-radius: 50%;

    object-fit: cover;

    margin-bottom: 28px;

    transition: .5s ease;

}

.leader-card:hover img{

    transform: scale(1.08);

}


/* Name */

.leader-card h3{

    font-size:1.5rem;

    color:#111;

    margin-bottom:8px;

    font-weight:600;

}


/* Position */

.leader-card span{

    display:inline-block;

    color:#555;

    font-size:.95rem;

    margin-bottom:22px;

    letter-spacing:.5px;

}


/* Description */

.leader-card p{

    color:#666;

    line-height:1.8;

    font-size:.98rem;

}


/* ===========================
      Responsive
=========================== */

@media(max-width:992px){

.section-title h2{

    font-size:2.5rem;

}

}


@media(max-width:768px){

.leadership{

    padding:90px 6%;

}

.section-title{

    margin-bottom:50px;

}

.section-title h2{

    font-size:2.1rem;

}

.section-title p{

    font-size:1rem;

}

.leader-card{

    padding:40px 25px;

}

.leader-card img{

    width:130px;
    height:130px;

}

}


@media(max-width:500px){

.leader-container{

    grid-template-columns:1fr;

}

}