/*==================================================
                GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Gurmukhi:wght@300;400;500;600;700;800&display=swap');

/*==================================================
                RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Noto Sans Gurmukhi',sans-serif;
    background:#F8FAFC;
    color:#4B5563;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    border:none;
    background:none;
    cursor:pointer;
}

/*==================================================
                VARIABLES
==================================================*/

:root{

    --primary:#0F3D68;
    --secondary:#C79A32;

    --heading:#12395E;
    --text:#666666;

    --white:#ffffff;
    --light:#F8FAFC;

    --border:#E8EDF2;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s;

}

/*==================================================
                COMMON
==================================================*/

.container{

    width:min(90%,1240px);

    margin:auto;

}

section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 60px;

}

.section-title span{

    display:inline-block;

    color:var(--secondary);

    font-weight:700;

    margin-bottom:18px;

    font-size:18px;

}

.section-title h2{

    font-size:48px;

    color:var(--heading);

    line-height:1.2;

    margin-bottom:20px;

}

.section-title p{

    font-size:18px;

    color:var(--text);

    line-height:1.8;

}

/*==================================================
                BUTTONS
==================================================*/

.buy-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 30px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.buy-btn:hover{

    background:var(--secondary);

}

/*==================================================
                TOP BAR
==================================================*/

.topbar{

    background:var(--primary);

    color:#fff;

    padding:12px 0;

}

.topbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.topbar p{

    font-size:14px;

}

.social{

    display:flex;

    align-items:center;

    gap:12px;

}

.social a{

    width:38px;

    height:38px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    transition:.35s;

}

.social a:hover{

    background:var(--secondary);

}

/*==================================================
                HEADER
==================================================*/

header{

    position:sticky;

    top:0;

    background:#fff;

    z-index:999;

    box-shadow:0 5px 18px rgba(0,0,0,.05);

}

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:90px;

}

/*==================================================
                LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo img{

    width:65px;

}

.logo h2{

    font-size:26px;

    color:var(--heading);

}

/*==================================================
                MENU
==================================================*/

.menu{

    display:flex;

    align-items:center;

    gap:30px;

}

.menu li{

    position:relative;

}

.menu a{

    font-weight:600;

    transition:.35s;

}

.menu a:hover,

.menu .active{

    color:var(--secondary);

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.35s;

}

.menu a:hover::after,

.menu .active::after{

    width:100%;

}

/*==================================================
            MOBILE MENU
==================================================*/

.mobile-menu{

    display:none;

    font-size:28px;

    color:var(--primary);

    cursor:pointer;

}

/*==================================================
                TABLET
==================================================*/

@media(max-width:992px){

.menu{

gap:20px;

}

.logo h2{

font-size:22px;

}

.buy-btn{

padding:12px 22px;

}

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:768px){

.topbar{

display:none;

}

.container{

width:92%;

}

nav{

min-height:75px;

}

.logo img{

width:48px;

}

.logo h2{

font-size:18px;

}

.buy-btn{

display:none;

}

.mobile-menu{

display:block;

}

.menu{

display:none;

position:absolute;

top:75px;

left:0;

width:100%;

background:#fff;

flex-direction:column;

padding:30px;

gap:20px;

box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.menu.show{

display:flex;

}

.section-title h2{

font-size:34px;

}

.section-title p{

font-size:16px;

}

}
/*==========================================
            LEAVE REVIEW
==========================================*/

.leave-review{

    padding:80px 20px;
    text-align:center;
    background:#ffffff;
    border-radius:20px;
    margin:80px auto;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.leave-review h2{

    font-size:36px;
    color:var(--heading);
    margin-bottom:18px;

}

.leave-review p{

    max-width:700px;
    margin:0 auto 30px;
    color:var(--text);
    font-size:18px;
    line-height:1.8;

}

.leave-review .primary-btn{

    padding:16px 35px;
    border-radius:50px;

}
/*==================================================
                REVIEW LIGHTBOX
==================================================*/

.review-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.88);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

    padding:40px;

}

