/* ==========================
   LOTAN JI CHHOLE WALE
   STYLE.CSS
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    line-height:1.7;
    overflow-x:hidden;
    color:#333;
}

/* Navbar */

.custom-nav{
    background:#8b0000;
    transition:0.4s;
}

.navbar-nav .nav-link{
    color:#fff !important;
    font-weight:500;
    margin-left:15px;
}

.navbar-nav .nav-link:hover{
    color:#d4af37 !important;
}

/* Hero */

.hero{
    background:url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    height:100vh;
    position:relative;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:650px;
}

.hero-content h4{
    color:#d4af37;
    font-size:28px;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:72px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

.hero-btns .btn{
    margin-right:10px;
    padding:12px 28px;
    border-radius:50px;
}

/* Buttons */

.btn-gold{
    background:#d4af37;
    color:#000;
    font-weight:600;
}

.btn-gold:hover{
    background:#c19b2e;
}

/* Sections */

.section-padding{
    padding:90px 0;
}

.section-padding h2{
    font-size:42px;
    font-weight:700;
    color:#8b0000;
    margin-bottom:20px;
}

.section-padding h5{
    color:#d4af37;
    margin-bottom:20px;
}

/* Service Boxes */

.service-box{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:0.4s;
}

.service-box:hover{
    transform:translateY(-10px);
}

.service-box i{
    font-size:50px;
    color:#8b0000;
    margin-bottom:20px;
}

.service-box h4{
    margin-bottom:10px;
}

/* Gallery */

.gallery-img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:12px;
    transition:.4s;
}

.gallery-img:hover{
    transform:scale(1.05);
}

/* CTA */

.cta-section{
    background:#8b0000;
    color:white;
    padding:80px 0;
}

.cta-section h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-section p{
    font-size:20px;
    margin-bottom:25px;
}

/* Footer */

footer{
    background:#111;
    color:white;
    padding:50px 0;
}

footer h4{
    color:#d4af37;
}

/* WhatsApp Button */

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:32px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 0 15px rgba(0,0,0,.3);
}

.whatsapp-btn:hover{
    color:white;
    transform:scale(1.1);
}

/* About Image */

img{
    max-width:100%;
}

/* Cards */

.card{
    border:none;
    border-radius:15px;
    overflow:hidden;
}

.card img{
    height:250px;
    object-fit:cover;
}

/* Contact */

.contact-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    margin-bottom:30px;
}

/* Form */

.form-control{
    padding:14px;
    border-radius:10px;
}

textarea.form-control{
    min-height:140px;
}

/* Responsive */

@media(max-width:991px){

.hero-content h1{
    font-size:52px;
}

.hero-content p{
    font-size:18px;
}

.section-padding h2{
    font-size:34px;
}

}

@media(max-width:768px){

.hero{
    height:85vh;
}

.hero-content h1{
    font-size:40px;
}

.hero-content h4{
    font-size:22px;
}

.hero-content p{
    font-size:16px;
}

.cta-section h2{
    font-size:30px;
}

.section-padding{
    padding:60px 0;
}

.gallery-img{
    height:220px;
}

}

@media(max-width:576px){

.hero-content h1{
    font-size:34px;
}

.hero-btns .btn{
    display:block;
    margin-bottom:10px;
}

}


.service-box,
.gallery-img,
.contact-box,
.card{

opacity:0;
transform:translateY(30px);
transition:.8s;

}

.show{

opacity:1;
transform:translateY(0);

}

.loaded{
scroll-behavior:smooth;
}


/* HERO SLIDER */

.hero-slider{
position:relative;
height:100vh;
overflow:hidden;
}

.slider-img{
height:100vh;
object-fit:cover;
}

.hero-overlay{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:#fff;
z-index:10;
width:90%;
max-width:900px;
}

.hero-overlay h5{
color:#d4af37;
font-size:28px;
margin-bottom:15px;
font-weight:600;
}

.hero-overlay h1{
font-size:72px;
font-weight:700;
line-height:1.1;
margin-bottom:20px;
text-shadow:0 3px 10px rgba(0,0,0,0.5);
}

.hero-overlay p{
font-size:22px;
margin-bottom:30px;
text-shadow:0 2px 8px rgba(0,0,0,0.5);
}

.hero-slider::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
z-index:5;
}

.carousel-control-prev,
.carousel-control-next{
z-index:20;
}

@media(max-width:768px){

.hero-overlay h1{
font-size:42px;
}

.hero-overlay p{
font-size:16px;
}

.hero-overlay h5{
font-size:20px;
}

}


.logo-img{
height:70px;
width:auto;
display:block;
}


.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
}