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

body{
    font-family:Arial, Helvetica, sans-serif;
}

nav{
    position:fixed;
    top:25px;
    left:50%;
    transform:translateX(-50%);

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

    padding:15px 40px;

    background:#111111;      /* Solid black */

    border-radius:50px;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

    z-index:1000;

    transition:0.3s ease;
}
.logo h2{
    color:#1b5e20;
}
.menu-toggle{
    display:none;
}

nav ul{
    display:flex;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav ul li a{
    color:#ffffff;
    text-decoration:none;
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:500;
    transition:0.3s;
}

nav ul li a:hover{
    color:#FFD700;
}
nav ul li a{
    padding:10px 18px;
    border-radius:30px;
    transition:0.3s ease;
}

nav ul li a:hover{
    background:#2E7D32;
    color:#ffffff;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:120px 20px 60px;

    background:
    linear-gradient(rgba(0,0,0,.62),rgba(0,0,0,.62)),
    url("hero image.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-content{
    max-width:900px;
}


.hero h1{
    font-family:'Poppins',sans-serif;
    font-size:3.4rem;
    font-weight:700;
    line-height:1.2;
    margin-bottom:15px;
}

.hero h2{
    font-family:'Noto Sans Kannada',sans-serif;
    font-size:2.8rem;
    font-weight:700;
    margin-bottom:20px;
}

.hero p{
    font-family:'Poppins',sans-serif;
    font-size:1.8rem;
    margin-bottom:35px;
    font-style:italic;
    color:#FFD700;
}

.btn{
    display:inline-block;
    background:#2E7D32;
    color:#fff;
    text-decoration:none;
    padding:15px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:20px;
    flex-wrap:wrap;
}

.call-btn{
    background:#2E7D32;
}

.call-btn:hover{
    background:#1B5E20;
}

.whatsapp-btn{
    background:#25D366;
}

.whatsapp-btn:hover{
    background:#056c2e;
}

.btn:hover{
    background:#1B5E20;
    transform:translateY(-3px);
}
.hero{
    position:relative;
    overflow:hidden;
}
.hero-content{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:auto;

    text-align:center;
}

.main-logo{
    width:230px;
    margin-bottom:35px;

    filter:
        drop-shadow(0 8px 25px rgba(0,0,0,.45));
}

/* ===========================
   About Section
=========================== */

.about{
    padding:100px 8%;
    background:#f8f9f6;
}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

.about-image{
    flex:1;
    text-align:center;
}

.about-image img{
    width:100%;
    max-width:500px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.18);
}

.about-content h4{

    color:#2E7D32;

    font-size:18px;

    letter-spacing:2px;

    margin-bottom:15px;
}

.about-content h2{

    font-family:'Poppins',sans-serif;

    font-size:40px;

    color:#222;

    margin-bottom:25px;
}

.about-content p{

    color:#555;

    line-height:1.9;

    font-size:17px;

    margin-bottom:30px;
}

.about-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:35px;

    font-weight:600;

    color:#1B5E20;
}
.about{
    padding:70px 25px;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.about-content{
    flex:1;
}

.about-content h2{

    font-size:30px;
}

.about-features{

    grid-template-columns:1fr;
}
/* ==========================
   Products
========================== */

.products{

    padding:100px 8%;

    background:#F7FAF7;
}

.product-container{

    display:grid;

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

    gap:35px;

    margin-top:60px;
}

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

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

    transition:.35s;
}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.product-card img{

    width:100%;

    height:280px;

    object-fit:cover;
}

.product-card h3{

    font-family:'Poppins',sans-serif;

    font-size:28px;

    color:#1B5E20;

    padding:25px 25px 10px;
}

.product-card p{

    padding:0 25px;

    color:#555;

    line-height:1.8;

    margin-bottom:30px;
}

.product-card .btn{

    margin:0 25px 30px;

    display:inline-block;
}
/* ===========================
   Gallery Section
=========================== */

.gallery{
    padding:100px 8%;
    background:#ffffff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h4{
    color:#2E7D32;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-family:'Poppins',sans-serif;
    font-size:40px;
    margin-bottom:15px;
    color:#222;
}

.section-title p{
    color:#666;
    font-size:17px;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:12px;              /* Reduce from 30px or 40px */
}

.gallery-item{

    background:#f8f8f8;

    border-radius:18px;

    padding:15px;

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

    transition:.3s;
}

.gallery-item:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.gallery-item img{

    width:100%;

    height:auto;

    display:block;

    object-fit:contain;

    border-radius:12px;
}
/* ==========================
   Contact
========================== */

.contact{
    padding:100px 8%;
    background:#ffffff;
}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:50px;

    margin-top:60px;

    align-items:center;
}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;
}

.contact-box{

    background:#F7FAF7;

    padding:25px;

    border-radius:18px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.contact-box h3{

    color:#1B5E20;

    margin-bottom:10px;
}

.contact-box a{

    color:#333;

    text-decoration:none;

    font-weight:500;
}

.contact-box p{

    color:#555;

    line-height:1.8;
}

.contact-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:15px;
}

.contact-map{
    width:100%;
}

