
*{
    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;
    outline:none;
    background:none;
    cursor:pointer;

}

/*==================================================
                VARIABLES
==================================================*/

:root{

    --primary:#0F3D68;
    --secondary:#C79A32;

    --heading:#12395E;

    --text:#666666;

    --white:#ffffff;

    --light:#F7F9FC;

    --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:15px;

}

.section-title h2{

    font-size:46px;

    color:var(--heading);

    line-height:1.2;

    margin-bottom:18px;

}

.section-title p{

    font-size:18px;

    color:var(--text);

}

/*==================================================
                BUTTONS
==================================================*/

.primary-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:16px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

}

.primary-btn:hover{

    background:var(--secondary);

    transform:translateY(-3px);

}

.secondary-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:16px 34px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

}

.secondary-btn:hover{

    background:var(--primary);

    color:#fff;

}
/*==================================================
                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;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.12);

    transition:var(--transition);

}

.social a:hover{

    background:var(--secondary);

}

/*==================================================
                HEADER
==================================================*/

header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    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;

    height:90px;

}

/*==================================================
                LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo img{

    width:65px;

}

.logo h2{

    font-size:26px;

    color:var(--heading);

}

.logo span{

    color:#888;

    font-size:13px;

}

/*==================================================
                MENU
==================================================*/

.menu{

    display:flex;

    align-items:center;

    gap:30px;

}

.menu li{

    position:relative;

}

.menu a{

    font-weight:600;

    transition:var(--transition);

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:var(--transition);

}

.menu a:hover::after,

.menu .active::after{

    width:100%;

}

.menu a:hover{

    color:var(--secondary);

}

/*==================================================
                BUY BUTTON
==================================================*/

.buy-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:14px 30px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    transition:var(--transition);

}

.buy-btn:hover{

    background:var(--secondary);

}

/*==================================================
            MOBILE MENU ICON
==================================================*/

.mobile-menu{

    display:none;

    font-size:30px;

    color:var(--primary);

    cursor:pointer;

}

/*==================================================
                TABLET
==================================================*/

@media(max-width:992px){

.menu{

gap:20px;

}

.logo h2{

font-size:22px;

}

.buy-btn{

padding:12px 24px;

}

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:768px){

.topbar{

display:none;

}

.container{

width:92%;

}

nav{

height:75px;

}

.logo img{

width:48px;

}

.logo h2{

font-size:18px;

}

.logo span{

display:none;

}

.buy-btn{

display:none;

}

.mobile-menu{

display:block;

}

.menu{

position:absolute;

top:75px;

left:0;

width:100%;

background:#fff;

display:none;

flex-direction:column;

padding:35px 25px;

gap:22px;

box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.menu.show{

display:flex;

}

.menu li{

width:100%;

text-align:center;

}

.menu a{

display:block;

padding:10px 0;

}

section{

padding:70px 0;

}

.section-title{

margin-bottom:40px;

}

.section-title h2{

font-size:32px;

}

.section-title p{

font-size:16px;

}

.primary-btn,

.secondary-btn{

width:100%;

}

}

/*==================================================
            SMALL MOBILE
==================================================*/

@media(max-width:480px){

.logo h2{

font-size:16px;

}

.logo img{

width:42px;

}

.menu{

padding:30px 20px;

}

}
/*=========================================
                RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Noto Sans Gurmukhi',sans-serif;
    background:#FAFAFA;
    color:#333;
    overflow-x:hidden;

}

img{

    display:block;
    width:100%;

}

.container{

    width:90%;
    max-width:1300px;
    margin:auto;

}


/*=========================================
            GALLERY SECTION
=========================================*/

.gallery-section{

    padding:100px 0;

}


/*=========================================
            SECTION TITLE
=========================================*/

.section-title{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;

}

.section-title span{

    display:inline-block;

    padding:10px 24px;

    background:#FFF5DA;

    color:#C89D3D;

    border-radius:50px;

    font-size:15px;

    font-weight:700;

    margin-bottom:22px;

}

.section-title h2{

    font-size:58px;

    color:#12395B;

    font-weight:800;

    line-height:1.25;

    margin-bottom:25px;

}

.section-title p{

    font-size:20px;

    color:#666;

    line-height:1.9;

}


/*=========================================
            GALLERY GRID
=========================================*/

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}


/*=========================================
            IMAGES
=========================================*/

.gallery-grid img{

    width:100%;

    height:340px;

    object-fit:cover;

    border-radius:24px;

    cursor:pointer;

    transition:.4s ease;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gallery-grid img:hover{

    transform:translateY(-10px) scale(1.02);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}


/*=========================================
        FEATURED IMAGES
=========================================*/

.gallery-grid img:nth-child(1){

    height:460px;

}

.gallery-grid img:nth-child(2){

    height:460px;

}
.gallery-grid img:nth-child(3){

    height:460px;

}

.gallery-grid img:nth-child(4){

    height:460px;

}

.gallery-grid img:nth-child(5){

    height:460px;

}

.gallery-grid img:nth-child(6){

    height:460px;

}


/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-grid img{

height:300px;

}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(5),
.gallery-grid img:nth-child(6){

height:300px;

}

.section-title h2{

font-size:46px;

}

}

@media(max-width:768px){

.gallery-section{

padding:70px 0;

}

.gallery-grid{

grid-template-columns:1fr;

gap:20px;

}

.gallery-grid img,
.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(5),
.gallery-grid img:nth-child(6){

height:280px;

}

.section-title{

margin-bottom:50px;

}

.section-title h2{

font-size:36px;

}

.section-title p{

font-size:17px;

}

}

/*==================================================
                    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;
}

}