/*====================================================

THE BAGANWALA
STYLE SHEET
Version : 1.0

====================================================*/


/*=============================
RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#333;
    line-height:1.7;
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:.35s;

}

ul{

    list-style:none;

}

.container{

    width:90%;
    max-width:1400px;
    margin:auto;

}


/*=============================
COLORS
==============================*/

:root{

--primary:#C8A44D;

--secondary:#1B1B1B;

--white:#ffffff;

--light:#f8f8f8;

--grey:#777;

--border:#ececec;

--shadow:0 20px 45px rgba(0,0,0,.08);

}


/*=============================
BUTTONS
==============================*/

.btn-primary{

display:inline-block;

padding:15px 38px;

background:var(--primary);

color:#fff;

border-radius:40px;

font-weight:600;

letter-spacing:.5px;

}

.btn-primary:hover{

background:#b18e39;

transform:translateY(-3px);

box-shadow:0 12px 30px rgba(0,0,0,.18);

}



.btn-secondary{

display:inline-block;

padding:15px 38px;

border:2px solid #fff;

color:#fff;

border-radius:40px;

margin-left:15px;

}

.btn-secondary:hover{

background:#fff;

color:#111;

}



/*=============================*
* HEADER *
*==============================*/

header{
    position:relative;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    padding:10px 0;
    background:#fff;
    transition:.4s;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:75px;
    width:auto;
}

nav ul{
    display:flex;
    gap:35px;
}

nav ul li a{
    color:#222;
    font-size:15px;
    font-weight:500;
}

nav ul li a:hover{
    color:var(--primary);
}

.menu-icon{
    display:none;
    font-size:34px;
    color:#222;
    cursor:pointer;
}


/*=============================*
* HERO *
*==============================*/

.hero{
    position:relative;
    width:100%;
    overflow:hidden;
}

.hero-image{
    position:relative;
    display:block;
    width:100%;
    height:auto;
}

.overlay{
    display:none;
}

.hero-content{
    position:relative;
    width:90%;
    max-width:900px;
    margin:60px auto;
    text-align:center;
    color:#222;
}

.hero-content h4{
    font-size:22px;
    font-weight:400;
    letter-spacing:4px;
    color:var(--primary);
    margin-bottom:15px;
}

.hero-content h1{
    font-size:74px;
    font-weight:800;
    margin-bottom:25px;
    letter-spacing:2px;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:45px;
}

/*=============================
SCROLL ICON
==============================*/

.scroll-down{

position:absolute;

bottom:40px;

left:50%;

transform:translateX(-50%);

z-index:5;

}

.scroll-down span{

display:block;

width:28px;

height:48px;

border:2px solid #fff;

border-radius:30px;

position:relative;

}

.scroll-down span:before{

content:'';

position:absolute;

top:8px;

left:50%;

width:5px;

height:10px;

background:#fff;

transform:translateX(-50%);

border-radius:10px;

animation:scroll 2s infinite;

}

@keyframes scroll{

0%{

opacity:0;

top:8px;

}

50%{

opacity:1;

}

100%{

opacity:0;

top:24px;

}

}



/*=============================
INTRO
==============================*/

.intro{

padding:120px 0;

background:#fff;

}

.intro .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.intro-left img{

border-radius:18px;

box-shadow:var(--shadow);

}

.intro-right h5{

color:var(--primary);

font-size:18px;

letter-spacing:2px;

margin-bottom:12px;

}

.intro-right h2{

font-size:48px;

margin-bottom:30px;

color:#222;

}

.intro-right p{

font-size:18px;

color:#666;

margin-bottom:25px;

}

/*=========================================
SECTION TITLES
=========================================*/

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title h5{

color:var(--primary);

font-size:17px;

font-weight:600;

letter-spacing:3px;

margin-bottom:12px;

text-transform:uppercase;

}

.section-title h2{

font-size:46px;

font-weight:700;

color:#222;

margin-bottom:18px;

}

.section-title p{

width:70%;

margin:auto;

font-size:18px;

color:#666;

line-height:1.8;

}



/*=========================================
WHY THE BAGANWALA
=========================================*/

.why-section{

padding:120px 0;

background:var(--light);

}

.feature-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.feature-card{

background:#fff;

padding:45px 35px;

border-radius:18px;

box-shadow:var(--shadow);

transition:.35s;

text-align:center;

}

.feature-card:hover{

transform:translateY(-10px);

}

.feature-card img{

width:70px;

margin:auto;

margin-bottom:25px;

}

.feature-card h3{

font-size:24px;

margin-bottom:18px;

color:#222;

}

.feature-card p{

font-size:16px;

color:#666;

line-height:1.8;

}



/*=========================================
PROJECT HIGHLIGHTS
=========================================*/

.highlights{

padding:120px 0;

background:#fff;

}

.highlight-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.highlight-image img{

border-radius:18px;

box-shadow:var(--shadow);

}

.highlight-item{

margin-bottom:35px;

padding-left:25px;

border-left:5px solid var(--primary);

}

.highlight-item h3{

font-size:26px;

margin-bottom:10px;

color:#222;

}

.highlight-item p{

font-size:17px;

color:#666;

line-height:1.8;

}



/*=========================================
STATISTICS
=========================================*/

.statistics{

padding:110px 0;

background:#1b1b1b;

color:#fff;

}

.statistics .section-title h2{

color:#fff;

}

.statistics .section-title p{

color:#ddd;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:50px;

}