.contact-map iframe{
    width:100%;
    height:300px;

    display:block;

    border:none;
    border-radius:20px;

    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.contact-container{

    grid-template-columns:1fr;
}

.contact-buttons{

    justify-content:center;
}

/* ==========================
   Social Section
========================== */

.social{
    padding:80px 20px;
    text-align:center;
    background:#111111;
    color:#ffffff;
}

.social h2{
    font-family:'Poppins',sans-serif;
    font-size:38px;
    margin-bottom:15px;
}

.social p{
    color:#cccccc;
    margin-bottom:35px;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:25px;
}

.social-icons a{
    width:65px;
    height:65px;

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

    border-radius:50%;

    text-decoration:none;

    color:white;

    font-size:28px;

    transition:.3s ease;
}

.instagram{
    background:#E1306C;
}

.facebook{
    background:#1877F2;
}

.social-icons a:hover{
    transform:translateY(-6px) scale(1.08);
    box-shadow:0 10px 25px rgba(0,0,0,.35);
}
/* ==========================
   Footer
========================== */

.footer{
    background:#0b0b0b;
    color:#ffffff;
    padding:20px 8%;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer p{
    font-size:14px;
    color:#cccccc;
}

.developer{
    display:flex;
    align-items:center;
    gap:8px;
}

.developer span{
    font-size:14px;
    color:#cccccc;
}

.developer-logo{
    width:28px;
    height:28px;
    object-fit:contain;
}

.developer-name{
    color:#FFD700;
    font-weight:600;
}
/* ======================================
   Responsive Design
====================================== */

/* =========================
   Tablet
========================= */
@media (max-width:992px){

    .hero h1{
        font-size:2.8rem;
    }

    .hero h2{
        font-size:2rem;
    }

    .hero p{
        font-size:1.2rem;
    }

    .main-logo{
        width:180px;
    }

}


/* =========================
   Mobile
========================= */
@media (max-width:768px){

/* Navigation */

nav{
    position:fixed;
    top:15px;
    right:15px;
    left:auto;
    transform:none;

    width:auto;

    padding:0;

    background:transparent;
    border:none;
    box-shadow:none;
    backdrop-filter:none;
}

.menu-toggle{
    display:flex;
    justify-content:center;
    align-items:center;

    width:50px;
    height:50px;

    background:#111;
    color:#fff;

    border-radius:12px;
    font-size:30px;
    cursor:pointer;
}

nav ul{

    display:none;

    position:absolute;

    top:60px;
    right:0;

    width:220px;

    flex-direction:column;

    background:#111;

    border-radius:15px;

    overflow:hidden;
}

nav ul.active{
    display:flex;
}

nav ul li{
    width:100%;
}

nav ul li a{

    display:block;

    padding:16px 20px;

    color:#fff;
}

/* Hero */

.hero{

    padding:110px 20px 60px;
}

.main-logo{

    width:120px;

    margin-bottom:20px;
}

.hero h1{

    font-size:2rem;
}

.hero h2{

    font-size:1.3rem;
}

.hero p{

    font-size:1rem;
}

.hero-buttons{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:15px;
}

.hero-buttons .btn{

    width:220px;
}

/* About */

.about{

    padding:70px 20px;
}

.about-container{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:30px;
}

.about-image{

    width:100%;

    text-align:center;
}

.about-image img{

    width:220px;

    max-width:100%;
}

.about-content{

    width:100%;

    text-align:center;
}

.about-content h2{

    font-size:30px;
}

.about-features{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
    margin-top:30px;
}

.about-features div{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:22px;
    font-weight:600;
    color:#1B5E20;
}

/* Gallery */

    .gallery{
    padding:60px 15px;
}

.gallery-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;               /* Reduce the space between images */
}

.gallery-item{
    margin:0;
    padding:6px;           /* Reduce the white border around images */
    border-radius:15px;
}

.gallery-item img{
    width:100%;
    height:auto;
    display:block;
    border-radius:12px;
}
/* Products */

.product-container{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:25px;
}

.product-card{
    width:100%;
    max-width:380px;
    margin:0 auto;
}

.product-card img{
    width:100%;
    height:auto;
    object-fit:contain;
}
/* Contact */

.contact{

    padding:70px 20px;
}

.contact-container{

    display:flex;

    flex-direction:column;

    gap:25px;
}

.contact-info{

    width:100%;
}

.contact-box{

    width:100%;
}

.contact-map{

    width:100%;
}

.contact-map iframe{

    width:100%;

    height:280px;

    border-radius:20px;
}

.contact-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-top:20px;
}

/* Footer */

.footer-content{

    flex-direction:column;

    text-align:center;

    gap:15px;
}

.footer p{

    font-size:13px;
}

.developer-logo{

    width:24px;
}

}


/* =========================
   Small Phones
========================= */

@media (max-width:480px){

.hero h1{

    font-size:1.6rem;
}

.hero h2{

    font-size:1.1rem;
}

.hero p{

    font-size:.9rem;
}

.main-logo{

    width:100px;
}

.btn{

    width:220px;
}

.about-content h2{

    font-size:26px;
}

.contact-map iframe{

    height:220px;
}

}