/* ==========================================
   NEW GREEN BAWARCHI
   style.css
========================================== */

:root{

    --primary:#18a558;
    --secondary:#ffd54a;
    --dark:#0f1115;
    --dark2:#181b20;
    --white:#ffffff;
    --text:#d7d7d7;
    --radius:18px;
    --shadow:0 15px 35px rgba(0,0,0,.25);

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--dark);
    color:var(--white);
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;
    user-select:none;

}

a{

    text-decoration:none;
    color:inherit;

}

button{

    font-family:inherit;
    border:none;
    cursor:pointer;

}

/* ================= Loader ================= */

#loader,
#loadingScreen{

    position:fixed;
    inset:0;
    background:#0f1115;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:.5s;

}

.loaderLogo{

    color:var(--secondary);
    font-size:34px;
    font-weight:800;
    text-align:center;
    line-height:1.3;

}

.loaderCircle{

    width:65px;
    height:65px;
    border-radius:50%;
    border:5px solid rgba(255,255,255,.2);
    border-top:5px solid var(--secondary);
    margin:auto;
    animation:spin 1s linear infinite;

}

.loadingContent{

    text-align:center;

}

.loadingContent h2{

    margin-top:20px;
    color:var(--secondary);

}

.loadingContent p{

    color:#aaa;
    margin-top:8px;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/* ================= Scroll Progress ================= */

#progressBar{

    position:fixed;
    top:0;
    left:0;
    height:4px;
    width:0;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    z-index:9999;

}

/* ================= Header ================= */

header{

    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:rgba(15,17,21,.88);
    backdrop-filter:blur(15px);

}

.container{

    max-width:1200px;
    margin:auto;
    padding:16px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo{

    font-size:24px;
    font-weight:800;
    color:var(--white);

}

.logo span{

    color:var(--secondary);

}

header nav{

    display:flex;
    gap:28px;

}

header nav a{

    color:#fff;
    transition:.3s;

}

header nav a:hover{

    color:var(--secondary);

}

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

.hero{

    position:relative;
    height:100vh;
    overflow:hidden;

}

.hero img{

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

}

.hero::before{

    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);

}

.heroOverlay{

    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    z-index:2;

}

.heroOverlay h1{

    font-size:52px;
    color:#fff;
    max-width:800px;

}

.heroOverlay p{

    margin-top:15px;
    font-size:20px;
    color:#ddd;

}

.heroButtons{

    margin-top:35px;
    display:flex;
    gap:18px;
    flex-wrap:wrap;

}

.primaryBtn,
.secondaryBtn{

    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;

}

.primaryBtn{

    background:var(--primary);
    color:#fff;

}

.primaryBtn:hover{

    transform:translateY(-4px);

}

.secondaryBtn{

    background:var(--secondary);
    color:#111;

}

.secondaryBtn:hover{

    transform:translateY(-4px);

}

/* ================= Quick Cards ================= */

.quickCards{

    max-width:1100px;
    margin:70px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}

.quickCards a{

    background:var(--dark2);
    border-radius:var(--radius);
    padding:30px 20px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.3s;

}

.quickCards a:hover{

    transform:translateY(-8px);

}

.quickCards h3{

    margin-top:15px;
    color:var(--secondary);

}

.quickCards p{

    margin-top:10px;
    color:#bbb;

}

/* ================= Sections ================= */

section{

    padding:80px 20px;

}

.sectionTitle{

    text-align:center;
    margin-bottom:40px;

}

.sectionTitle h2{

    font-size:38px;
    color:var(--secondary);
    margin-bottom:12px;

}

.sectionTitle p{

    color:#bdbdbd;
    font-size:16px;

}

/* ================= Menu Gallery ================= */

.menuGallery{

    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;

}

.menuGallery img{

    width:100%;
    border-radius:18px;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.menuGallery img:hover{

    transform:translateY(-8px) scale(1.02);
    box-shadow:0 18px 40px rgba(0,0,0,.5);

}

/* ================= Highlights ================= */

.highlights{

    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;

}

.highlightCard{

    background:var(--dark2);
    border-radius:var(--radius);
    padding:35px 25px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;

}

.highlightCard:hover{

    transform:translateY(-8px);

}

.highlightCard .icon{

    font-size:42px;
    margin-bottom:18px;

}

.highlightCard h3{

    color:var(--secondary);
    margin-bottom:12px;

}

.highlightCard p{

    color:#bdbdbd;
    line-height:1.7;

}

/* ================= Contact ================= */

#contact{

    max-width:900px;
    margin:auto;

}

.contactCard{

    background:var(--dark2);
    border-radius:20px;
    padding:35px;
    display:flex;
    flex-direction:column;
    gap:18px;
    box-shadow:var(--shadow);

}