.review-modal.active{

    opacity:1;

    visibility:visible;

}

.review-content{

    position:relative;

    max-width:900px;

    width:100%;

    max-height:90vh;

    display:flex;

    justify-content:center;

    align-items:center;

}

.review-content img{

    max-width:100%;

    max-height:90vh;

    border-radius:18px;

    background:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

    animation:zoomIn .3s ease;

}

/*==================================================
                CLOSE BUTTON
==================================================*/

.close-review{

    position:absolute;

    top:-18px;

    right:-18px;

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:#ffffff;

    color:#12395E;

    font-size:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

}

.close-review:hover{

    background:#C79A32;

    color:#fff;

    transform:rotate(90deg);

}

/*==================================================
                ANIMATION
==================================================*/

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.85);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:768px){

.review-modal{

padding:15px;

}

.review-content{

max-width:100%;

}

.review-content img{

max-height:80vh;

border-radius:12px;

}

.close-review{

width:42px;

height:42px;

font-size:18px;

top:-10px;

right:-10px;

}

}
.review-image{

    width:100%;

    display:block;

    cursor:pointer;

    border-radius:20px;

    transition:.35s;

}

.review-image:hover{

    transform:scale(1.03);

}
/*==================================================
                REVIEW SECTION
==================================================*/

.reader-gallery{

    padding:90px 0;

    background:#F8FAFC;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:50px;

}

.gallery-item{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    cursor:pointer;

}

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.gallery-item img{

    width:100%;

    display:block;

}

.review-note{

    margin-top:45px;

    padding:20px;

    background:#fff;

    border-radius:15px;

    text-align:center;

    font-weight:600;

    color:#12395E;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.review-note i{

    color:#27AE60;

    margin-right:8px;

}

@media(max-width:768px){

.gallery-grid{

grid-template-columns:1fr;

gap:20px;

}

}
@media (max-width:768px){

.menu{
    display:none;
}

.menu.show{
    display:flex;
}

}


/*==================================================
                    FOOTER
==================================================*/

footer{

    background:#0B2F4F;

    color:#fff;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer-grid p{

    color:#d8e0e8;

    line-height:1.9;

}

.footer-grid h3{

    margin-bottom:22px;

    font-size:22px;

}

.footer-grid ul li{

    margin-bottom:15px;

}

.footer-grid ul li a{

    color:#d8e0e8;

    transition:.3s;

}

.footer-grid ul li a:hover{

    color:#fff;

    padding-left:6px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--secondary);

}

footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.15);

    margin:45px 0 25px;

}

.copyright{

    text-align:center;

    color:#d8e0e8;

    font-size:15px;

}

/*==================================================
            FLOATING BUTTONS
==================================================*/

.whatsapp-btn{

    position:fixed;

    right:22px;

    bottom:95px;

    width:58px;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    font-size:28px;

    text-decoration:none;

    box-shadow:0 12px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.35s;

}

.whatsapp-btn:hover{

    transform:scale(1.08);

}

#scrollTop{

    position: relative;;

    right:22px;

    bottom:25px;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:22px;

    cursor:pointer;

    box-shadow:0 12px 25px rgba(0,0,0,.20);

    transition:.35s;

    z-index:999;

}

#scrollTop:hover{

    background:var(--secondary);

    transform:translateY(-5px);

}

/*==================================================
                TABLET
==================================================*/

@media(max-width:992px){

.explore-grid{

    grid-template-columns:repeat(2,1fr);

}

.contact-grid{

    grid-template-columns:repeat(2,1fr);

}

.footer-grid{

    grid-template-columns:1fr 1fr;

    gap:40px;

}

.footer-grid>div:first-child{

    grid-column:1/-1;

}

}
@media (max-width:768px){

.menu{
    display:none;
}

.menu.show{
    display:flex;
}

}