.stat-box{

background:rgba(255,255,255,.05);

padding:45px;

text-align:center;

border-radius:18px;

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.stat-box:hover{

transform:translateY(-10px);

background:rgba(255,255,255,.08);

}

.stat-box h2{

font-size:54px;

color:var(--primary);

margin-bottom:10px;

}

.stat-box p{

font-size:18px;

}

.note{

margin-top:40px;

text-align:center;

font-size:15px;

opacity:.7;

}



/*=========================================
LEGACY HOME
=========================================*/

.legacy-home{

padding:120px 0;

background:#fff;

}

.legacy-home .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.legacy-left h5{

color:var(--primary);

font-size:18px;

letter-spacing:2px;

margin-bottom:15px;

}

.legacy-left h2{

font-size:46px;

margin-bottom:25px;

}

.legacy-left p{

font-size:18px;

color:#666;

line-height:1.9;

margin-bottom:35px;

}

.legacy-right img{

border-radius:18px;

box-shadow:var(--shadow);

}



/*=========================================
GALLERY
=========================================*/

.gallery-preview{

padding:120px 0;

background:var(--light);

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.gallery-item{

overflow:hidden;

border-radius:18px;

box-shadow:var(--shadow);

}

.gallery-item img{

transition:.45s;

}

.gallery-item:hover img{

transform:scale(1.08);

}

.center{

text-align:center;

margin-top:50px;

}
/*=========================================
LOCATION SECTION
=========================================*/

.location-home{

    padding:120px 0;
    background:#fff;

}

.location-home .container{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.location-left h5{

    color:var(--primary);
    letter-spacing:2px;
    margin-bottom:15px;

}

.location-left h2{

    font-size:46px;
    margin-bottom:25px;

}

.location-left p{

    color:#666;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;

}

.location-left ul{

    margin-bottom:40px;

}

.location-left ul li{

    padding:12px 0;
    font-size:18px;
    border-bottom:1px solid #eee;

}

.location-left ul li:before{

    content:"✓";
    color:var(--primary);
    margin-right:15px;
    font-weight:bold;

}

.location-right img{

    border-radius:18px;
    box-shadow:var(--shadow);

}



/*=========================================
CONTACT SECTION
=========================================*/

.contact-home{

    padding:120px 0;
    background:#f5f5f5;

}

.contact-box{

    text-align:center;
    background:#fff;
    padding:80px;
    border-radius:18px;
    box-shadow:var(--shadow);

}

.contact-box h2{

    font-size:48px;
    margin-bottom:20px;

}

.contact-box p{

    font-size:18px;
    color:#666;
    margin-bottom:35px;

}

.contact-buttons{

    display:flex;
    justify-content:center;
    gap:20px;

}



/*=========================================
FOOTER
=========================================*/

footer{

    background:#1B1B1B;
    color:#ddd;
    padding:80px 0 30px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;

}

.footer-logo{

    width:220px;
    margin-bottom:25px;

}

footer h3{

    color:#fff;
    margin-bottom:25px;

}

footer ul li{

    margin-bottom:15px;

}

footer ul li a{

    color:#bbb;

}

footer ul li a:hover{

    color:var(--primary);

}

footer p{

    line-height:1.8;

}

footer hr{

    margin:50px 0 25px;
    border:none;
    border-top:1px solid rgba(255,255,255,.08);

}

.copyright{

    text-align:center;

}

.copyright p{

    font-size:14px;
    margin-bottom:10px;

}



/*=========================================
WHATSAPP
=========================================*/
/*
.whatsapp{

    position:fixed;
    right:25px;
    bottom:30px;
    width:62px;
    height:62px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 15px 30px rgba(0,0,0,.25);
    z-index:999;

}

.whatsapp img{

    width:34px;

}
*/


/*=========================================
BACK TO TOP
=========================================*/

#topBtn{

    position:fixed;
    right:25px;
    bottom:110px;

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:var(--primary);
    color:#fff;

    font-size:22px;

    cursor:pointer;

    display:none;

    transition:.3s;

}

#topBtn:hover{

    transform:translateY(-5px);

}



/*=========================================
SCROLL HEADER
=========================================*/

header.scrolled{

    background:#111;
    padding:10px 0;
    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

header.scrolled .logo img{

    height:60px;

}



/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

.hero-content h1{

font-size:54px;

}

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:1fr;

}

.highlight-wrapper,
.location-home .container,
.legacy-home .container,
.intro .container{

grid-template-columns:1fr;

}

}



@media(max-width:768px){

nav{

display:none;

}

.menu-icon{

display:block;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:17px;

}

.section-title h2{

font-size:34px;

}

.contact-buttons{

flex-direction:column;

}

.feature-grid,
.gallery-grid,
.stats-grid{

grid-template-columns:1fr;

}

.contact-box{

padding:45px 25px;

}

.location-left h2,
.legacy-left h2,
.intro-right h2{

font-size:34px;

}

.section-title p{

width:100%;

}

.logo img{

height:60px;

}

}



@media(max-width:480px){

.hero{

height:90vh;

}

.hero-content h1{

font-size:34px;

}

.hero-content h4{

font-size:16px;

letter-spacing:2px;

}

.btn-primary,
.btn-secondary{

display:block;

margin:10px auto;

width:220px;

text-align:center;

}

}
/*=========================================
SCROLL ANIMATIONS
=========================================*/

.hidden{

opacity:0;

transform:translateY(60px);

transition:all .8s ease;

}

.show{

opacity:1;

transform:translateY(0);

}



/*=========================================
MOBILE NAVIGATION
=========================================*/

@media(max-width:768px){

nav.active{

display:block;

position:absolute;

top:90px;

left:0;

width:100%;

background:#111;

padding:30px 0;

}

nav.active ul{

display:flex;

flex-direction:column;

align-items:center;

gap:25px;

}

}