.contactCard a{

    background:#20252d;
    color:#fff;
    padding:16px;
    border-radius:14px;
    transition:.3s;
    text-align:center;
    font-weight:600;

}

.contactCard a:hover{

    background:var(--primary);

}

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

.footer{

    margin-top:70px;
    background:#090b0f;
    padding:50px 20px 110px;
    text-align:center;

}

.footer h2{

    color:var(--secondary);
    margin-bottom:10px;

}

.footer p{

    color:#bdbdbd;

}

.footerButtons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin:30px 0;

}

.footerButtons a{

    background:var(--primary);
    color:#fff;
    padding:12px 24px;
    border-radius:40px;
    transition:.3s;

}

.footerButtons a:hover{

    background:var(--secondary);
    color:#111;

}

.copyright{

    color:#888;
    font-size:14px;

}

/* ================= Bottom Navigation ================= */

.bottomNav{

    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    background:#11151b;
    display:flex;
    justify-content:space-around;
    align-items:center;
    padding:12px 0;
    z-index:9999;
    border-top:1px solid rgba(255,255,255,.08);

}

.bottomNav a{

    display:flex;
    flex-direction:column;
    align-items:center;
    color:#d5d5d5;
    font-size:13px;
    transition:.3s;

}

.bottomNav a:hover,
.bottomNav a.active{

    color:var(--secondary);

}

.navIcon{

    font-size:22px;
    margin-bottom:4px;

}

/* ================= Image Viewer ================= */

#imageViewer{

    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:10000;
    padding:20px;

}

#viewerImage{

    max-width:95%;
    max-height:90%;
    border-radius:12px;
    transition:.3s;
    box-shadow:0 20px 50px rgba(0,0,0,.5);

}

#closeViewer{

    position:absolute;
    top:20px;
    right:30px;
    font-size:45px;
    color:#fff;
    cursor:pointer;

}

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

.floatingWhatsapp,
.floatingCall{

    position:fixed;
    right:20px;
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:28px;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    z-index:999;
    transition:.3s;

}

.floatingWhatsapp{

    bottom:95px;
    background:#25D366;

}

.floatingCall{

    bottom:165px;
    background:#18a558;

}

.floatingWhatsapp:hover,
.floatingCall:hover{

    transform:scale(1.1);

}

/* ================= Scroll To Top ================= */

#scrollTop{

    position:fixed;
    left:20px;
    bottom:100px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:var(--secondary);
    color:#111;
    font-size:22px;
    cursor:pointer;
    display:none;
    z-index:999;
    box-shadow:var(--shadow);

}

#scrollTop:hover{

    transform:translateY(-4px);

}

/* ================= Fade Animation ================= */

.fadeUp{

    opacity:0;
    transform:translateY(30px);
    transition:.6s;

}

.fadeUp.show{

    opacity:1;
    transform:translateY(0);

}

/* ================= Ripple ================= */

.ripple{

    position:absolute;
    width:20px;
    height:20px;
    border-radius:50%;
    background:rgba(255,255,255,.4);
    transform:translate(-50%,-50%);
    animation:ripple .6s linear;
    pointer-events:none;

}

@keyframes ripple{

    from{

        width:20px;
        height:20px;
        opacity:.7;

    }

    to{

        width:300px;
        height:300px;
        opacity:0;

    }

}

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

@media(max-width:992px){

.hero{

height:80vh;

}

.heroOverlay h1{

font-size:40px;

}

.quickCards{

grid-template-columns:repeat(2,1fr);

}

.menuGallery{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

header nav{

display:none;

}

.hero{

height:70vh;

}

.heroOverlay h1{

font-size:30px;

}

.heroOverlay p{

font-size:16px;

}

.heroButtons{

flex-direction:column;
width:100%;

}

.primaryBtn,
.secondaryBtn{

width:100%;
text-align:center;

}

.quickCards{

grid-template-columns:1fr;

}

.menuGallery{

grid-template-columns:1fr;

}

.highlights{

grid-template-columns:1fr;

}

.footerButtons{

flex-direction:column;

}

.contactCard{

padding:25px;

}

}

@media(max-width:480px){

.logo{

font-size:20px;

}

.sectionTitle h2{

font-size:28px;

}

.heroOverlay h1{

font-size:26px;

}

.heroOverlay p{

font-size:15px;

}

.floatingWhatsapp,
.floatingCall{

width:52px;
height:52px;
font-size:24px;

}

.bottomNav{

padding:10px 0;

}

.navIcon{

font-size:20px;

}

.bottomNav span{

font-size:12px;

}

}

/* ================= Selection ================= */

::selection{

background:var(--secondary);
color:#111;

}

/* ================= Scrollbar ================= */

::-webkit-scrollbar{

width:8px;

}

::-webkit-scrollbar-track{

background:#111;

}

::-webkit-scrollbar-thumb{

background:var(--primary);
border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

background:var(--secondary);

}