html{
    scroll-behavior: smooth;
}
/* ===== Google Font ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins','Noto Sans Devanagari',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
}

/* ===== Navbar ===== */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background: #FF6F00;
    transition: 0.4s ease;
    z-index:1000;
}

.logo{
    color:#fff;
    font-size:28px;
    font-weight:700;
    letter-spacing: 0.5;
}

.nav-links{
    display:flex;
    list-style:none;
}

.nav-links li{
    margin:0 25px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:17px;
    transition:.3s;
}

.nav-links a:hover{
    color:#ffb300;
}

.buttons a{
    text-decoration:none;
    color:white;
    padding:12px 22px;
    border-radius:50px;
    margin-left: 12px;
    font-weight:600;
    font-size: 15px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px
    rgba(0,0,0,0.25);
    display:inline-block;
}

.call-btn{
    background:#ff6f00;
}

.whatsapp-btn{
    background:#25D366;
}
.call-btn:hover ,
.whatsapp-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 18px
    rgba(0,0,0,0,35);
}

/* ===== Hero ===== */

.hero{
    position: relative;
    height:100vh;
    background-image:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("images/hero.jpg");

    background-size:cover;
    background-position:center center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.overlay{
    max-width:850px;
    padding:20px;
}

.hero h1{
    font-size:58px;
    margin-bottom:20px;
    line-height:1.3;
    font-weight: 700;
    text-shadow: 3px 3px 12px
    rgba(0,0,0,0,8);
}

.hero p{
    font-size:24px;
    margin-bottom:35px;
    text-shadow: 2px 2px 8px
    rgba(0,0,0,0,8);
}

.hero-btn{
    display:inline-block;
    background:#ff9800;
    color:white;
    text-decoration:none;
    padding:18px 40px;
    border-radius:40px;
    font-size:20px;
    font-weight:bold;
    transition:.3s;
}

.hero-btn:hover{
    background:#e65100;
    transform:translateY(-3px);
}

/* ===== Responsive ===== */

@media(max-width:768px){

.navbar{
    flex-direction:column;
    padding:15px;
}

.nav-links{
    margin:15px 0;
    flex-wrap:wrap;
    justify-content:center;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:18px;
}

.hero h1{
    text-shadow: 3px 3px 10px
    rgba(0,0,0,0,8);
}
}/* ===== Scroll Down Arrow ===== */

.scroll-down{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    color:white;
    font-size:40px;
    animation:bounce 2s infinite;
}

@keyframes bounce{
    0%,20%,50%,80%,100%{
        transform:translateX(-50%) translateY(0);
    }

    40%{
        transform:translateX(-50%) translateY(-12px);
    }

    60%{
        transform:translateX(-50%) translateY(-6px);
    }
}
/* ===== ABOUT ===== */

.about{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:90px 10%;
    background:#FFF8E1;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
    min-width:300px;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.about-content{
    flex:1;
    min-width:300px;
}

.about-content h2{
    font-size:40px;
    color:#FF6F00;
    margin-bottom:20px;
}

.about-content p{
    font-size:20px;
    line-height:1.8;
    color:#4E342E;
    margin-bottom:18px;
}

/* Mobile */

@media(max-width:768px){

.about{
    flex-direction:column;
    text-align:center;
}

.about-content h2{
    font-size:32px;
}

.about-content p{
    font-size:17px;
}

}
/* ===== SERVICES ===== */

.services{
    padding:90px 10%;
    background:#ffffff;
    text-align:center;
}

.services h2{
    font-size:40px;
    color:#FF6F00;
    margin-bottom:50px;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#FFF8E1;
    padding:35px 25px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:0.3s ease;
    cursor:pointer;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.service-card h3{
    font-size:24px;
    color:#4E342E;
    margin-bottom:15px;
}

.service-card p{
    font-size:17px;
    color:#666;
    line-height:1.6;
}
/* ===== WHY CHOOSE US ===== */

.why-us{
    padding:90px 10%;
    background:#FFF8E1;
    text-align:center;
}

.why-us h2{
    font-size:40px;
    color:#FF6F00;
    margin-bottom:50px;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:0.3s ease;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    background:#FF6F00;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:35px;
}

.why-card h3{
    color:#4E342E;
    font-size:24px;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    font-size:17px;
    line-height:1.6;
}
/* ===== GALLERY ===== */

.gallery{
    padding:90px 10%;
    background:#ffffff;
    text-align:center;
}

.gallery h2{
    font-size:40px;
    color:#FF6F00;
    margin-bottom:50px;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.gallery-container img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    cursor:pointer;
    transition:0.4s ease;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.gallery-container img:hover{
    transform:scale(1.05);
    box-shadow:0 15px 30px rgba(0,0,0,0.25);
}
/* ===== REQUIREMENTS ===== */

.requirements{
    padding:90px 10%;
    background:#FFF8E1;
    text-align:center;
}

.requirements h2{
    font-size:40px;
    color:#FF6F00;
    margin-bottom:50px;
}

.requirement-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.requirement-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:0.3s ease;
}

.requirement-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.requirement-card h3{
    font-size:24px;
    color:#4E342E;
    margin-bottom:15px;
}

.requirement-card p{
    font-size:17px;
    color:#666;
    line-height:1.6;
}
/* ===== CONTACT ===== */

.contact{
    padding:90px 10%;
    background:#ffffff;
    text-align:center;
}

.contact h2{
    font-size:40px;
    color:#FF6F00;
    margin-bottom:50px;
}

.contact-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.contact-card{
    background:#FFF8E1;
    padding:35px 25px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:0.3s ease;
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.contact-card h3{
    font-size:24px;
    color:#4E342E;
    margin-bottom:15px;
}

.contact-card p{
    font-size:17px;
    color:#666;
    line-height:1.8;
}

.contact-card a{
    text-decoration:none;
    color:#FF6F00;
    font-weight:600;
}

.contact-card a:hover{
    color:#E65100;
}
/* ===== FOOTER ===== */

footer{
    background:#4E342E;
    color:white;
    text-align:center;
    padding:50px 10%;
}

footer h2{
    color:#FFD54F;
    margin-bottom:15px;
    font-size:30px;
}

footer p{
    margin:10px 0;
    font-size:17px;
}

.footer-links{
    margin:30px 0;
}

.footer-links a{
    color:white;
    text-decoration:none;
    margin:0 15px;
    transition:.3s;
}

.footer-links a:hover{
    color:#FFD54F;
}

.copyright{
    margin-top:30px;
    color:#ddd;
    font-size:15px;
}
/* Floating WhatsApp */

.floating-whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:30px;
    box-shadow:0 8px 20px rgba(0,0,0,.3);
    transition:.3s;
    z-index:999;
}

.floating-whatsapp:hover{
    transform:scale(1.1);
}
/* ===== Floating Call Button ===== */

.floating-call{
    position:fixed;
    bottom:95px;
    right:20px;
    width:60px;
    height:60px;
    background:#FF6F00;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:28px;
    box-shadow:0 8px 20px rgba(0,0,0,.3);
    transition:.3s;
    z-index:999;
}

.floating-call:hover{
    transform:scale(1.1);
}
/* Navbar after scrolling */

.navbar.scrolled{
    background:#FF6F00;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}
/* ===== HAMBURGER MENU ===== */

.menu-toggle{
    display:none;
    font-size:30px;
    color:white;
    cursor:pointer;
}

/* Mobile */

@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links,
    .buttons{
        display:none;
    }

    .nav-links.active{
        display:flex;
        flex-direction:column;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#FF6F00;
        padding:20px 0;
        text-align:center;
    }

    .nav-links.active li{
        margin:15px 0;
    }

    .buttons{
        display:none;
    }
}
/* ===== MAP ===== */

.map{
    padding:70px 8%;
    background:#FFF8E1;
    text-align:center;
}

.map h2{
    font-size:42px;
    color:#FF6F00;
    margin-bottom:30px;
}

.map iframe{
    width: 100%;
    height: 450px;
    border: none;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
/* ===== LIGHTBOX ===== */

.lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(255,255,255,0.2);
}
.social-icons{
    display:flex;
    justify-content: center;
    gap:20px;
    align-items:center;
    margin-top: 25px;
}

.social-icons img{
    width:40px;
    height:40px;
    transition: 0.3s;
    cursor:pointer;
}

.social-icons img:hover{
    transform:scale(1.2);
    rotate: (5deg);
}
.app-section{
    text-align:center;
    padding:80px 20px;
    background:#FFF8E1;
}

.app-section h2{
    color:#FF6F00;
    font-size:40px;
    margin-bottom:20px;
}

.app-section p{
    font-size:20px;
    margin:10px 0;
}

.download-btn{
    display:inline-block;
    margin-top:30px;
    padding:15px 35px;
    background:#FF6F00;
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-size:18px;
    transition:.3s;
}

.download-btn:hover{
    background:#E65100;
}
.logo{
    display:flex;
    align-items:center;
    gap:15px;
    color:white;
    font-weight:700;
    font-size:24px;
}

.logo img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
}
body{
    background: red !important;
}