/* Top Header CSS */
html,
body{
    overflow-x:hidden;
    margin:0;
	padding:0;
}
.top-header{
  background: linear-gradient(90deg,#a70101,#a70101,#000);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-left{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.top-header a{
  text-decoration:none;
  color:#fff;
  font-size:15px;
      font-weight: bold;
  transition:0.3s;
}

.top-header a:hover{
  color:#ffcc33;
}

.top-header i{
  color:#ffcc33;
  margin-right:8px;
}

.promo-text span{
  color:#ffcc33;
  font-size:15px;
  font-weight:500;
  letter-spacing:0.3px;
}

@media(max-width:768px){

  .top-header{
    text-align:center;
  }

  .top-left{
    justify-content:center;
    gap:12px;
  }

  .top-left a{
    font-size:13px;
  }

  .promo-text span{
    font-size:13px;
    line-height:24px;
    display:block;
  }
}
/* Top Header Images Section */

.top-header-images{
    background:#f5f5f5;
}

.header-img-box{
    overflow:hidden;
    border-radius:15px;
    
}

.header-img-box img{
    width:100%;
    
    object-fit:cover;
    
    display:block;
}

 /* Marquee Section CSS */

.marquee-section{
    background:linear-gradient(45deg,#8b0000,#d40000);
    padding:5px 20px;
    display:flex;
    align-items:center;
    gap:15px;
    border-top:3px solid #ffcc00;
    border-bottom:3px solid #ffcc00;
    overflow:hidden;
}

.marquee-icon{
    min-width:45px;
    height:45px;
    background:#ffcc00;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#8b0000;
    font-size:20px;
    box-shadow:0 3px 10px rgba(0,0,0,0.2);
}

.marquee-section marquee{
    color:#fff;
    font-size:20px;
    font-weight:600;
    letter-spacing:0.3px;
}

.marquee-section strong{
    color:#ffcc00;
    font-size:22px;
}

/* Responsive */

@media(max-width:768px){

    .marquee-section{
        padding:10px 12px;
    }

    .marquee-icon{
        min-width:38px;
        height:38px;
        font-size:16px;
    }

    .marquee-section marquee{
        font-size:15px;
    }

    .marquee-section strong{
        font-size:16px;
    }

}
/* Hero Slider CSS */

.hero-slider{
    position:relative;
    overflow:hidden;
}

.hero-slider .carousel-item img{
    width:100%;
    
    object-fit:cover;
    display:block;
}

/* Fade Effect Smooth */

.carousel-fade .carousel-item{
    opacity:0;
    transition-property:opacity;
    transform:none;
}

.carousel-fade .carousel-item.active{
    opacity:1;
}

/* Arrows */

.carousel-control-prev,
.carousel-control-next{
    width:8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:rgba(0,0,0,0.5);
    border-radius:50%;
    padding:25px;
}

/* Indicators */

.carousel-indicators button{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#fff;
    opacity:0.7;
}

.carousel-indicators .active{
    background:#ffcc00;
    opacity:1;
}

/* Responsive */
 

@media(max-width:576px){
 

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        padding:18px;
    }

}
/* CTA Section CSS */

.cta-section{
    background:linear-gradient(45deg,#7a0000,#c40000);
    padding:60px 0;
    position:relative;
    overflow:hidden;
}

.cta-section::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    top:-100px;
    left:-100px;
}

.cta-section::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    bottom:-100px;
    right:-100px;
}

/* Content */

.cta-content{
    position:relative;
    z-index:2;
}

.cta-tag{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    font-size:15px;
    font-weight:700;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
}

.cta-content h2{
    color:#ffcc00;
    font-size:35px;
    font-weight:800;
    margin-bottom:18px;
    line-height:1.4;
}

.cta-content p{
    color:#f5f5f5;
    font-size:18px;
    line-height:1.8;
    margin:0;
}

/* Buttons */

.cta-btns{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    gap:18px;
    align-items:flex-end;
}

