/* ==========================
   GOOGLE FONT
========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#333;
    line-height:1.6;
    padding-top:106px; /* Header height ke according adjust kar lena */
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
      HEADER
========================== */
header{
    width:100%;
    background:#fff;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:transform .35s ease;
}

header.hide{
    transform:translateY(-100%);
}
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:76px;
    height:76px;
    object-fit:contain;
    flex-shrink:0;
}

.logo h2{
    color:#0d4b2e;
    font-size:28px;
}

.logo p{
    color:#b07d2b;
    font-size:13px;
}

nav ul{
    display:flex;
    gap:35px;
}

nav ul li a{
    color:#222;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#0d4b2e;
}

/* ==========================
      HERO
========================== */

.hero{

    height:90vh;

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1800&q=80");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:#fff;

}

.hero-content{

    max-width:800px;

}

.hero h1{

    font-size:60px;

    margin-bottom:20px;

}

.hero p{

    font-size:22px;

    margin-bottom:40px;

}

.btn{

    display:inline-block;

    background:#b07d2b;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    transition:.4s;

    font-weight:600;

}

.btn:hover{

    background:#0d4b2e;

    transform:translateY(-4px);

}

/* ==========================
ABOUT HOME
========================== */

.about-home{

    padding:90px 0;

    text-align:center;

}

.about-home h2{

    color:#0d4b2e;

    margin-bottom:25px;

    font-size:40px;

}

.about-home p{

    max-width:900px;

    margin:auto;

    font-size:18px;

}

/* ==========================
GALLERY
========================== */

.gallery{

    padding:90px 0;

    background:#f7f7f7;

}

.gallery h2{

    text-align:center;

    color:#0d4b2e;

    font-size:40px;

}

.gallery p{

    text-align:center;

    color:#777;

    margin-bottom:40px;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

}

.gallery-grid img{

    height:260px;

    object-fit:cover;

    border-radius:12px;

    transition:.4s;

    box-shadow:0 5px 15px rgba(0,0,0,.1);

}

.gallery-grid img:hover{

    transform:scale(1.08);

    box-shadow:0 20px 35px rgba(0,0,0,.25);

}

/* ==========================
WHY CHOOSE
========================== */

.why{

    padding:90px 0;

}

.why h2{

    text-align:center;

    color:#0d4b2e;

    margin-bottom:60px;

    font-size:40px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.card{

    background:#fff;

    padding:35px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

}

.card:hover{

    transform:translateY(-10px);

}

.card h3{

    color:#0d4b2e;

    margin-bottom:20px;

}

/* ==========================
CTA
========================== */

.cta{

    padding:100px 20px;

    background:#0d4b2e;

    color:#fff;

    text-align:center;

}

.cta h2{

    font-size:42px;

    margin-bottom:20px;

}

.cta p{

    margin-bottom:35px;

    font-size:20px;

}

/* ==========================
FOOTER
========================== */

footer{

    background:#111;

    color:#fff;

    padding-top:60px;

}

.footer{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

    padding-bottom:40px;

}

.footer h2{

    color:#b07d2b;

}

.footer h3{

    margin-bottom:20px;

    color:#b07d2b;

}

.footer a{

    color:#ddd;

    transition:.3s;

}

.footer a:hover{

    color:#fff;

}

footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.2);

}

.copyright{

    text-align:center;

    padding:20px;

    color:#aaa;

}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:900px){

.navbar{

flex-direction:column;

}

nav ul{

margin-top:20px;

gap:20px;

flex-wrap:wrap;

justify-content:center;

}

.hero{

height:75vh;

padding:20px;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:18px;

}

.about-home h2,
.gallery h2,
.why h2,
.cta h2{

font-size:32px;

}

}

@media(max-width:600px){

.logo{

flex-direction:column;

text-align:center;

}

.logo img{

width:64px;
height:64px;

}

.hero h1{

font-size:32px;

}

.hero p{

font-size:16px;

}

.btn{

padding:12px 25px;

}

.gallery-grid{

grid-template-columns:1fr;

}

.cards{

grid-template-columns:1fr;

}

}