.call-btn,
.whatsapp-btn{
    text-decoration:none;
    padding:18px 35px;
    border-radius:60px;
    font-size:20px;
    font-weight:700;
    transition:0.3s;
    display:inline-flex;
    align-items:center;
    gap:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.call-btn{
    background:#ffcc00;
    color:#000;
}

.whatsapp-btn{
    background:#25d366;
    color:#fff;
}

.call-btn:hover,
.whatsapp-btn:hover{
    transform:translateY(-4px);
}

/* Responsive */

@media(max-width:991px){

    .cta-content{
        text-align:center;
        margin-bottom:35px;
    }

    .cta-btns{
        align-items:center;
    }

    .cta-content h2{
        font-size:32px;
    }

}

@media(max-width:576px){

    .cta-section{
        padding:45px 0;
    }

    .cta-content h2{
        font-size:24px;
    }

    .cta-content p{
        font-size:15px;
    }

    .call-btn,
    .whatsapp-btn{
        width:100%;
        justify-content:center;
        font-size:16px;
        padding:15px 20px;
    }

}
/* Services Section CSS */

.services-section{
    padding:80px 0;
    background:#f8f8f8;
}

/* Section Title */

.section-title span{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:10px 25px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    margin-bottom:18px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#c40000;
    margin-bottom:15px;
}

.section-title p{
    font-size:17px;
    color:#000;
    max-width:700px;
    margin-bottom:15px;
	line-height:1.8;
	margin: auto;
	padding-bottom: 20px;
}

/* Service Box */

.service-box{
    background:#fff;
    padding:40px 25px;
    border-radius:25px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    height:100%;
    position:relative;
    overflow:hidden;
}

.service-box:hover{
    transform:translateY(-8px);
}

/* Round Image */

.service-img{
    width:300px;
    height:300px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
    border:6px solid #c40000;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    margin-bottom:25px;
}

.service-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.service-box:hover .service-img img{
    transform:scale(1.08);
}

/* Heading */

.service-box h3{
    font-size:28px;
    font-weight:700;
    color:#111;
    margin-bottom:25px;
    line-height:1.4;
}

/* Button */

.service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(45deg,#8b0000,#d40000);
    color:#fff;
    text-decoration:none;
    padding:15px 32px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    transition:0.3s;
}

.service-btn:hover{
    background:linear-gradient(45deg,#d40000,#8b0000);
    transform:translateY(-3px);
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

    .section-title h2{
        font-size:34px;
    }

    .service-box h3{
        font-size:24px;
    }

}

@media(max-width:576px){

    .services-section{
        padding:50px 0;
    }

    .section-title h2{
        font-size:26px;
    }

    .section-title p{
        font-size:15px;
    }

    .service-img{
        width:300px;
        height:300px;
    }

    .service-box h3{
        font-size:20px;
    }

    .service-btn{
        width:100%;
        justify-content:center;
        padding:14px 20px;
        font-size:15px;
    }

}
/* About Section CSS */

.about-section{
    padding:50px 0;
    background:linear-gradient(90deg,#a70101,#a70101,#000);
}

/* About Image */

.about-img{
    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.about-img img{
    width:100%;
    border-radius:25px;
    display:block;
    box-shadow:0 8px 30px rgba(0,0,0,0.15);
}

/* Experience Box */

.experience-box{
    position:absolute;
    bottom:20px;
    left:20px;
    background:linear-gradient(45deg,#8b0000,#d40000);
    color:#fff;
    padding:18px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.experience-box h3{
    font-size:40px;
    font-weight:800;
    margin:0;
}

.experience-box span{
    font-size:16px;
    font-weight:500;
}

/* Content */

.about-tag{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:10px 25px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    margin-bottom:20px;
}

.about-content h2{
    font-size:46px;
    font-weight:800;
    color:#ffcc00;
    line-height:1.4;
    margin-bottom:20px;
}

.about-content p{
    font-size:17px;
    color:#fff;
    line-height:1.9;
    margin-bottom:18px;
}

/* Features */

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:30px;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:12px;
    background:#f8f8f8;
    padding:15px 18px;
    border-radius:15px;
    transition:0.3s;
}

.feature-box:hover{
    background:#fff3f3;
    transform:translateY(-3px);
}

.feature-box i{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#d40000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.feature-box span{
    font-size:16px;
    font-weight:600;
    color:#222;
}

/* Buttons */

.about-btns{
    margin-top:35px;
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.about-call-btn,
.about-whatsapp-btn{
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-size:17px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:0.3s;
}

.about-call-btn{
    background:linear-gradient(45deg,#8b0000,#d40000);
    color:#fff;
}

.about-whatsapp-btn{
    background:#25d366;
    color:#fff;
}

.about-call-btn:hover,
.about-whatsapp-btn:hover{
    transform:translateY(-4px);
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:34px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .about-btns{
        justify-content:center;
    }

}

@media(max-width:576px){

    .about-section{
        padding:55px 0;
    }

    .about-content h2{
        font-size:26px;
    }

    .about-content p{
        font-size:15px;
    }

    .experience-box{
        padding:14px 22px;
    }

    .experience-box h3{
        font-size:28px;
    }

    .feature-box span{
        font-size:14px;
    }

    .about-call-btn,
    .about-whatsapp-btn{
        
        justify-content:center;
        font-size:15px;
        padding:14px 20px;
    }

}
/* Services Section CSS */

.services-area{
    padding:90px 0;
    background:#f8f8f8;
}

/* Heading */

.services-heading{
    margin-bottom:60px;
}

.services-heading span{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:10px 25px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    margin-bottom:18px;
}

.services-heading h2{
    font-size:42px;
    font-weight:800;
    color:#c40000;
    margin-bottom:15px;
}

.services-heading p{
    font-size:17px;
    color:#000;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* Service Card */

.service-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-8px);
}

/* Image */

.service-image{
    overflow:hidden;
}

.service-image img{
    width:100%;
   
    object-fit:cover;
    transition:0.4s;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

/* Content */

.service-content{
    padding:30px 25px;
    text-align:center;
}

.service-content h3{
    font-size:28px;
    font-weight:700;
    color:#c40000;
    margin-bottom:15px;
}

.service-content p{
    font-size:16px;
    color:#000;
    line-height:1.8;
    margin-bottom:25px;
}

/* Button */

.service-call-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(45deg,#8b0000,#d40000);
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    transition:0.3s;
}

.service-call-btn:hover{
    color:#fff;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:991px){

    .services-heading h2{
        font-size:34px;
    }

    .service-content h3{
        font-size:24px;
    }

}

@media(max-width:576px){

    .services-area{
        padding:55px 0;
    }

    .services-heading h2{
        font-size:26px;
    }

    .services-heading p{
        font-size:15px;
    }

 

    .service-content{
        padding:25px 18px;
    }

    .service-content h3{
        font-size:21px;
    }

    .service-content p{
        font-size:14px;
    }

    .service-call-btn{
         
        justify-content:center;
        padding:14px 20px;
        font-size:15px;
    }

}
/* Why Choose Us CSS */

.why-choose-us{
    padding:50px 0;
    background:linear-gradient(90deg,#a70101,#a70101,#000);
}

/* Left Image */

.why-img{
    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.why-img img{
    width:100%;
    border-radius:25px;
    display:block;
    box-shadow:0 8px 30px rgba(0,0,0,0.15);
}

/* Experience Box */

.experience-tag{
    position:absolute;
    bottom:20px;
    left:20px;
    background:linear-gradient(45deg,#8b0000,#d40000);
    color:#fff;
    padding:18px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.experience-tag h3{
    font-size:38px;
    font-weight:800;
    margin:0;
}

.experience-tag span{
    font-size:15px;
    font-weight:500;
}

/* Right Content */

.why-tag{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:10px 25px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    margin-bottom:20px;
}

.why-content h2{
    font-size:42px;
    font-weight:800;
    color:#ffcc00;
    margin-bottom:20px;
    line-height:1.4;
}

.why-content p{
    font-size:17px;
    color:#fff;
    line-height:1.9;
    margin-bottom:30px;
}

/* Features */

.why-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.why-box{
    background:#fff;
    padding:22px;
    border-radius:20px;
    display:flex;
    gap:15px;
    transition:0.3s;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.why-box:hover{
    transform:translateY(-5px);
}

/* Icon */

.why-icon{
    min-width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(45deg,#8b0000,#d40000);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

/* Text */

.why-text h4{
    font-size:22px;
    font-weight:700;
    color:#c40000;
    margin-bottom:8px;
}

.why-text p{
    font-size:15px;
    color:#000;
    margin:0;
    line-height:1.7;
}

/* Button */

.why-btn{
    margin-top:35px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(45deg,#8b0000,#d40000);
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-size:17px;
    font-weight:700;
    transition:0.3s;
}

.why-btn:hover{
    color:#fff;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:991px){

    .why-content{
        text-align:center;
    }

    .why-content h2{
        font-size:34px;
    }

    .why-features{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .why-choose-us{
        padding:55px 0;
    }

    .why-content h2{
        font-size:26px;
    }

    .why-content p{
        font-size:15px;
    }

    .why-box{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .why-text h4{
        font-size:19px;
    }

    .why-btn{
        width:100%;
        justify-content:center;
        font-size:15px;
        padding:14px 20px;
    }

}
/* List Services Section CSS */

.list-services-section{
    padding:90px 0;
    background:#f8f8f8;
}

/* Heading */

.list-service-heading{
    margin-bottom:60px;
}

.list-service-heading span{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:10px 25px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    margin-bottom:18px;
}

.list-service-heading h2{
    font-size:42px;
    font-weight:800;
    color:#c40000;
    margin-bottom:15px;
}

.list-service-heading p{
    font-size:17px;
    color:#000;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* Service Box */

.list-service-box{
    background:#fff;
    padding:35px 30px;
    border-radius:25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

.list-service-box:hover{
    transform:translateY(-8px);
}

.list-service-box h3{
    font-size:28px;
    font-weight:700;
    color:#c40000;
    margin-bottom:25px;
    border-bottom:2px solid #f1f1f1;
    padding-bottom:15px;
}

/* List */

.list-service-box ul{
    padding:0;
    margin:0;
    list-style:none;
}

.list-service-box ul li{
    margin-bottom:15px;
}

.list-service-box ul li:last-child{
    margin-bottom:0;
}

.list-service-box ul li a{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    font-size:17px;
    font-weight:500;
    color:#000;
    padding:12px 15px;
    border-radius:12px;
    transition:0.3s;
    background:#fafafa;
}

.list-service-box ul li a:hover{
    background:linear-gradient(45deg,#8b0000,#d40000);
    color:#fff;
    transform:translateX(5px);
}

/* Icon */

.list-service-box ul li a i{
    width:28px;
    height:28px;
    border-radius:50%;
    background:#c40000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    transition:0.3s;
}

.list-service-box ul li a:hover i{
    background:#fff;
    color:#8b0000;
}

/* Responsive */

@media(max-width:991px){

    .list-service-heading h2{
        font-size:34px;
    }

    .list-service-box h3{
        font-size:24px;
    }

}

@media(max-width:576px){

    .list-services-section{
        padding:55px 0;
    }

    .list-service-heading h2{
        font-size:26px;
    }

    .list-service-heading p{
        font-size:15px;
    }

    .list-service-box{
        padding:28px 20px;
    }

    .list-service-box h3{
        font-size:20px;
    }

    .list-service-box ul li a{
        font-size:15px;
        padding:10px 12px;
    }

}
/* 3 Services Section CSS */

.top-services-section{
    padding:60px 0;
    background:linear-gradient(90deg,#a70101,#a70101,#000);
}

/* Heading */

.top-services-heading{
    margin-bottom:60px;
}

.top-services-heading span{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:10px 25px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    margin-bottom:18px;
}

.top-services-heading h2{
    font-size:42px;
    font-weight:800;
    color:#ffcc00;
    margin-bottom:15px;
}

.top-services-heading p{
    font-size:17px;
    color:#fff;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* Service Box */

.top-service-box{
    background:#fff;
    padding:30px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

.top-service-box:hover{
    transform:translateY(-8px);
}

/* Heading */

.top-service-box h3{
    font-size:28px;
    font-weight:700;
    color:#c40000;
    margin-bottom:25px;
    line-height:1.4;
}

/* Image */

.top-service-img{
    overflow:hidden;
    border-radius:20px;
    margin-bottom:25px;
}

.top-service-img img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.4s;
}

.top-service-box:hover .top-service-img img{
    transform:scale(1.08);
}

/* Button */

.top-service-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:linear-gradient(45deg,#8b0000,#d40000);
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    transition:0.3s;
}

.top-service-btn:hover{
    color:#fff;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:991px){

    .top-services-heading h2{
        font-size:34px;
    }

    .top-service-box h3{
        font-size:24px;
    }

}

@media(max-width:576px){

    .top-services-section{
        padding:55px 0;
    }

    .top-services-heading h2{
        font-size:26px;
    }

    .top-services-heading p{
        font-size:15px;
    }

    .top-service-box{
        padding:22px;
    }

    .top-service-box h3{
        font-size:21px;
    }

    .top-service-img img{
        height:220px;
    }

    .top-service-btn{
        width:100%;
        font-size:15px;
        padding:14px 20px;
    }

}
/* Footer CSS */

.astro-footer{
    background:#111;
    color:#fff;
    position:relative;
    overflow:hidden;
    padding-top:50px;
}

/* Footer Box */

.footer-box{
    height:100%;
}

/* Logo */

.footer-logo{
    font-size:22px;
    font-weight:800;
    color:#ffcc00;
    line-height:1.5;
    margin-bottom:20px;
}

.footer-box p{
    color:#fff;
    font-size:16px;
    line-height:1.9;
    margin-bottom:25px;
}

/* Social */

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#222;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:0.3s;
    font-size:18px;
}

.footer-social a:hover{
    background:#d40000;
    transform:translateY(-4px);
}

/* Footer Title */

.footer-title{
    font-size:28px;
    font-weight:700;
    color:#fff;
    margin-bottom:28px;
    position:relative;
}

.footer-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:70px;
    height:3px;
    background:#ffcc00;
}

/* Footer Links */

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:16px;
}

.footer-links li a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-links li a:hover{
    color:#ffcc00;
    transform:translateX(5px);
}

.footer-links li a i{
    color:#ffcc00;
}

/* Contact */

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-bottom:30px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.contact-item i{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#d40000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.contact-item a,
.contact-item span{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
}

.contact-item a:hover{
    color:#ffcc00;
}

/* Button */

.footer-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(45deg,#8b0000,#d40000);
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    transition:0.3s;
}

.footer-btn:hover{
    color:#fff;
    transform:translateY(-4px);
}

/* Bottom */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:60px;
    padding:22px 0;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#bbb;
    font-size:15px;
}

/* Responsive */

@media(max-width:991px){

    .footer-logo{
        font-size:26px;
    }

    .footer-title{
        font-size:24px;
    }

}

@media(max-width:576px){

    .astro-footer{
        padding-top:55px;
    }

    .footer-logo{
        font-size:22px;
    }

    .footer-box p{
        font-size:14px;
    }

    .footer-title{
        font-size:22px;
    }

    .footer-links li a{
        font-size:14px;
    }

    .contact-item a,
    .contact-item span{
        font-size:14px;
    }

    .footer-btn{
        width:100%;
        justify-content:center;
        font-size:15px;
        padding:14px 20px;
    }

    .footer-bottom p{
        font-size:13px;
    }

}
/* Client Feedback CSS */

.client-feedback-section{
    padding:50px 0;
    background:#fff8f2;
}

/* Heading */

.feedback-heading{
    margin-bottom:60px;
}

.feedback-heading span{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:10px 25px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    margin-bottom:18px;
}

.feedback-heading h2{
    font-size:42px;
    font-weight:800;
    color:#c40000;
    margin-bottom:15px;
}

.feedback-heading p{
    font-size:17px;
    color:#000;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* Feedback Box */

.feedback-box{
    background:#fff;
    padding:35px 30px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.feedback-box:hover{
    transform:translateY(-8px);
}

/* Client Image */

.client-img{
    width:110px;
    height:110px;
    border-radius:50%;
    overflow:hidden;
    margin:auto;
    margin-bottom:20px;
    border:5px solid #d40000;
}

.client-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Rating */

.rating{
    margin-bottom:18px;
}

.rating i{
    color:#ffcc00;
    font-size:18px;
    margin:0 2px;
}

/* Text */

.feedback-box p{
    font-size:16px;
    color:#000;
    line-height:1.9;
    margin-bottom:25px;
}

/* Name */

.feedback-box h3{
    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:5px;
}

.feedback-box span{
    color:#d40000;
    font-size:15px;
    font-weight:600;
}

/* Responsive */

@media(max-width:991px){

    .feedback-heading h2{
        font-size:34px;
    }

}

@media(max-width:576px){

    .client-feedback-section{
        padding:55px 0;
    }

    .feedback-heading h2{
        font-size:26px;
    }

    .feedback-heading p{
        font-size:15px;
    }

    .feedback-box{
        padding:28px 20px;
    }

    .feedback-box p{
        font-size:14px;
    }

    .feedback-box h3{
        font-size:20px;
    }

}
/* RIGHT SIDE FLOATING BUTTONS */

.nbpj-floating-buttons{
    position:fixed;
    bottom:25px;
    right:25px;   /* LEFT KI JAGAH RIGHT */
    z-index:9999;
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* COMMON BUTTON STYLE */

.nbpj-call-btn,
.nbpj-whatsapp-btn{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 22px;
    border-radius:60px;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    color:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
    transition:0.3s;
    position:relative;
    overflow:hidden;
}

/* CALL BUTTON */

.nbpj-call-btn{
    background:#c40000;
}

/* WHATSAPP BUTTON */

.nbpj-whatsapp-btn{
    background:linear-gradient(135deg, #25d366, #128c7e);
}

/* ICON */

.nbpj-call-btn i,
.nbpj-whatsapp-btn i{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

/* HOVER */

.nbpj-call-btn:hover,
.nbpj-whatsapp-btn:hover{
    transform:translateX(-8px);
    color:#fff;
}

/* SHINE EFFECT */

.nbpj-call-btn::before,
.nbpj-whatsapp-btn::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.08);
    top:0;
    left:-100%;
    transition:0.5s;
}

.nbpj-call-btn:hover::before,
.nbpj-whatsapp-btn:hover::before{
    left:100%;
}

/* MOBILE */

@media(max-width:576px){

    .nbpj-floating-buttons{
        bottom:15px;
        right:15px;
        gap:12px;
    }

    .nbpj-call-btn,
    .nbpj-whatsapp-btn{
        padding:12px 18px;
        font-size:14px;
    }

    .nbpj-call-btn i,
    .nbpj-whatsapp-btn i{
        width:40px;
        height:40px;
        font-size:18px;
    }
}
 .only-video-section{
    padding:60px 0;
    background:#000;
}

.only-video-box{
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.only-video-box video{
    width:100%;
    height:800px;
    object-fit:cover;
    display:block;
    
}

@media(max-width:767px){

    .only-video-box video{
       padding-top: 35px;
    }

}